/* ===========================
   RESET & VARIABLES
   =========================== */
:root {
    --bg: #f8fafb;
    --bg-alt: #f0f4f7;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-alt: #f1f6f8;
    --surface-strong: #e8f0f3;
    --panel-soft: rgba(255, 255, 255, 0.75);
    --panel-strong: rgba(255, 255, 255, 0.92);
    --field-bg: rgba(255, 255, 255, 0.98);
    --line: rgba(22, 56, 66, 0.08);
    --line-strong: rgba(22, 56, 66, 0.15);
    --text: #1a2e35;
    --text-soft: #50666e;
    --text-muted: #8ca0a8;
    --accent: #1e5d66; /* Azul-esverdeado mais sóbrio e profundo */
    --accent-warm: #a8dce0;
    --accent-deep: #133d44;
    --accent-soft: rgba(30, 93, 102, 0.08);
    --accent-border: rgba(30, 93, 102, 0.15);
    --accent-glow: rgba(30, 93, 102, 0.12);
    --premium: #c5a47e; /* Dourado/Bronze mais refinado */
    --premium-deep: #a68763;
    --premium-soft: rgba(197, 164, 126, 0.1);
    --premium-line: rgba(197, 164, 126, 0.22);
    --ok: #2c9c82;
    --whatsapp: #25d366;
    --whatsapp-dark: #1ebe5a;
    --footer-bg: #12252b;
    --footer-panel: rgba(255, 255, 255, 0.04);
    --footer-line: rgba(255, 255, 255, 0.08);
    --footer-text: #eefbfc;
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --shadow-soft: 0 30px 60px rgba(16, 47, 56, 0.05);
    --shadow-deep: 0 40px 100px rgba(16, 47, 56, 0.1);
    --shadow-lift: 0 35px 80px rgba(16, 47, 56, 0.08);
    --ease: 400ms cubic-bezier(0.25, 1, 0.5, 1);
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-sans);
    background:
        radial-gradient(100% 100% at 0% 0%, rgba(168, 220, 224, 0.15) 0%, transparent 50%),
        radial-gradient(100% 100% at 100% 0%, rgba(197, 164, 126, 0.08) 0%, transparent 50%),
        var(--bg);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    font-weight: 300; /* Texto base ligeiramente mais leve para elegância */
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.2'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    z-index: 0;
}

::selection {
    background: var(--premium-soft);
    color: var(--text);
}

img {
    max-width: 100%;
    display: block;
}

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

.container {
    width: min(1240px, calc(100% - 64px)); /* Aumentado para mais amplitude */
    margin: 0 auto;
}

.section {
    padding: clamp(100px, 12vw, 160px) 0; /* Aumento do whitespace vertical */
    position: relative;
}

.section-alt {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08)),
        var(--surface-alt);
    overflow: hidden;
}

.section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(143, 224, 227, 0.18) 0%, transparent 24%),
        radial-gradient(circle at 92% 82%, rgba(18, 142, 161, 0.1) 0%, transparent 24%);
    pointer-events: none;
}

.section > .container {
    position: relative;
    z-index: 1;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, var(--accent-warm), #b8f0f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em; /* Espaçamento mais luxuoso */
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid var(--line);
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(16, 47, 56, 0.04);
    backdrop-filter: blur(10px);
}

.section-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--premium);
    box-shadow: 0 0 0 5px var(--premium-soft);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(64px, 8vw, 100px);
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    margin: 32px auto 0;
    background: linear-gradient(90deg, transparent, var(--premium), transparent);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.03em; /* Mais apertado para títulos grandes premium */
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-soft);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 42%);
    opacity: 0.9;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 0.95rem;
    gap: 12px;
}

.btn-full {
    width: 100%;
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.22);
    border-color: rgba(255,255,255,0.14);
}

.btn-whatsapp:hover {
    box-shadow: 0 22px 48px rgba(37, 211, 102, 0.34);
}

.btn-whatsapp-light {
    background: linear-gradient(180deg, #ffffff, #f8fffb);
    color: #128c4e;
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-light:hover {
    background: #f0fff6;
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.25);
}

.btn-outline {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.6);
}

/* ===========================
   HEADER
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 100px;
    background: rgba(248, 250, 251, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: var(--ease);
}

.header.scrolled {
    height: 80px;
    background: rgba(248, 250, 251, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 64px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.logo-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.05;
}

.logo-crm {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.35;
}

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

.nav-mobile-head,
.nav-mobile-meta {
    display: none;
}

.nav-link {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-soft);
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid transparent;
    transition: all var(--ease);
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.78);
    border-color: var(--accent-border);
    box-shadow: 0 10px 24px rgba(16, 47, 56, 0.06);
}

.nav-link.active {
    color: var(--accent-deep);
    background: rgba(18, 142, 161, 0.1);
    border-color: var(--accent-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.nav-cta {
    margin-left: 14px;
    font-size: 0.82rem;
    padding: 12px 22px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--ease);
}

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

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    background: radial-gradient(circle at 100% 0%, var(--accent) 0%, var(--accent-deep) 100%);
    padding: clamp(160px, 15vw, 220px) 0 clamp(100px, 10vw, 160px); /* Padding expandido */
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(168, 220, 224, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(197, 164, 126, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(64px, 10vw, 120px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    min-width: 0;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 100px;
    margin-bottom: 32px;
    backdrop-filter: blur(12px);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--whatsapp);
    border-radius: 50%;
    position: relative;
}

.badge-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--whatsapp);
    border-radius: 50%;
    opacity: 0.4;
    animation: ping 2s infinite;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 4.8rem); /* Título maior e mais impactante */
    font-weight: 600;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -0.04em;
}

.hero-title mark {
    background: transparent;
    color: var(--premium); /* Uso da cor premium no destaque */
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 580px;
    font-weight: 300;
}

.hero-highlight {
    display: grid;
    gap: 12px;
    max-width: 540px;
    margin-bottom: 40px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--premium);
}

.hero-highlight strong {
    color: var(--premium);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-highlight span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hero-authority {
    max-width: 560px;
    margin-bottom: 36px;
    padding: 18px 20px;
    display: grid;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
}

.hero-authority-label {
    display: inline-block;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-authority p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 24px 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    width: min(100%, 560px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.trust-item {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.trust-item strong {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    font-family: var(--font-serif);
}

.trust-item span {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    line-height: 1.5;
}

.trust-divider {
    display: none;
}

/* Hero Image Wrapper Refinement */
.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
}

.hero-img-wrapper::before {
    display: none;
}

.hero-img-wrapper img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center 22%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card-badge {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-deep);
    border-left: 5px solid var(--premium);
}

.hero-card-online {
    position: absolute;
    top: -18px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 28px;
    border-radius: 100px;
    font-weight: 700;
    color: var(--text);
    box-shadow: var(--shadow-soft);
    z-index: 2;
}

.online-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--whatsapp);
    border-radius: 50%;
    position: relative;
}

.online-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.25);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg path {
    fill: var(--surface-alt);
}

/* ===========================
   SOBRE
   =========================== */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(64px, 10vw, 120px);
    align-items: center;
}

.sobre-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.sobre-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 24px -24px -24px 24px;
    border-radius: var(--radius-xl);
    background: var(--bg-alt);
    z-index: -1;
    border: 1px solid var(--line);
}

.sobre-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-deep);
    border: 1px solid var(--line);
}

.sobre-card-exp {
    position: absolute;
    bottom: -32px;
    right: -32px;
    background: #ffffff;
    padding: 32px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-deep);
    border: 1px solid var(--premium-line);
}

.sobre-card-exp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 4px;
    background: var(--premium);
    border-radius: 0 0 4px 4px;
}

.exp-number {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-serif);
    color: var(--text);
}

.exp-number span {
    color: var(--premium);
}

.exp-label {
    font-size: 0.75rem;
    color: var(--text-soft);
    line-height: 1.4;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.sobre-content .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.sobre-text {
    font-size: 1.1rem;
    color: var(--text-soft);
    line-height: 1.9;
    margin-bottom: 24px;
    font-weight: 300;
}

.sobre-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
    margin: 48px 0;
}

.credential-item {
    display: flex;
    flex-direction: column;
    padding: 22px 20px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: var(--ease);
    min-height: 0;
    box-shadow: var(--shadow-soft);
}

.credential-item:hover {
    border-color: var(--premium-line);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
}

.cred-icon {
    font-size: 1.5rem;
    margin-bottom: 16px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--bg-alt);
    border-radius: 14px;
    color: var(--accent);
}

.credential-item strong {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 8px;
    display: block;
    line-height: 1.45;
}

.credential-item small {
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.6;
}

.sobre-content .btn {
    margin-top: 8px;
}

.sobre-extra-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid var(--line);
}

/* ===========================
   SERVICOS
   =========================== */
.servicos-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.servicos .section-header::after {
    display: none;
}

.servico-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    position: relative;
    transition: var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lift);
    border-color: var(--premium-line);
}

.servico-card.destaque {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 100%);
    border: 1px solid var(--accent-border);
    box-shadow: 0 40px 80px rgba(30, 93, 102, 0.08);
}

.servico-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    font-size: 1.8rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    color: var(--accent);
}

.servico-card.destaque .servico-icon-wrap {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(30, 93, 102, 0.2);
}

.servico-badge-destaque {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--premium-deep);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.servico-card h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.servico-card p {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
}

.servico-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    flex: 1;
}

.servico-list li {
    font-size: 0.9rem;
    color: var(--text-soft);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.servico-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
}

/* ===========================
   COMO FUNCIONA
   =========================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--ease);
    box-shadow: var(--shadow-soft);
    min-width: 0;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-line);
    box-shadow: var(--shadow-lift);
}

.step-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--premium);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    display: block;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    color: var(--accent);
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.7;
    font-weight: 300;
}

.step-arrow {
    display: none; /* Removido para um look mais limpo */
}

.como-cta {
    text-align: center;
    margin-top: 64px;
}

/* ===========================
   FAQ
   =========================== */
.faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--ease);
}

.faq-item.open {
    border-color: var(--premium-line);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-sans);
}

.faq-question span:first-child {
    flex: 1;
    min-width: 0;
}

.faq-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--premium);
    transition: transform 0.4s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 32px 32px;
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.8;
    font-weight: 300;
    overflow-wrap: break-word;
}

.faq-cta {
    max-width: 860px;
    margin: 40px auto 0;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 248, 0.94));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.faq-cta-copy {
    min-width: 0;
}

.faq-cta-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--premium-deep);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.faq-cta-title {
    margin: 0 0 10px;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    color: var(--text);
    line-height: 1.15;
}

.faq-cta-text {
    margin: 0;
    max-width: 560px;
    font-size: 0.98rem;
    color: var(--text-soft);
    line-height: 1.75;
}

.faq-cta-button {
    text-transform: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: radial-gradient(circle at 100% 100%, var(--accent) 0%, var(--accent-deep) 100%);
    padding: clamp(100px, 12vw, 160px) 0;
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content::before,
.cta-content::after,
.cta-badge::before,
.cta-badge::after {
    content: none;
    display: none;
}

.cta-badge {
    display: inline-block;
    color: var(--premium);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.cta-title span {
    color: var(--premium);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 600px;
    font-weight: 300;
}

.cta-actions {
    margin-bottom: 28px;
}

.cta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-info-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.cta-info-icon {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--accent-deep);
    flex-shrink: 0;
}

.cta-info-icon svg {
    display: block;
}

.cta-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 100px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 80px;
}

.footer .logo-name {
    color: #ffffff;
}

.footer .logo-icon {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.12);
    box-shadow: none;
}

.footer .logo-crm {
    color: rgba(255,255,255,0.62);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 20px;
    opacity: 0.76;
    max-width: 420px;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #eedfcb;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-links a, .footer-contact a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.66);
    transition: color var(--ease);
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer-whatsapp {
    width: fit-content;
    padding: 12px 16px;
    border-radius: 16px;
    background: var(--footer-panel);
    border: 1px solid var(--footer-line);
}

.footer-links a:hover, .footer-contact a:hover {
    color: #ffffff;
}

.footer-hours {
    font-size: 0.85rem;
    opacity: 0.66;
    max-width: 280px;
    line-height: 1.65;
    text-wrap: balance;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 28px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.72;
    line-height: 1.7;
}

.footer-disclaimer {
    margin-top: 8px;
    font-style: italic;
}

/* ===========================
   WHATSAPP FLUTUANTE
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 64px;
    height: 64px;
    background: linear-gradient(145deg, var(--whatsapp), var(--whatsapp-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    transition: all var(--ease);
    text-decoration: none;
    border: 3px solid rgba(255,255,255,0.82);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 14px 44px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:hover .float-tooltip {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.float-tooltip {
    position: absolute;
    right: 80px;
    background: var(--text);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--ease);
    pointer-events: none;
}

.float-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-left-color: var(--text);
}

.float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    animation: float-ping 2.5s infinite;
}

@keyframes float-ping {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

/* ===========================
   ANIMATIONS (AOS-like)
   =========================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"] {
    transform: translateY(35px);
}

[data-aos="fade-right"] {
    transform: translateX(-35px);
}

[data-aos="fade-left"] {
    transform: translateX(35px);
}

[data-aos="zoom-in"] {
    transform: scale(0.92);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ===========================
   RESPONSIVE - TABLET
   =========================== */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 28px;
    }

    .logo {
        min-width: 0;
    }

    .logo-crm {
        max-width: 148px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav {
        gap: 2px;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 0.78rem;
    }

    .nav-cta {
        margin-left: 10px;
        padding: 11px 16px;
        font-size: 0.76rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 56px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-highlight {
        margin: 0 auto 28px;
    }

    .hero-authority {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        margin: 0 auto;
    }

    .hero-card-badge {
        left: 0;
    }

    .hero-card-online {
        top: -14px;
        right: 16px;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .sobre-img-wrapper {
        max-width: 360px;
        margin: 0 auto;
    }

    .sobre-extra-photo {
        margin: 0 auto 32px;
    }

    .sobre-content .section-title {
        text-align: center;
    }

    .sobre-content .section-badge {
        display: block;
        text-align: center;
    }

    .sobre-content .btn {
        display: flex;
        justify-content: center;
    }

    .sobre-credentials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .step-arrow {
        display: none;
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-img-col {
        display: none;
    }

    .cta-info {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ===========================
   RESPONSIVE - MOBILE
   =========================== */
@media (max-width: 768px) {
    .header,
    .header.scrolled {
        height: auto;
    }

    .section {
        padding: 72px 0;
    }

    .container {
        width: min(1160px, calc(100% - 32px));
    }

    .nav-container {
        min-height: 88px;
        padding: 14px 16px;
        gap: 12px;
    }

    .logo {
        flex: 1;
        gap: 10px;
        min-width: 0;
        align-items: flex-start;
    }

    .logo-copy {
        gap: 2px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
        border-radius: 14px;
        margin-top: 2px;
    }

    .logo-name {
        font-size: 0.96rem;
    }

    .logo-crm {
        max-width: none;
        font-size: 0.55rem;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        letter-spacing: 0.03em;
    }

    .nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        background: rgba(248, 252, 253, 0.98);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(15, 77, 90, 0.1);
        border-radius: 24px;
        flex-direction: column;
        padding: 18px;
        gap: 6px;
        box-shadow: var(--shadow-soft);
        align-items: stretch;
        max-height: calc(100vh - 132px);
        overflow-y: auto;
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 14px 20px;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        margin-left: 0;
    }

    .nav-mobile-head {
        display: grid;
        gap: 6px;
        padding: 4px 4px 14px;
        margin-bottom: 4px;
        border-bottom: 1px solid rgba(15, 77, 90, 0.08);
    }

    .nav-mobile-kicker {
        font-size: 0.66rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--premium-deep);
    }

    .nav-mobile-intro {
        margin: 0;
        font-size: 0.84rem;
        color: var(--text-soft);
        line-height: 1.55;
    }

    .nav-mobile-meta {
        display: grid;
        gap: 6px;
        margin-top: 12px;
        padding-top: 14px;
        border-top: 1px solid rgba(15, 77, 90, 0.08);
    }

    .nav-mobile-name {
        font-family: var(--font-serif);
        font-size: 1rem;
        color: var(--text);
        line-height: 1.1;
    }

    .nav-mobile-register,
    .nav-mobile-hours {
        font-size: 0.74rem;
        color: var(--text-soft);
        line-height: 1.55;
    }

    .nav-mobile-hours {
        text-wrap: balance;
    }

    .hamburger {
        display: flex;
        width: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        border: 1px solid rgba(15, 77, 90, 0.1);
        background: rgba(255, 255, 255, 0.8);
        flex-shrink: 0;
    }

    .hero {
        padding: 118px 0 64px;
        min-height: auto;
    }

    .hero-container {
        gap: 36px;
    }

    .hero-content {
        order: 0;
    }

    .hero-image {
        order: 1;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2.35rem, 10vw, 3.5rem);
    }

    .hero-subtitle {
        margin-bottom: 28px;
    }

    .hero-authority {
        padding: 16px 18px;
        text-align: left;
    }

    .hero-actions {
        width: 100%;
        margin-bottom: 40px;
    }

    .btn {
        white-space: normal;
        text-align: center;
    }

    .hero-img-wrapper {
        max-width: min(100%, 360px);
        display: grid;
        gap: 12px;
    }

    .hero-img-wrapper img {
        height: clamp(320px, 78vw, 430px);
        object-position: center 20%;
    }

    .hero-img-wrapper::before,
    .hero-img-wrapper::after {
        display: none;
    }

    .hero-card-badge,
    .hero-card-online {
        position: static;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        max-width: none;
        justify-content: flex-start;
        padding: 14px 18px;
        border-radius: 18px;
        animation: none;
        text-align: left;
    }

    .hero-trust {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        padding: 18px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        gap: 6px;
        padding: 0 4px;
    }

    .trust-item strong {
        font-size: 1.35rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand .logo {
        align-items: flex-start;
    }

    .cta-info {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .whatsapp-float {
        bottom: 24px;
        right: 24px;
        width: 58px;
        height: 58px;
    }

    .sobre-card-exp {
        position: static;
        margin: 18px auto 0;
        padding: 20px 24px;
    }

    .exp-number {
        font-size: 2.25rem;
    }

    .sobre-img-wrapper::before {
        inset: 14px -10px -10px 14px;
    }

    .sobre-extra-photo {
        max-width: 100%;
    }

    .sobre-credentials {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .servico-card,
    .step-card {
        padding: 30px 22px;
    }

    .servico-badge-destaque {
        position: static;
        display: inline-flex;
        border-radius: 999px;
        margin-bottom: 18px;
    }

    .servico-list li {
        padding: 10px 12px;
        font-size: 0.88rem;
    }

    .step-card {
        max-width: none;
        width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 22px 24px;
        font-size: 0.96rem;
    }

    .faq-answer p {
        padding: 0 24px 24px;
    }

    .faq-cta {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 18px;
        text-align: center;
    }

    .faq-cta-copy {
        display: grid;
        justify-items: center;
    }

    .faq-cta-text {
        max-width: none;
    }

    .faq-cta-button,
    .cta-info-pill {
        width: 100%;
        justify-content: center;
    }

    #footer-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .float-tooltip {
        display: none;
    }

    .float-pulse {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        width: calc(100% - 24px);
    }

    .nav-container {
        padding: 12px 14px;
    }

    .logo-name {
        font-size: 0.9rem;
    }

    .logo-crm {
        font-size: 0.52rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-highlight {
        padding: 16px 18px;
    }

    .hero-authority {
        padding: 15px 16px;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px 16px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .footer-hours {
        font-size: 0.82rem;
    }

    .sobre-credentials {
        gap: 12px;
    }

    .credential-item {
        padding: 16px 18px;
    }

    .step-card {
        min-width: 100%;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 56px;
        height: 56px;
        border-width: 2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-aos] {
        opacity: 1;
        transform: none;
    }
}
