/* ----------------------
   CSS VARIABLES & SETUP
---------------------- */
:root {
  --font-body: 'Inter', sans-serif;
  
  --bg-color: #D6D3C8;
  --bg-card: #EAE7DF;
  --sage-light: #EAE7DF;
  --sage-dark: #6F766A;
  --blush: #D6D3C8;
  
  --text-dark: #5E5A52;
  --text-muted: #6F766A;
  --heading: #5E5A52;
  
  --primary: #6F766A;
  --primary-hover: #5E5A52;
  --secondary: #A8A397;
  
  --accent: #8A927F;
  --highlight: #2F6F6D;
  --highlight-hover: #275E5C;
  --on-highlight: #EAE7DF;
  --border: #A8A397;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:not(.btn):not(.floating-whatsapp):hover {
  color: var(--highlight);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----------------------
   TYPOGRAPHY
---------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--heading);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}

em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.section-tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.section-tag.tag-light {
    color: var(--bg-card);
}
.tag-light::before, .tag-light::after {
    background-color: rgba(255,255,255,0.3) !important;
}

.section-tag::before, .section-tag::after {
  content: '';
  height: 1px;
  width: 2rem;
  background-color: var(--border);
}

.section-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.section-title.light-text {
    color: var(--bg-card);
}

.section-description {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* Ajustes da seção "Por que Terapia" (cards iguais ao print) */
#por-que .section-description {
  margin-bottom: 2.25rem;
}

#por-que .grid-cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 360px) {
  #por-que .grid-cards-2 {
    grid-template-columns: 1fr;
  }
}

#por-que .card {
  background: #f2f0ea;
  border: 1px solid rgba(111, 118, 106, 0.18);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
}

#por-que .feature-card {
  padding-top: 1.4rem;
}

#por-que .card-number {
  top: 0.85rem;
  right: 1rem;
  font-size: 2.6rem;
  color: rgba(39, 94, 92, 0.22);
}

#por-que .icon-wrap {
  width: 44px;
  height: 44px;
  margin-bottom: 0.9rem;
}

#por-que .icon-wrap svg {
  width: 22px;
  height: 22px;
}

#por-que .card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
  text-wrap: balance;
}

#por-que .card p {
  font-size: 0.85rem;
  color: var(--text-dark);
  opacity: 0.9;
  line-height: 1.65;
  text-wrap: pretty;
  hyphens: auto;
}

/* Ajuste do bloco "Mas a verdade..." (final da seção) */
#por-que .section-title h3 {
  font-size: clamp(1.6rem, 5vw, 2.35rem);
  margin: 0 auto 0.9rem;
  text-align: center;
  max-width: 22ch;
  text-wrap: balance;
}

#por-que .section-title p {
  font-size: clamp(1.05rem, 3.6vw, 1.25rem);
  line-height: 1.75;
  color: var(--text-dark);
  text-align: center;
  max-width: 42ch;
  margin: 0 auto;
  text-wrap: pretty;
}

/* Centraliza e deixa o CTA largo (igual ao print) */
#por-que .container > a.btn {
  display: flex;
  width: min(560px, 100%);
  margin: 1.5rem auto 0;
  white-space: nowrap;
  flex-wrap: nowrap;
}

@media (max-width: 480px) {
  #por-que .card {
    padding: 1.15rem;
  }

  #por-que .card h3 {
    font-size: 1rem;
  }

  #por-que .card-number {
    font-size: 2.35rem;
  }

  #por-que .section-title h3 {
    max-width: 18ch;
  }

  #por-que .section-title p {
    max-width: 36ch;
  }

  #por-que .container > a.btn {
    padding: 0.85rem 1.1rem;
    font-size: clamp(0.85rem, 3.6vw, 0.95rem);
    gap: 0.4rem;
  }
}

/* ----------------------
   BUTTONS & FORMS
---------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  justify-content: center;
}

/* Unified button styles based on btn-light */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-light {
    background-color: var(--bg-card) !important;
    color: var(--primary) !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover,
.btn-light:hover {
    background-color: var(--bg-color) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Specific overrides */
.btn-primary {
  background-color: var(--highlight) !important;
  color: var(--on-highlight) !important;
  border: 1px solid var(--highlight) !important;
}
.btn-primary:hover {
  background-color: var(--highlight-hover) !important;
  color: var(--on-highlight) !important;
  border: 1px solid var(--highlight-hover) !important;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}
/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.6) translateY(20px);
}

.floating-whatsapp.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp i {
    width: 32px;
    height: 32px;
}

/* Mobile responsivo */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
    }

    .floating-whatsapp i {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 1rem;
        right: 1rem;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp i {
        width: 24px;
        height: 24px;
    }
}
.btn-scroll svg,
.btn-scroll i {
  will-change: transform;
  animation: nudge-down 1.1s ease-in-out infinite;
}
@keyframes nudge-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-scroll svg,
  .btn-scroll i {
    animation: none;
  }
}

.pulse-btn {
  animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
  0% { box-shadow: 0 0 0 0 rgba(111, 118, 106, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(111, 118, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 118, 106, 0); }
}

/* ----------------------
   HEADER
---------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(214, 211, 200, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 71px;
}

.logo-img {
  height: 40px;
  width: auto;
  border-radius: 0;
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    gap: 2rem;
  }
}

.nav-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: var(--text-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--highlight);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}
@media(min-width: 768px) {
    .nav-cta { display: inline-flex; }
    .mobile-menu-btn { display: none; }
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    border-top: 1px solid var(--border);
}
.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}
.mobile-link {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-dark);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

/* ----------------------
   SECTIONS
---------------------- */
.section {
  padding: 5rem 0;
}
.section2 {
  padding: 12rem 0;
}
.section-sage {
  background-color: var(--sage-light);
}

.section-blush {
  background-color: rgba(234, 231, 223, 0.55);
}

.section-dark {
  background-color: var(--sage-dark);
  color: #fff;
  text-align: center;
}

/* ----------------------
   HERO 
---------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  background: linear-gradient(180deg, var(--blush) 0%, var(--bg-color) 100%);
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}

.hero-image-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  margin-bottom: 2rem;
}
@media(min-width: 768px) {
    .hero-image-wrap {
        width: 220px;
        height: 220px;
    }
}

.hero-image-bg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: 125%;
  background-position: center 20%;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-md);
}

@media(min-width: 768px) {
  .hero-image-bg {
    background-size: 115%;
  }
}

.glass-badge {
  position: absolute;
  bottom: 0;
  right: -20px;
  background: rgba(234, 231, 223, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(234, 231, 223, 0.6);
  color: var(--highlight);
}
.badge-icon {
    width: 16px;
    height: 16px;
    color: var(--highlight);
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
@media(min-width: 768px) {
    .hero-title { font-size: 3rem; }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
    line-height: 1.15;
    text-wrap: balance;
  }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 0.78rem;
    margin-bottom: 1.4rem;
  }
}
.dot-separator {
    color: var(--accent);
    margin: 0 0.5rem;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-dark);
  max-width: 56ch;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-description strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

@media (max-width: 480px) {
  .hero-description {
    font-size: 1rem;
  }

  .hero-description strong {
    font-size: 1.12rem;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media(min-width: 640px) {
    .hero-cta-group {
        flex-direction: row;
    }
}

.hero-tags {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ----------------------
   ABOUT
---------------------- */
.bg-white {
  background-color: var(--bg-card) !important;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media(min-width: 768px) {
  .about-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  width: 100%;
  max-width: 450px;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: var(--shadow-float);
}

.about-text-col {
  text-align: left;
}

.about-text-content p {
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  hyphens: auto;
}

.section-tag-left {
  justify-content: flex-start;
  margin-bottom: 0.5rem;
}
.section-tag-left::before {
  display: none;
}

.title-left {
  text-align: left;
  margin-bottom: 0.5rem;
}

.about-crp {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 2rem;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text-content p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.15rem;
  line-height: 1.8;
}

.about-text-content ul {
  margin: 0;
  padding-left: 1.25rem;
}

.about-text-content li {
  margin: 0.5rem 0;
}

.about-text-content li:last-child {
  margin-bottom: 0;
}

/* ----------------------
   GRIDS & CARDS
---------------------- */
.grid-cards-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media(min-width: 768px) {
    .grid-cards-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.02);
}

.card-hover {
  transition: var(--transition);
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-float);
}

.feature-card {
    padding-top: 2.5rem;
}
.card-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: #275e5c44;
    line-height: 1;
}

.center-card {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.icon-wrap svg {
    width: 24px;
    height: 24px;
    color: var(--highlight);
}
.blush-bg { background-color: var(--blush); }
.sage-bg { background-color: var(--sage-light); }

.card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.section-footer {
    margin-top: 4rem;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.strong-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--heading);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.highlight-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ----------------------
   APPROACH TEAM
---------------------- */
.approach-container {
    max-width: 800px;
}
.approach-card {
    color: var(--text-dark);
    padding: 2.75rem 2.25rem;
    box-shadow: var(--shadow-md);
}
.approach-card .section-tag {
    color: var(--highlight);
}
.approach-card .section-tag::before,
.approach-card .section-tag::after {
    background-color: var(--border);
}
.approach-card .section-title {
    color: var(--heading);
}
.approach-card .btn.btn-light {
    background-color: var(--highlight) !important;
    color: var(--on-highlight) !important;
    border: 1px solid var(--highlight) !important;
}
.approach-card .btn.btn-light:hover {
    background-color: var(--highlight-hover) !important;
    color: var(--on-highlight) !important;
    border: 1px solid var(--highlight-hover) !important;
}
.divider {
    height: 1px;
    width: 60px;
    background: rgba(255,255,255,0.2);
    margin: 2rem auto;
}
.approach-card .divider {
    background: var(--border);
}
.text-large {
    font-size: 1.15rem;
    color: rgba(234, 231, 223, 0.92);
    margin-bottom: 1.5rem;
}
.approach-card .text-large {
    color: var(--text-dark);
}
.blockquote-glass {
    margin-top: 3rem;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    font-style: italic;
    font-size: 1.25rem;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-dark);
}
.approach-card .blockquote-glass {
    background: rgba(214, 211, 200, 0.35);
    border: 1px solid var(--border);
}

/* ----------------------
   FEATURES GRID (HOW IT WORKS)
---------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
@media(min-width: 768px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.icon-bubble {
    width: 70px;
    height: 70px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    transition: var(--transition);
}
.feature-item:hover .icon-bubble {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}
.icon-bubble svg {
    color: var(--highlight);
    width: 28px;
    height: 28px;
}
.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
}


/* ----------------------
   FAQ ACCORDION
---------------------- */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
    border-top: 1px solid var(--border);
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: var(--transition);
}
.faq-question:hover { color: var(--highlight); }
.faq-question svg {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}
.faq-question.active svg {
    transform: rotate(45deg);
    color: var(--highlight);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ----------------------
   CONTACT
---------------------- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 2.5rem;
    max-width: 900px; /* Increased to fit 3 cards */
    margin-inline: auto;
    flex-wrap: wrap;
    justify-content: center;
}
@media(min-width: 768px) {
    .contact-info { flex-direction: row; }
}
.contact-card {
    flex: 1;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.contact-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.contact-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    display: block;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.contact-value.link:hover {
    color: var(--highlight);
    text-decoration: underline;
}
.contact-subvalue {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}


/* ----------------------
   FOOTER
---------------------- */
.footer {
    background-color: var(--bg-card);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}
.footer-logo {
    width: 48px;
    margin: 0 auto 1.5rem;
    opacity: 0.6;
}
.footer-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.footer-top-row .footer-name {
    margin-bottom: 0;
}
.footer-name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}
.footer-role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ----------------------
   FLOATING WHATSAPP
---------------------- */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp Green */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 100;
    transition: var(--transition);
}
.floating-whatsapp:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-float);
}
.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}
