:root {
    --clr-bg-main: #050505;
    --clr-bg-alt: #070e15;
    --clr-dark-blue: #071220;
    --clr-teal: #1c697a;
    --clr-teal-light: #4ab3c6;
    --clr-teal-dark: #0f4f5c;
    --clr-text-main: #f0f0f0;
    --clr-text-muted: #9ea8b0;
    --clr-white: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-max: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --glass-bg: rgba(7, 18, 32, 0.5);
    --glass-border: rgba(28, 105, 122, 0.22);
    --shadow-teal: 0 4px 30px rgba(28, 105, 122, 0.2);
    --shadow-teal-glow: 0 0 24px rgba(28, 105, 122, 0.45);
}

/* Reset & Global */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-main);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 2rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--clr-teal-light), var(--clr-teal-dark));
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-teal);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    box-shadow: var(--shadow-teal-glow);
    transform: translateY(-2px);
    color: var(--clr-white);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--clr-teal-light);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-teal);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(28, 105, 122, 0.12);
    transform: translateY(-2px);
    border-color: var(--clr-teal-light);
}

/* Typography Utilities */
.section-title { font-size: 2.5rem; color: var(--clr-white); margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1.05rem; color: var(--clr-teal-light); font-weight: 400; margin-bottom: 1.5rem; letter-spacing: 1px; }
.center { text-align: center; }

/* ============================================================
   NAVBAR
   ============================================================ */

/* linha de acento no topo da página */
.navbar-topline {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--clr-teal-dark), var(--clr-teal-light), var(--clr-teal-dark));
    z-index: 1001;
}

.navbar {
    position: fixed;
    top: 3px; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.93);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.7rem 0;
}

/* grid 3 colunas: social | nav+logo | cta */
.navbar-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

/* Ícones sociais — esquerda */
.nav-social {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    justify-self: start;
}

.nav-social a {
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.nav-social a:hover { color: var(--clr-teal-light); }

/* Centro: links | logo | links */
.nav-center {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-self: center;
}

.nav-links { display: flex; gap: 1.75rem; align-items: center; }

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--clr-text-muted);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--clr-teal-light);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--clr-teal-light); }

/* ── Dropdown "O que trato" ── */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
    display: flex !important;
    align-items: center;
    gap: 0.35rem;
}

.dropdown-arrow {
    opacity: 0.55;
    flex-shrink: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: rgba(5, 5, 5, 0.97);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu a:hover {
    color: var(--clr-teal-light);
    background: rgba(28, 105, 122, 0.1);
}

/* ── Mobile Menu btn ── */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

/* ── Mobile Menu Overlay ── */
.mobile-menu-overlay {
    position: fixed;
    top: 0; right: -100%;
    width: 60%; height: 100vh;
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(255,255,255,0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 2rem;
    transition: right 0.4s ease;
}

.mobile-menu-overlay.active { right: 0; }

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    text-align: left;
    width: 100%;
}

.mobile-menu-links a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--clr-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover { color: var(--clr-gold); }
/* Logo centralizada */
.logo { display: flex; align-items: center; }

.logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.88;
    transition: var(--transition-smooth);
}

.logo-img:hover { opacity: 1; }

/* CTA outline pill — direita */
.btn-outline-nav {
    justify-self: end;
    display: inline-block;
    background: transparent;
    color: var(--clr-text-main);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.82rem;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.btn-outline-nav:hover {
    border-color: var(--clr-teal-light);
    color: var(--clr-teal-light);
    background: rgba(28, 105, 122, 0.1);
}

.navbar.scrolled .btn-outline-nav {
    border-color: var(--clr-teal);
    color: var(--clr-teal-light);
}

/* ============================================================
   HERO — two column
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 110px 0 1rem;
    background: radial-gradient(ellipse at top right, #071a26 0%, var(--clr-bg-main) 65%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none"%3E%3Cg fill="%231c697a" fill-opacity="0.04"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    z-index: 0;
    pointer-events: none;
}

/* marca d'água — logo lobo, apenas metade esquerda da imagem */
.hero-watermark-logo {
    position: absolute;
    inset: 0;
    background-image: url('../img/logo-lobo.png');
    background-repeat: no-repeat;
    background-size: 240% auto;     /* +20% de tamanho */
    background-position: left center;
    opacity: 0.3;                    /* +10% de opacidade */
    mix-blend-mode: screen;          /* fundo branco some no tema escuro */
    z-index: 0;
    pointer-events: none;
    filter: invert(1) grayscale(1);  /* fundo branco → preto (invisível), traço → cinza neutro */
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 5rem;
    padding-right: 0.5rem;
    margin-right: -8%;
    left: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.9s ease forwards;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.1rem;
    background: rgba(7, 18, 32, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--clr-teal-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.hero h1 {
    font-size: 3rem;
    color: var(--clr-white);
    margin-bottom: 0.75rem;
    line-height: 1.08;
    text-shadow:
        0 2px 12px rgba(255, 255, 255, 0.35),
        0 0  24px rgba(255, 255, 255, 0.18);
}

/* palavra com efeito de seleção animada */
.hero h1 .word-highlight {
    display: inline;
    font-family: 'Courier New', ui-monospace, monospace;
    font-weight: 700;
    color: var(--clr-teal-light);
    -webkit-text-fill-color: var(--clr-teal-light);
    background: linear-gradient(rgba(74, 179, 198, 0.25), rgba(74, 179, 198, 0.25)) no-repeat left center;
    background-size: 0% 90%;
    -webkit-background-clip: unset;
    background-clip: unset;
    padding: 0 3px;
    border-radius: 2px;
    animation: select-word 1.4s steps(14, end) 1.1s forwards;
}

@keyframes select-word {
    to { background-size: 104% 90%; }
}

.hero p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.75rem;
    max-width: 440px;
    line-height: 1.75;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero Photo */
.hero-photo {
    position: relative;
    z-index: 1;
    width: 85%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.9s ease 0.2s forwards;
}

.hero-photo-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: none;
    aspect-ratio: 3 / 4;
}

.hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* dissolução nas quatro bordas + fusão reforçada à esquerda para o texto invadir */
.hero-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,    var(--clr-bg-main) 0%, transparent 42%),
        linear-gradient(to right,  var(--clr-bg-main) 0%, transparent 10%),
        linear-gradient(to left,   var(--clr-bg-main) 0%, transparent 10%),
        linear-gradient(to bottom, var(--clr-bg-main) 0%, transparent 18%);
    pointer-events: none;
}

.hero-crm {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: rgba(5, 5, 5, 0.96);
    border: 1px solid var(--clr-teal);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--shadow-teal);
}

.crm-label {
    font-size: 0.62rem;
    color: var(--clr-teal-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.crm-value {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    font-family: var(--font-heading);
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CREDENTIALS STRIP
   ============================================================ */
.credentials-strip {
    background: var(--clr-bg-alt);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.credentials-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.3rem;
}

.credentials-list span {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.cred-dot { color: var(--clr-teal) !important; font-size: 1rem !important; letter-spacing: 0 !important; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 8rem 0;
    background-color: var(--clr-bg-alt);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
}

.about-content {
    position: relative;
    z-index: 2;
    padding-right: 2.5rem;
    margin-right: -8%; /* invade ~10% da largura da foto */
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
}

/* gradiente sutil na borda esquerda da foto para fusão com o texto */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    left: 0;
    width: 18%;
    background: linear-gradient(to right, var(--clr-bg-alt) 0%, transparent 100%);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    z-index: 2;
    pointer-events: none;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-experience {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--clr-bg-main);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-teal);
    box-shadow: var(--shadow-teal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-teal-light);
    letter-spacing: 2px;
}

.exp-text {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-teal-light);
    border-left: 2px solid var(--clr-teal);
    padding-left: 0.75rem;
    margin-bottom: 1.25rem;
}

.about-content p {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-list { list-style: none; margin-top: 2rem; }

.about-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.9rem;
    color: var(--clr-white);
    font-size: 0.95rem;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-teal-light);
    font-weight: bold;
}

/* ============================================================
   O QUE TRATO — conditions grid
   ============================================================ */
.specialties {
    padding: 1.5rem 0 5rem 0;
    background: var(--clr-bg-main);
    position: relative;
    overflow: hidden;
}

.section-header p {
    color: var(--clr-text-muted);
    max-width: 620px;
    margin: 0 auto 4rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.condition-card {
    background: rgba(7, 18, 32, 0.32);
    border: 1px solid var(--glass-border);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.condition-card:hover {
    transform: translateY(-5px);
    border-color: rgba(28, 105, 122, 0.45);
    box-shadow: 0 12px 40px rgba(28, 105, 122, 0.12);
}

.condition-card .card-icon { display: flex; align-self: center; margin-bottom: 1.25rem; }
.condition-card .card-icon svg { width: 50px; height: 50px; }

.condition-card h3 { font-size: 1.15rem; color: var(--clr-white); margin-bottom: 1rem; }

.card-pain {
    font-style: italic;
    color: var(--clr-teal-light);
    font-size: 0.87rem;
    line-height: 1.65;
    border-left: 2px solid var(--clr-teal);
    padding-left: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.card-solution {
    color: var(--clr-text-muted);
    font-size: 0.87rem;
    line-height: 1.75;
    margin-top: auto;
}

/* ============================================================
   ATENDIMENTO
   ============================================================ */
.method {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--clr-bg-main), var(--clr-dark-blue));
    position: relative;
}

.method::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.method-container { display: flex; justify-content: center; }

.method-content { max-width: 760px; text-align: center; width: 100%; }

.method-content > p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--glass-bg);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.step:hover { border-color: rgba(28, 105, 122, 0.4); }

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-teal);
    opacity: 0.35;
    min-width: 3rem;
    line-height: 1;
}

.step-text h4 { color: var(--clr-white); margin-bottom: 0.4rem; font-size: 1.05rem; }
.step-text p { color: var(--clr-text-muted); margin-bottom: 0; font-size: 0.95rem; }

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.instagram-section {
    background: var(--clr-bg-alt);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 2.5rem 0;
}

.instagram-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.insta-icon { color: var(--clr-teal-light); display: flex; align-items: center; flex-shrink: 0; }

.insta-text { display: flex; flex-direction: column; gap: 0.2rem; }

.insta-text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--clr-white);
    font-weight: 600;
}

.insta-text span { font-size: 0.9rem; color: var(--clr-text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background-color: #030303;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.footer-insta-block { margin-top: 0.75rem; }

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-logo {
    height: 127px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    margin-bottom: 0.75rem;
    display: block;
}

.footer-crm { font-size: 0.98rem; color: var(--clr-text-muted); }

.footer-right { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-right p { font-size: 0.9rem; color: var(--clr-text-muted); }

.phone {
    color: var(--clr-teal-light) !important;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1rem !important;
}

.footer-insta { font-size: 0.9rem; color: var(--clr-teal-light); }
.footer-insta:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-legal {
    font-size: 0.65rem;
    color: rgba(150, 150, 150, 0.6);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-legal .legal-brand {
    color: var(--clr-teal-light); /* Or var(--clr-gold) if it exists, but teal is the brand color here */
    font-weight: 600;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 999;
    background: #25d366;
    color: #fff;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: pulse-wa 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
    animation: none;
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.65); }
}

/* ============================================================
   MODAL — QUEM SOU
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--clr-bg-alt);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    max-width: 880px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding: 3rem 2.5rem 2.5rem;
    transform: scale(0.94) translateY(24px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--clr-text-muted);
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    border-color: var(--clr-teal);
    color: var(--clr-teal-light);
    transform: rotate(90deg);
}

/* grid interno do modal */
.modal-about-grid {
    display: block;
    position: relative;
    min-height: 480px;
}

.modal-about-grid .about-content {
    position: relative;
    z-index: 2;
    padding-right: 10%;
    margin-right: 0;
}

/* Sombra para garantir leitura sobre a foto */
.modal-about-grid .about-content p,
.modal-about-grid .about-content h2,
.modal-about-grid .about-content h3 {
    text-shadow: 0 2px 15px rgba(7, 18, 32, 0.95);
}

.modal-photo-wrapper {
    position: absolute;
    z-index: 1;
    top: 0;
    right: -2.5rem; /* Expande para a borda do padding do modal */
    bottom: -2.5rem;
    width: 65%;
    pointer-events: none;
}

.modal-photo-wrapper .about-image-placeholder {
    height: 100%;
    width: 100%;
    max-height: unset;
    aspect-ratio: auto;
}

.modal-photo-wrapper .about-image-placeholder img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right top;
    mask-image: linear-gradient(to right, transparent 0%, black 50%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
    opacity: 0.6;
}

/* gradiente de fusão antigo removido */
.modal-photo-wrapper::before {
    display: none;
}

@media (max-width: 680px) {
    .modal-about-grid {
        display: flex;
        flex-direction: column-reverse; /* Inverte a ordem: foto (que está em baixo no DOM) vai pro topo */
        position: relative;
    }
    .modal-photo-wrapper { 
        display: block; 
        position: static;
        width: 140px;
        height: 140px;
        margin: 0 auto 1.5rem auto;
        border-radius: 50%;
        border: 2px solid var(--clr-teal-light);
        overflow: hidden;
        z-index: 2;
    }
    .modal-photo-wrapper .about-image-placeholder {
        aspect-ratio: 1;
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }
    .modal-photo-wrapper::before {
        display: none;
    }
    .modal-about-grid .about-content {
        margin-right: 0;
        padding-right: 0;
        text-align: center;
    }
    .modal-about-grid .about-list {
        padding-right: 0;
        min-height: auto;
        text-align: left;
    }
    .about-experience {
        display: none;
    }
    .modal-container { padding: 2rem 1.5rem; }
}

/* ============================================================
   SEO SIGNATURE ZEL@I
   ============================================================ */
.seo-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.seo-signature span { font-size: 0.75rem; color: rgba(150, 150, 150, 0.65); }

.seo-signature a { opacity: 0.6; transition: all 0.3s ease; display: flex; }
.seo-signature a:hover { opacity: 1; transform: scale(1.05); }
.seo-signature img { height: 3.25rem; width: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ─── Tablet wide ─── */
@media (max-width: 1024px) {
    .hero h1         { font-size: 2.5rem; }
    .conditions-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title   { font-size: 2.3rem; }
}

/* ─── Tablet portrait — coluna única ─── */
@media (max-width: 900px) {
    .hero            { padding: 120px 0 4rem; }
    .hero-grid       { grid-template-columns: 1fr; text-align: center; padding: 0; }
    .hero-photo      { display: none; }
    .hero h1 br      { display: none; }
    .hero h1         { font-size: 2.3rem; text-shadow: none; }
    .hero-content    { padding-left: 0; padding-right: 0; left: 0; margin-right: 0; }
    .hero p          { max-width: 540px; margin-left: auto; margin-right: auto; }
    .hero-buttons    { justify-content: center; }
    .footer-main     { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
    /* Usar flexbox na barra de navegação para garantir alinhamento perfeito */
    .navbar-content        { display: flex; justify-content: space-between; align-items: center; width: 100%; }
    .nav-social            { display: none; }
    
    /* Logo totalmente à esquerda */
    .nav-center            { display: flex; justify-self: start; margin: 0; padding: 0; width: auto; align-items: center; }
    .nav-center .nav-links { display: none; }
    
    .logo                  { position: static; transform: none; left: auto; margin: 0; }
    .logo-img              { width: 80px; height: auto; display: block; }
    
    .btn-outline-nav       { display: none; }
    /* Menu totalmente à direita e acima de tudo */
    .mobile-menu-btn       { display: flex; justify-self: end; margin: 0; position: relative; z-index: 9999; pointer-events: auto; }
    
    /* Ajustes Hero Responsivo */
    .hero                  { min-height: auto; padding-top: 120px; align-items: flex-start; padding-bottom: 0.5rem; }
    .specialties           { padding-top: 1rem; }
    .hero-grid             { position: relative; padding-bottom: 1rem; }
    .hero-content          { text-align: justify; position: relative; z-index: 2; pointer-events: none; }
    .hero-watermark-logo   { 
        background-position: left top -2rem; 
        background-size: 240% auto; 
        -webkit-mask-image: radial-gradient(ellipse at 50% 15%, black 20%, transparent 65%);
        mask-image: radial-gradient(ellipse at 50% 15%, black 20%, transparent 65%);
    }
    .hero-buttons          { flex-direction: column; align-items: flex-start; pointer-events: auto; }
    .hero h1               { font-size: 2rem; text-align: left; }
    .hero h1 br            { display: unset; }
    .hero p                { padding-right: 0; }
    .hero-photo            { 
        display: block; 
        position: absolute; 
        bottom: 25%; 
        right: 0; 
        width: 65%; 
        max-width: 260px;
        z-index: 1; 
    }
    .hero-photo-frame      { border-radius: var(--radius-lg); overflow: hidden; }
    .hero-crm              { display: none; } /* Oculta CRM para não poluir o layout reduzido */
    
    .section-title         { font-size: 2rem; }
    .conditions-grid       { grid-template-columns: 1fr; }
    .credentials-list      { justify-content: center; }
    .instagram-content     { flex-direction: column; text-align: center; }
}

/* ─── Mobile pequeno ─── */
@media (max-width: 480px) {
    .container       { padding: 0 1.25rem; }
    .hero            { padding: 96px 0 3rem; }
    .hero h1         { font-size: 1.75rem; line-height: 1.15; }
    .badge           { font-size: 0.7rem; }
    .btn-primary,
    .btn-secondary   { width: 100%; text-align: center; justify-content: center; }
    .btn-outline-nav { font-size: 0.75rem; padding: 0.5rem 0.9rem; }
    .section-title   { font-size: 1.75rem; }
    .step            { flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }
    .step-number     { font-size: 2rem; }
}

/* ============================================================
   7. BLOG DA SAÚDE (ESTRUTURA GRID E CATEGORIAS)
============================================================ */

.blog-hero {
    padding: 150px 0 4rem;
    background: radial-gradient(ellipse at center, #071a26 0%, var(--clr-bg-main) 100%);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.blog-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--clr-gold);
}

.blog-subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.blog-list-section {
    padding: 4rem 0 6rem;
    background: var(--clr-bg-main);
}

.categories-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.category-tag {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--clr-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-tag.is-active,
.category-tag:hover {
    border-color: var(--clr-gold);
    color: var(--clr-gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.post-card {
    background-color: var(--clr-bg-alt);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.post-card h2 a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.post-card:hover {
    transform: translateY(-4px);
    border-color: var(--clr-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.post-category {
    font-size: 10px;
    font-weight: 600;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    display: block;
}

.post-card h2 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.post-card h2 a {
    color: #fff;
    text-decoration: none;
}

.post-image-placeholder {
    display: none; 
    width: calc(100% + 3rem);
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: -2rem -1.5rem 1.5rem -1.5rem;
}

.post-card p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.post-meta {
    font-size: 11px;
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

@media screen and (min-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================
   8. PÁGINA DE POST DO BLOG
============================================================ */

.post-main {
    padding: 150px 0 6rem;
    background: var(--clr-bg-main);
}

.post-container {
    max-width: 800px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 3rem;
    text-align: center;
}

.post-title {
    font-size: 2.5rem;
    color: var(--clr-gold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.post-content {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content h2 {
    color: #fff;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}

.post-content h3 {
    color: var(--clr-teal-light);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.tldr-box {
    background: var(--clr-bg-alt);
    border-left: 4px solid var(--clr-gold);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.tldr-box strong {
    color: var(--clr-gold);
}

.citation-capsule {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--clr-gold);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--radius-sm);
    font-style: italic;
    color: #fff;
}

/* ============================================================
   9. MOBILE OVERRIDES (MUST BE AT THE END)
============================================================ */
@media screen and (max-width: 768px) {
    .blog-hero             { padding: 100px 0 0.5rem; }
    .blog-title            { font-size: 1.8rem; margin-bottom: 0; }
    .blog-subtitle         { font-size: 1rem; margin-bottom: 0; }
    .blog-list-section     { padding: 1rem 0 2rem; }
    .categories-filter     { margin-bottom: 1rem; gap: 0.3rem; }
    .post-main             { padding: 100px 0 3rem; }
}
