/* ===========================
   VARIÁVEIS E RESET
=========================== */
:root {
    --primary: #1FA3C6;
    --primary-dark: #0E7FA6;
    --primary-light: #E2F4FA;
    --gradient: linear-gradient(135deg, #0E7FA6 0%, #1FA3C6 100%);
    --gradient-r: linear-gradient(135deg, #1FA3C6 0%, #0E7FA6 100%);
    --accent: #1FA3C6;
    --gold: #C9A84C;
    --wa: #25D366;
    --wa-dark: #1da851;
    --dark: #0F1923;
    --text: #2D3748;
    --text-muted: #718096;
    --bg: #F7FAFC;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    --transition: 0.3s ease;
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section { padding: clamp(60px, 8vw, 100px) 0; }

/* ===========================
   TIPOGRAFIA
=========================== */
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p { line-height: 1.7; }

.section-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ===========================
   BOTÕES
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}
.btn-primary:hover { background: var(--gradient-r); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(14,127,166,0.35); }

.btn-lg { padding: 14px 32px; font-size: 1rem; }

.btn-wa-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--wa);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-wa-small:hover { background: var(--wa-dark); transform: translateY(-2px); }

.btn-hero-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--wa);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-hero-wa:hover { background: var(--wa-dark); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }

.btn-wa-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--wa);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition);
    margin-top: 8px;
}
.btn-wa-lg:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===========================
   HEADER
=========================== */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

#header.scrolled .brand { color: var(--dark); }
#header.scrolled nav a { color: var(--text); }
#header.scrolled .hamburger span { background: var(--dark); }

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    flex-shrink: 0;
    transition: color var(--transition);
}
.brand strong { font-weight: 800; }

.brand-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
}

nav a {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition);
}
nav a:hover { color: var(--white); }
nav a:hover::after { transform: scaleX(1); }

#header.scrolled nav a { color: var(--text-muted); }
#header.scrolled nav a:hover { color: var(--primary); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
#header.scrolled .hamburger span { background: var(--dark); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO
=========================== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    /* Escurece o lado esquerdo para o texto ficar legível,
       deixa o lado direito mais transparente para mostrar a fachada */
    background: linear-gradient(
        100deg,
        rgba(10, 20, 35, 0.78) 0%,
        rgba(14, 127, 166, 0.55) 50%,
        rgba(14, 127, 166, 0.25) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 680px;   /* limita só o texto, não o fundo */
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}
.badge i { color: var(--gold); }

.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 580px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    transition: color var(--transition);
}
.hero-scroll:hover { color: var(--white); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   STATS
=========================== */
#stats {
    padding: 0;
    background: var(--gradient);
    color: var(--white);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px 24px;
    gap: 16px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-num {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* ===========================
   QUEM SOMOS
=========================== */
#sobre { background: var(--white); }

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.sobre-fotos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.sobre-foto {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.sobre-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sobre-foto:hover img {
    transform: scale(1.04);
}

.sobre-imgs {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.sobre-imgs--single {
    display: block;
    position: relative;
}

.sobre-img-main {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.sobre-img-main img {
    width: 100%;
    height: auto;
    display: block;
}

.sobre-img-sec {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.sobre-img-sec img {
    width: 100%;
    height: auto;
    display: block;
}

.sobre-floatbadge--below {
    position: static;
    margin-top: 12px;
    border-radius: var(--radius-sm);
}

.sobre-floatbadge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(13,74,99,0.92);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}
.sobre-floatbadge i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

.sobre-content h2 { margin-bottom: 16px; color: var(--primary-dark); }
.lead { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; }

.historia-texto {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.historia-texto p {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: justify;
}

.sobre-features { display: flex; flex-direction: column; gap: 20px; }

.sobre-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sobre-feature h4 { margin-bottom: 4px; color: var(--primary-dark); }
.sobre-feature p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ===========================
   PROFISSIONAIS
=========================== */
#profissionais { background: var(--bg); }

.profissionais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.prof-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    padding-bottom: 28px;
    transition: var(--transition);
}
.prof-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.prof-foto {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.prof-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.prof-card h3 {
    color: var(--primary-dark);
    font-size: 1.05rem;
    margin: 20px 20px 6px;
}

.in-memoriam {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-muted);
}

.prof-esp {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0 20px;
}

.memoriam-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

.prof-card--memoriam {
    max-width: 380px;
    background: linear-gradient(160deg, #fdf7f2 0%, #f5ede4 100%);
    border-color: #d4ae8e;
    position: relative;
    overflow: visible;
}

.prof-card--memoriam::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c4956a, #e8c9a0, #c4956a);
    border-radius: var(--radius) var(--radius) 0 0;
}

.prof-card--memoriam .prof-foto {
    border-radius: 0;
    filter: grayscale(100%);
}

.prof-card--memoriam h3 {
    color: #7a5236;
}

.prof-card--memoriam .prof-esp {
    color: #a07050;
}

.memoriam-ribbon {
    background: linear-gradient(90deg, #c4956a, #e8c9a0, #c4956a);
    color: #5a3520;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 20px;
    text-align: center;
}

.memoriam-tribute {
    font-size: 0.82rem;
    color: #a07050;
    font-style: italic;
    line-height: 1.6;
    padding: 16px 24px 4px;
    border-top: 1px solid #e8d0bc;
    margin-top: 16px;
}

/* ===========================
   ESPECIALIDADES
=========================== */
#servicos { background: var(--bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-highlight {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
}
.service-highlight h3 { color: var(--white); }
.service-highlight p { color: rgba(255,255,255,0.82); }
.service-highlight:hover { filter: brightness(1.08); border-color: transparent; }

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.service-highlight .service-icon {
    background: rgba(255,255,255,0.12);
    color: var(--accent);
}

.service-card h3 { color: var(--primary-dark); font-size: 1rem; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); flex-grow: 1; }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--wa);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
    transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }
.service-highlight .service-link { color: #6EE7B7; }

/* ===========================
   DIFERENCIAIS
=========================== */
#diferenciais { background: var(--white); }

#diferenciais .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.diferenciais-content h2 { color: var(--primary-dark); margin-bottom: 12px; }
.diferenciais-content > p { color: var(--text-muted); margin-bottom: 36px; }

.diferenciais-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 0;
}

.diferenciais-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.diferenciais-list li div { display: flex; flex-direction: column; gap: 2px; }
.diferenciais-list li strong { font-size: 0.95rem; color: var(--primary-dark); }
.diferenciais-list li span { font-size: 0.85rem; color: var(--text-muted); }

.diferenciais-fotos {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dif-foto {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
}

.dif-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.dif-foto:hover img {
    transform: scale(1.04);
}

.float-card {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    border: 1px solid var(--border);
}
.float-card i { font-size: 1.5rem; }
.float-card strong { display: block; font-weight: 700; color: var(--primary-dark); }
.float-card span { color: var(--text-muted); font-size: 0.78rem; }

.float-card-1 {
    top: -20px;
    right: -20px;
}
.float-card-1 i { color: var(--gold); }

.float-card-2 {
    bottom: -20px;
    left: -20px;
}
.float-card-2 i { color: var(--primary); }

/* ===========================
   ANTES E DEPOIS
=========================== */
#antes-depois { background: var(--bg); }

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-item { display: flex; flex-direction: column; gap: 12px; }

.comp-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: var(--shadow-md);
}

.comp-before, .comp-after {
    position: absolute;
    inset: 0;
}

.comp-after {
    clip-path: inset(0 0 0 50%);
    transition: none;
}

.comp-before img, .comp-after img,
.comp-before .img-placeholder, .comp-after .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
}
.img-placeholder i { font-size: 2rem; opacity: 0.6; }

.before-ph { background: linear-gradient(135deg, #8a9bb0 0%, #6b7a8f 100%); }
.after-ph  { background: var(--gradient); }

.comp-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.55);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    pointer-events: none;
}
.comp-label-after {
    left: auto;
    right: 12px;
}

.comp-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.comp-line {
    position: absolute;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--white);
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.comp-circle {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 1;
    pointer-events: all;
    cursor: ew-resize;
}

.case-title {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* ===========================
   DEPOIMENTOS
=========================== */
#depoimentos { background: var(--gradient); color: var(--white); }
#depoimentos .section-badge { background: rgba(255,255,255,0.15); color: var(--white); }
#depoimentos .section-header h2 { color: var(--white); }
#depoimentos .section-header p { color: rgba(255,255,255,0.65); }

.testimonials-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.tcard {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px 28px;
    flex: 0 0 calc(33.333% - 16px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform var(--transition);
}

.tcard:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.1);
}

.tcard-stars { color: var(--gold); font-size: 0.85rem; display: flex; gap: 3px; }
.tcard p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.7; font-style: italic; flex-grow: 1; }

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.tcard-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tcard-author strong { display: block; font-size: 0.9rem; color: var(--white); }
.tcard-author span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.tnav-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.85rem;
}
.tnav-btn:hover { background: var(--primary); border-color: var(--primary); }

.tnav-dots { display: flex; gap: 8px; }
.tnav-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.tnav-dot.active { background: var(--white); width: 24px; border-radius: 4px; }

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 8px;
    flex-wrap: wrap;
}
.g-stars { color: #FBBC05; font-size: 0.9rem; display: flex; gap: 2px; }
.google-rating span { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* ===========================
   CONTATO
=========================== */
#contato { background: var(--bg); }

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

.cinfo-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}
.cinfo-item:last-of-type { border-bottom: none; }

.cinfo-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--gradient);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.wa-icon { background: #E8F9EF; color: var(--wa); color: var(--wa); }
.ig-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); }

.cinfo-item > div { display: flex; flex-direction: column; gap: 3px; }
.cinfo-item strong { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.cinfo-item a, .cinfo-item span { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.cinfo-item a:hover { color: var(--primary); }

.contato-map {
    height: 480px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.contato-map iframe { width: 100%; height: 100%; border: none; }

.map-placeholder {
    width: 100%; height: 100%;
    background: var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    text-align: center;
    padding: 24px;
}
.map-placeholder i { font-size: 3rem; color: var(--primary-dark); opacity: 0.6; }
.map-placeholder p { font-size: 1rem; font-weight: 500; }
.map-placeholder small { font-size: 0.8rem; opacity: 0.7; }

/* ===========================
   FOOTER
=========================== */
#footer { background: var(--dark); color: rgba(255,255,255,0.7); }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 24px 48px;
}

.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }

.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover { background: var(--gradient); color: var(--white); border-color: transparent; }

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-links li a:hover { color: var(--white); }

.footer-contact p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
}
.footer-contact i { color: var(--primary); width: 14px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 8px;
}

/* ===========================
   WHATSAPP FLUTUANTE
=========================== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px; height: 58px;
    background: var(--wa);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: var(--transition);
}
.wa-float:hover {
    background: var(--wa-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.wa-tooltip {
    position: absolute;
    right: 68px;
    background: var(--dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: var(--transition);
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: var(--dark);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 1024px) {
    .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
    .sobre-imgs { max-width: 600px; margin: 0 auto; }
    .sobre-fotos { grid-template-columns: 1fr; }
    #diferenciais .container { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .float-card-1 { top: -10px; right: -10px; }
    .float-card-2 { bottom: -10px; left: -10px; }
}

@media (max-width: 768px) {
    nav { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--dark);
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }
    nav.open a {
        color: var(--white);
        font-size: 1.4rem;
        font-weight: 600;
    }
    nav.open a::after { display: none; }

    .stats-grid { flex-wrap: wrap; justify-content: center; }
    .stat-divider { display: none; }
    .stat-item { flex: 0 0 45%; }

    .cases-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .profissionais-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

    .tcard { flex: 0 0 calc(100% - 0px); }

    .contato-grid { grid-template-columns: 1fr; }
    .contato-map { height: 320px; }

    .footer-grid { grid-template-columns: 1fr 1fr; padding: 40px 24px 32px; gap: 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact { grid-column: 1 / -1; }

    .float-card-1, .float-card-2 { display: none; }

    .hero-btns { flex-direction: column; }
    .btn-hero-wa, .btn-hero-outline { justify-content: center; }
}

@media (max-width: 540px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .stat-item { flex: 0 0 100%; }
}

@media (max-width: 380px) {
    .services-grid { grid-template-columns: 1fr; }
}
