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

/* VARIAVEIS */
:root {
    --azul-profundo: #0c2335;
    --azul-medio: #18364f;
    --dourado: #c8a46b;
    --dourado-claro: #d4b87a;
    --bege: #f4efe8;
    --areia: #f8f5f1;
    --cinza: #e3e8ee;
    --texto: #1b1f24;
    --texto-leve: #5a6370;
    --branco: #ffffff;
    --sombra: 0 24px 60px rgba(12, 35, 53, 0.12);
    --sombra-hover: 0 32px 70px rgba(12, 35, 53, 0.18);
    --gradiente: linear-gradient(120deg, rgba(12, 35, 53, 0.92) 0%, rgba(24, 54, 79, 0.78) 60%, rgba(12, 35, 53, 0.95) 100%);
    --radius: 18px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* BASE */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--texto);
    line-height: 1.7;
    background: radial-gradient(circle at top left, #fff7ec 0%, #f7f1ea 30%, #f2f5f9 100%);
    overflow-x: hidden;
}

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

a {
    transition: color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(200, 164, 107, 0.15);
    color: var(--dourado);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.15);
    color: #fce7c2;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.fade-up.visible {
    animation: fadeUp 0.7s ease forwards;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    padding: 4px 0;
}

.header-scrolled {
    background: rgba(248, 245, 241, 0.97);
    box-shadow: 0 4px 30px rgba(12, 35, 53, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;
    transition: height var(--transition);
}

.header-scrolled .logo img {
    height: 70px;
}

/* HAMBURGER */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 28px;
    position: relative;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--azul-profundo);
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all 0.35s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* MENU */
.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: var(--azul-profundo);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

.menu a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dourado);
    transition: width var(--transition);
}

.menu a:hover::after {
    width: 100%;
}

.menu a:hover {
    color: var(--dourado);
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 35, 53, 0.97);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--branco);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.mobile-nav a:hover {
    color: var(--dourado);
}

/* BOTOES */
.btn-area-cliente,
.btn-principal,
.btn-secundario,
.btn-secundario-dark {
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

.btn-area-cliente {
    background: var(--azul-profundo);
    color: var(--branco);
    padding: 10px 22px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn-area-cliente:hover {
    background: var(--azul-medio);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12, 35, 53, 0.25);
}

.btn-principal {
    background: var(--dourado);
    color: var(--azul-profundo);
    padding: 15px 36px;
    font-size: 15px;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 12px 36px rgba(200, 164, 107, 0.35);
}

.btn-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(200, 164, 107, 0.5);
}

.btn-secundario {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--branco);
    padding: 13px 30px;
    font-size: 14px;
    background: transparent;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-secundario:hover {
    background: var(--branco);
    color: var(--azul-profundo);
    transform: translateY(-2px);
}

.btn-secundario-dark {
    border: 2px solid var(--azul-profundo);
    color: var(--azul-profundo);
    padding: 13px 30px;
    font-size: 14px;
    background: transparent;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-secundario-dark:hover {
    background: var(--azul-profundo);
    color: var(--branco);
    transform: translateY(-2px);
}

.desktop-only {
    display: inline-flex;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: var(--branco);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradiente);
    z-index: -1;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.12;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: #f7d8a5;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 520px;
    opacity: 0.92;
    line-height: 1.7;
}

.hero-tag {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    padding: 18px 20px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    transition: transform var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card strong {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--dourado-claro);
}

.stat-card span {
    font-size: 13px;
    opacity: 0.8;
}

.hero-panel {
    background: rgba(248, 245, 241, 0.97);
    color: var(--azul-profundo);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--sombra);
    backdrop-filter: blur(8px);
}

.hero-panel h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin-bottom: 18px;
}

.hero-panel ul {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-panel li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.5;
}

.hero-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dourado);
}

.hero-panel-cta {
    display: inline-flex;
    background: var(--azul-profundo);
    color: var(--branco);
    padding: 13px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.hero-panel-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(12, 35, 53, 0.3);
}

/* TRUST BAR */
.trust-bar {
    padding: 40px 0;
    background: var(--branco);
    border-bottom: 1px solid rgba(12, 35, 53, 0.06);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius);
    transition: transform var(--transition);
}

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

.trust-item svg {
    color: var(--dourado);
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 14px;
    color: var(--azul-profundo);
}

.trust-item span {
    font-size: 12px;
    color: var(--texto-leve);
}

/* SOBRE */
.sobre {
    padding: 100px 0;
}

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

.sobre h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--azul-profundo);
    line-height: 1.2;
}

.sobre-texto p {
    font-size: 17px;
    max-width: 520px;
    color: var(--texto-leve);
    margin-bottom: 14px;
}

.sobre-numeros {
    display: flex;
    gap: 24px;
    margin-top: 28px;
}

.sobre-numero {
    text-align: center;
}

.sobre-numero strong {
    display: block;
    font-size: 28px;
    color: var(--dourado);
    font-weight: 800;
}

.sobre-numero span {
    font-size: 13px;
    color: var(--texto-leve);
}

.sobre-card {
    background: var(--branco);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--sombra);
}

.sobre-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--azul-profundo);
    font-family: "Playfair Display", serif;
}

.sobre-card > p {
    color: var(--texto-leve);
    margin-bottom: 20px;
}

.sobre-valores {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.sobre-valor {
    display: grid;
    grid-template-columns: 24px auto;
    gap: 8px 12px;
    align-items: start;
    padding: 14px;
    background: var(--bege);
    border-radius: 14px;
}

.sobre-valor svg {
    grid-row: span 2;
    margin-top: 2px;
}

.sobre-valor span {
    font-weight: 700;
    font-size: 14px;
    color: var(--azul-profundo);
}

.sobre-valor p {
    font-size: 13px;
    color: var(--texto-leve);
    grid-column: 2;
    line-height: 1.5;
}

.sobre-highlight {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sobre-highlight span {
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--bege);
    font-size: 13px;
    font-weight: 700;
    color: var(--azul-profundo);
}

/* SERVICOS */
.services {
    padding: 100px 0;
    background: var(--areia);
    text-align: center;
}

.services h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    color: var(--azul-profundo);
    margin-bottom: 14px;
}

.services-subtitle {
    font-size: 17px;
    color: var(--texto-leve);
    max-width: 560px;
    margin: 0 auto 50px;
}

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

.service-card {
    background: var(--branco);
    padding: 34px 26px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--texto);
    box-shadow: 0 8px 30px rgba(12, 35, 53, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-hover);
    border-color: rgba(200, 164, 107, 0.3);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(200, 164, 107, 0.15);
    color: var(--dourado);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 19px;
    color: var(--azul-profundo);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--texto-leve);
    flex-grow: 1;
}

.service-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dourado);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: gap var(--transition);
}

.service-card:hover .service-link {
    color: var(--azul-profundo);
}

/* DIFERENCIAIS */
.diferenciais {
    background: var(--branco);
    padding: 100px 0;
}

.diferenciais h2 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--azul-profundo);
}

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

.diferencial-item {
    padding: 32px;
    border-radius: var(--radius);
    background: var(--bege);
    border: 1px solid rgba(12, 35, 53, 0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.diferencial-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(12, 35, 53, 0.1);
}

.diferencial-numero {
    font-size: 28px;
    font-weight: 800;
    color: var(--dourado);
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
}

.diferencial-item h3 {
    margin-bottom: 10px;
    color: var(--azul-profundo);
    font-size: 18px;
}

.diferencial-item p {
    color: var(--texto-leve);
    font-size: 14px;
    line-height: 1.65;
}

/* PROCESSO */
.processo {
    padding: 100px 0;
    background: linear-gradient(120deg, rgba(200, 164, 107, 0.06) 0%, rgba(12, 35, 53, 0.04) 100%);
}

.processo h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--azul-profundo);
    text-align: center;
}

.processo-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.processo-step {
    background: var(--branco);
    padding: 30px 26px;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(12, 35, 53, 0.06);
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.processo-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--sombra);
}

.processo-step-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--dourado);
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
}

.processo-step h3 {
    margin-bottom: 10px;
    color: var(--azul-profundo);
    font-size: 18px;
}

.processo-step p {
    font-size: 14px;
    color: var(--texto-leve);
    line-height: 1.6;
}

.processo-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--dourado), rgba(200, 164, 107, 0.3));
    flex-shrink: 0;
}

/* DEPOIMENTOS */
.depoimentos {
    padding: 100px 0;
    background: var(--areia);
}

.depoimentos h2 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--azul-profundo);
}

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

.depoimento-card {
    background: var(--branco);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(12, 35, 53, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sombra);
}

.depoimento-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.depoimento-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--texto);
    margin-bottom: 22px;
    font-style: italic;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 14px;
}

.depoimento-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--azul-profundo);
    color: var(--branco);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
}

.depoimento-autor strong {
    display: block;
    font-size: 15px;
    color: var(--azul-profundo);
}

.depoimento-autor span {
    font-size: 12px;
    color: var(--texto-leve);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--branco);
}

.faq h2 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--azul-profundo);
}

.faq-grid {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bege);
    border: 1px solid rgba(12, 35, 53, 0.05);
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(12, 35, 53, 0.06);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--azul-profundo);
    text-align: left;
    gap: 16px;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--dourado);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--texto-leve);
    line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-medio) 100%);
}

.cta-content {
    text-align: center;
    color: var(--branco);
}

.cta-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(26px, 3.5vw, 40px);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-actions .btn-secundario-dark {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--branco);
}

.cta-actions .btn-secundario-dark:hover {
    background: var(--branco);
    color: var(--azul-profundo);
}

/* ATUACAO / CONTATO */
.atuacao {
    background: linear-gradient(rgba(12, 35, 53, 0.9), rgba(12, 35, 53, 0.9)),
        url("../img/cidade.jpg") center/cover no-repeat;
    color: var(--branco);
    padding: 100px 0;
    text-align: center;
}

.atuacao h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 16px;
}

.atuacao-texto {
    max-width: 640px;
    margin: 0 auto 40px;
    font-size: 17px;
    opacity: 0.9;
}

.contato-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.contato-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 24px 20px;
    backdrop-filter: blur(6px);
    transition: transform var(--transition), background var(--transition);
}

.contato-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.contato-card svg {
    margin: 0 auto 12px;
    color: var(--dourado-claro);
}

.contato-card strong {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contato-card p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
}

.contato-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contato-cta .btn-secundario {
    border-color: rgba(255, 255, 255, 0.4);
}

/* FOOTER */
.footer {
    padding: 60px 0 0;
    background: var(--azul-profundo);
    color: var(--branco);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    max-width: 280px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    color: var(--dourado-claro);
}

.footer-links ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--branco);
}

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

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 80;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
    animation: none;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: var(--azul-profundo);
    color: var(--branco);
    border: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--dourado);
    color: var(--azul-profundo);
}

/* ===================== SERVICO PAGES ===================== */
.servico-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-medio) 100%);
    color: var(--branco);
    text-align: center;
}

.servico-hero .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fce7c2;
}

.servico-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.servico-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.servico-content {
    padding: 80px 0;
}

.servico-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.servico-main h2 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    color: var(--azul-profundo);
    margin-bottom: 16px;
}

.servico-main p {
    font-size: 16px;
    color: var(--texto-leve);
    margin-bottom: 14px;
    line-height: 1.7;
}

.servico-features {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.servico-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--texto);
}

.servico-features li::before {
    content: "";
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--dourado);
    margin-top: 7px;
}

.servico-sidebar {
    position: sticky;
    top: 120px;
}

.servico-sidebar-card {
    background: var(--branco);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--sombra);
    margin-bottom: 24px;
}

.servico-sidebar-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: var(--azul-profundo);
    margin-bottom: 14px;
}

.servico-sidebar-card p {
    font-size: 15px;
    color: var(--texto-leve);
    margin-bottom: 20px;
    line-height: 1.6;
}

.servico-nav {
    list-style: none;
    display: grid;
    gap: 8px;
}

.servico-nav li a {
    display: block;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--bege);
    text-decoration: none;
    color: var(--azul-profundo);
    font-weight: 600;
    font-size: 14px;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.servico-nav li a:hover,
.servico-nav li a.active {
    background: var(--azul-profundo);
    color: var(--branco);
    transform: translateX(4px);
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 500px;
    }

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

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

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

    .contato-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .servico-content-grid {
        grid-template-columns: 1fr;
    }

    .servico-sidebar {
        position: static;
    }
}

@media (max-width: 900px) {
    .menu {
        display: none;
    }

    .desktop-only {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding-top: 140px;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .logo img {
        height: 70px;
    }

    .header-scrolled .logo img {
        height: 55px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .btn-principal,
    .btn-secundario,
    .btn-secundario-dark {
        width: 100%;
        justify-content: center;
    }

    .contato-cta {
        flex-direction: column;
    }

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

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

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

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

    .processo-grid {
        flex-direction: column;
        gap: 0;
    }

    .processo-connector {
        width: 2px;
        height: 30px;
        margin: 0 auto;
    }

    .processo-step {
        max-width: 100%;
    }

    .contato-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-logo {
        margin: 0 auto 16px;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .sobre-numeros {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .sobre h2 {
        font-size: 28px;
    }

    .services h2,
    .diferenciais h2,
    .depoimentos h2,
    .faq h2,
    .processo h2,
    .atuacao h2 {
        font-size: 28px;
    }
}

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

    .hero {
        padding: 120px 0 60px;
    }

    .hero-panel {
        padding: 24px 20px;
    }

    .sobre,
    .services,
    .diferenciais,
    .processo,
    .depoimentos,
    .faq,
    .atuacao {
        padding: 70px 0;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .back-to-top {
        bottom: 16px;
        left: 16px;
        width: 38px;
        height: 38px;
    }
}
