    :root {
        --blue-dark: #0a1a4e;
        --blue-mid: #122580;
        --blue-light: #1a3aaa;
        --red: #e8002d;
        --red-dark: #b5001f;
        --gold: #f0b429;
        --white: #ffffff;
        --off-white: #f5f7fc;
        --gray: #6b7280;
        --gray-light: #e8ecf5;
    }

    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--white);
        color: var(--blue-dark);
        overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: var(--gray-light);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--blue-mid);
        border-radius: 3px;
    }

    /* ─── NAV ─── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(10, 26, 78, 0.97);
        backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 60px;
        height: 72px;
        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
        transition: background 0.3s;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .nav-logo-mark {
        width: 220px;
        height: 52px;
        flex-shrink: 0;
        object-fit: contain;
        background: var(--white);
        border-radius: 12px;
        padding: 2px 6px;
    }

    .nav-links {
        display: flex;
        gap: 36px;
        list-style: none;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: color 0.2s;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transition: transform 0.2s;
    }

    .nav-links a:hover {
        color: var(--white);
    }

    .nav-links a:hover::after {
        transform: scaleX(1);
    }

    .nav-cta {
        background: var(--red);
        color: var(--white) !important;
        padding: 10px 22px;
        border-radius: 8px;
        font-weight: 600 !important;
        transition: background 0.2s, transform 0.2s !important;
    }

    .nav-cta:hover {
        background: var(--red-dark) !important;
        transform: translateY(-1px);
    }

    .nav-cta::after {
        display: none !important;
    }

    /* ─── HERO ─── */
    .hero {
        min-height: 100vh;
        background: none;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding: 120px 60px 80px;
    }

    .hero-bg-foto {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: url('../fachada_guaraquefarma.png') center center/cover no-repeat;
        z-index: 0;
    }
    .hero-bg-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(10,26,78,0.82) 0%, rgba(18,37,128,0.68) 60%, rgba(26,58,170,0.55) 100%);
        z-index: 1;
    }
    .hero-bg-pattern,
    .hero-grid-lines {
        z-index: 2;
    }

    .hero-bg-pattern {
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(232, 0, 45, 0.12) 0%, transparent 40%),
            radial-gradient(circle at 60% 80%, rgba(26, 58, 170, 0.3) 0%, transparent 50%);
    }

    .hero-grid-lines {
        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: 60px 60px;
    }

    .hero-content {
        max-width: 680px;
        position: relative;
        z-index: 3;
        animation: fadeInUp 0.9s ease both;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(240, 180, 41, 0.15);
        border: 1px solid rgba(240, 180, 41, 0.4);
        color: var(--gold);
        font-size: 13px;
        font-weight: 600;
        padding: 7px 18px;
        border-radius: 30px;
        margin-bottom: 28px;
        letter-spacing: 0.5px;
    }

    .hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(48px, 6vw, 82px);
        font-weight: 900;
        color: var(--white);
        line-height: 1.05;
        margin-bottom: 24px;
    }

    .hero h1 em {
        font-style: normal;
        color: var(--gold);
    }

    .hero p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.7;
        margin-bottom: 44px;
        max-width: 540px;
        font-weight: 300;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: var(--red);
        color: var(--white);
        padding: 16px 36px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.25s;
        box-shadow: 0 8px 24px rgba(232, 0, 45, 0.35);
    }

    .btn-primary:hover {
        background: var(--red-dark);
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(232, 0, 45, 0.45);
    }

    .btn-outline {
        background: transparent;
        color: var(--white);
        padding: 16px 36px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        border: 2px solid rgba(255, 255, 255, 0.3);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.25s;
    }

    .btn-outline:hover {
        border-color: var(--white);
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-2px);
    }

    /* Hero stats */
    .hero-stats {
        position: absolute;
        right: 60px;
        bottom: 80px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 20px;
        animation: fadeInRight 1s ease 0.3s both;
    }

    .stat-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        padding: 20px 28px;
        text-align: center;
        min-width: 160px;
    }

    .stat-number {
        font-family: 'Playfair Display', serif;
        font-size: 44px;
        font-weight: 900;
        color: var(--gold);
        line-height: 1;
    }

    .stat-label {
        color: rgba(255, 255, 255, 0.65);
        font-size: 13px;
        font-weight: 500;
        margin-top: 4px;
    }

    /* Scroll indicator */
    .scroll-hint {
        position: absolute;
        bottom: 36px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.4);
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        animation: bounce 2s infinite;
    }

    .scroll-hint svg {
        opacity: 0.4;
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(8px);
        }
    }

    /* ─── SECTION COMMON ─── */
    section {
        padding: 100px 60px;
    }

    .section-label {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--red);
        margin-bottom: 12px;
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(32px, 4vw, 52px);
        font-weight: 900;
        color: var(--blue-dark);
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .section-desc {
        font-size: 17px;
        color: var(--gray);
        line-height: 1.75;
        max-width: 580px;
        font-weight: 300;
    }

    /* ─── SOBRE / HISTÓRIA ─── */
    #sobre {
        background: var(--white);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    /* Foto da seção Nossa História (lado direito com overlay) */
    .sobre-visual {
        display: flex;
        flex-direction: row;
        gap: 40px;
    }

    .sobre-main-box {
        flex: 1 1 0;
        min-width: 0;
    }

    .sobre-foto-wrapper {
        position: relative;
        flex: 1 1 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        max-width: 420px;
        height: 340px;
    }

    .sobre-foto {
        width: 100%;
        max-width: 340px;
        max-height: 320px;
        border-radius: 22px;
        box-shadow: 0 8px 32px rgba(10, 26, 78, 0.18);
        border: 4px solid var(--off-white);
        background: var(--white);
        object-fit: cover;
        position: relative;
        z-index: 2;
    }

    .sobre-foto-overlay {
        position: absolute;
        inset: 0;
        border-radius: 22px;
        background: linear-gradient(135deg, rgba(10, 26, 78, 0.10) 40%, rgba(240, 180, 41, 0.10) 100%);
        z-index: 1;
        pointer-events: none;
        box-shadow: 0 12px 36px 0 rgba(232, 0, 45, 0.10);
    }

    @media (max-width: 1200px) {
        .sobre-visual {
            gap: 20px;
        }

        .sobre-foto-wrapper {
            max-width: 320px;
            height: 260px;
        }

        .sobre-foto {
            max-width: 260px;
            max-height: 220px;
            border-radius: 16px;
        }

        .sobre-foto-overlay {
            border-radius: 16px;
        }
    }

    @media (max-width: 900px) {
        #sobre {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .sobre-visual {
            flex-direction: column;
            gap: 18px;
        }

        .sobre-foto-wrapper {
            max-width: 95vw;
            height: 180px;
        }

        .sobre-foto {
            max-width: 95vw;
            max-height: 180px;
            border-radius: 12px;
            border-width: 2px;
        }

        .sobre-foto-overlay {
            border-radius: 12px;
        }
    }

    .sobre-visual {
        position: relative;
    }

    .sobre-main-box {
        background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
        border-radius: 24px;
        padding: 52px 44px;
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .sobre-main-box::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
    }

    .sobre-main-box .big-year {
        font-family: 'Playfair Display', serif;
        font-size: 100px;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.08);
        line-height: 1;
        position: absolute;
        bottom: 12px;
        right: 20px;
    }

    .sobre-main-box h3 {
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        color: var(--gold);
        margin-bottom: 16px;
    }

    .sobre-main-box p {
        font-size: 15px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 300;
    }

    .sobre-badge-row {
        display: flex;
        gap: 16px;
        margin-top: 20px;
    }

    .sobre-badge {
        flex: 1;
        background: var(--off-white);
        border-radius: 14px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        border-left: 4px solid var(--red);
    }

    .sobre-badge .num {
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        font-weight: 900;
        color: var(--blue-dark);
    }

    .sobre-badge .lbl {
        font-size: 12px;
        color: var(--gray);
        font-weight: 500;
    }

    /* Timeline */
    .timeline {
        margin-top: 40px;
        position: relative;
        padding-left: 28px;
        border-left: 2px solid var(--gray-light);
    }

    .tl-item {
        margin-bottom: 32px;
        position: relative;
    }

    .tl-item::before {
        content: '';
        position: absolute;
        left: -35px;
        top: 5px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: var(--red);
        border: 3px solid var(--white);
        box-shadow: 0 0 0 2px var(--red);
    }

    .tl-year {
        font-size: 12px;
        font-weight: 700;
        color: var(--red);
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .tl-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--blue-dark);
        margin-bottom: 4px;
    }

    .tl-text {
        font-size: 14px;
        color: var(--gray);
        line-height: 1.6;
        font-weight: 300;
    }

    /* ─── SERVIÇOS ─── */
    #servicos {
        background: var(--off-white);
    }

    .servicos-header {
        text-align: center;
        margin-bottom: 64px;
    }

    .servicos-header .section-desc {
        margin: 0 auto;
    }

    .servicos-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .servico-card {
        background: var(--white);
        border-radius: 20px;
        padding: 36px 30px;
        transition: all 0.3s;
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
        cursor: default;
    }

    .servico-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--red), var(--blue-mid));
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .servico-card:hover {
        border-color: var(--gray-light);
        box-shadow: 0 20px 48px rgba(10, 26, 78, 0.1);
        transform: translateY(-4px);
    }

    .servico-card:hover::after {
        transform: scaleX(1);
    }

    .servico-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .servico-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--blue-dark);
        margin-bottom: 10px;
    }

    .servico-card p {
        font-size: 14px;
        color: var(--gray);
        line-height: 1.65;
        font-weight: 300;
    }

    /* ─── DIFERENCIAIS ─── */
    #diferenciais {
        background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
        position: relative;
        overflow: hidden;
    }

    #diferenciais::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(232, 0, 45, 0.08);
    }

    .diferenciais-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .diferenciais-text .section-label {
        color: var(--gold);
    }

    .diferenciais-text .section-title {
        color: var(--white);
    }

    .diferenciais-text .section-desc {
        color: rgba(255, 255, 255, 0.65);
    }

    .diferenciais-list {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .dif-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .dif-check {
        width: 32px;
        height: 32px;
        background: rgba(240, 180, 41, 0.2);
        border: 1px solid rgba(240, 180, 41, 0.4);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .dif-item h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 2px;
    }

    .dif-item p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.5;
        font-weight: 300;
    }

    /* Right side cards */
    .diferenciais-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .dif-card {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 18px;
        padding: 28px 22px;
        text-align: center;
        transition: all 0.3s;
    }

    .dif-card:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-3px);
    }

    .dif-card .emoji {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .dif-card h4 {
        font-size: 14px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 6px;
    }

    .dif-card p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.5;
        font-weight: 300;
    }

    /* ─── HORÁRIOS ─── */
    #horarios {
        background: var(--white);
        text-align: center;
    }

    .horarios-header {
        margin-bottom: 60px;
    }

    .horarios-header .section-desc {
        margin: 0 auto;
    }

    .horarios-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 900px;
        margin: 0 auto 50px;
    }

    .horario-card {
        background: var(--off-white);
        border-radius: 18px;
        padding: 30px 20px;
        transition: all 0.3s;
        border: 2px solid transparent;
    }

    .horario-card.destaque {
        background: var(--blue-dark);
        border-color: var(--blue-dark);
    }

    .horario-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(10, 26, 78, 0.1);
    }

    .horario-dia {
        font-size: 13px;
        font-weight: 700;
        color: var(--gray);
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .horario-card.destaque .horario-dia {
        color: rgba(255, 255, 255, 0.6);
    }

    .horario-hora {
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--blue-dark);
    }

    .horario-card.destaque .horario-hora {
        color: var(--gold);
    }

    .horario-obs {
        font-size: 11px;
        color: var(--gray);
        margin-top: 6px;
    }

    .horario-card.destaque .horario-obs {
        color: rgba(255, 255, 255, 0.5);
    }

    .plantao-banner {
        background: linear-gradient(90deg, var(--red), var(--red-dark));
        border-radius: 16px;
        padding: 24px 36px;
        display: inline-flex;
        align-items: center;
        gap: 20px;
        color: var(--white);
        max-width: 600px;
        box-shadow: 0 8px 28px rgba(232, 0, 45, 0.3);
    }

    .plantao-icon {
        font-size: 36px;
    }

    .plantao-text h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 2px;
    }

    .plantao-text p {
        font-size: 13px;
        opacity: 0.8;
        font-weight: 300;
    }

    /* ─── CONTATO ─── */
    #contato {
        background: var(--off-white);
    }

    .contato-grid {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 60px;
        align-items: start;
        max-width: 1100px;
        margin: 0 auto;
    }

    .contato-info h2 {
        font-family: 'Playfair Display', serif;
        font-size: 40px;
        font-weight: 900;
        color: var(--blue-dark);
        margin-bottom: 14px;
        line-height: 1.1;
    }

    .contato-info p {
        font-size: 16px;
        color: var(--gray);
        line-height: 1.7;
        margin-bottom: 36px;
        font-weight: 300;
    }

    .contato-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .contato-icon-box {
        width: 48px;
        height: 48px;
        background: var(--blue-dark);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
    }

    .contato-item-text h4 {
        font-size: 13px;
        font-weight: 700;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }

    .contato-item-text p {
        font-size: 15px;
        font-weight: 600;
        color: var(--blue-dark);
    }

    .contato-item-text a {
        color: var(--blue-dark);
        text-decoration: none;
        transition: color 0.2s;
    }

    .contato-item-text a:hover {
        color: var(--red);
    }

    .social-row {
        display: flex;
        gap: 12px;
        margin-top: 32px;
    }

    .social-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        background: var(--white);
        border: 2px solid var(--gray-light);
        padding: 10px 18px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        color: var(--blue-dark);
        text-decoration: none;
        transition: all 0.2s;
    }

    .social-btn:hover {
        border-color: var(--blue-mid);
        background: var(--blue-dark);
        color: var(--white);
    }

    /* Map embed placeholder */
    .map-wrapper {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 48px rgba(10, 26, 78, 0.12);
    }

    .map-wrapper iframe {
        width: 100%;
        height: 420px;
        border: none;
        display: block;
    }

    .map-address-bar {
        background: var(--blue-dark);
        padding: 16px 24px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .map-address-bar span {
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        font-weight: 400;
    }

    .map-address-bar strong {
        color: var(--white);
        font-size: 14px;
    }

    /* ─── CTA BANNER ─── */
    .cta-banner {
        background: linear-gradient(135deg, var(--red), var(--red-dark));
        padding: 80px 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-banner::before {
        content: '';
        position: absolute;
        top: -60px;
        left: -60px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
    }

    .cta-banner::after {
        content: '';
        position: absolute;
        bottom: -40px;
        right: -40px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
    }

    .cta-banner h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(28px, 4vw, 46px);
        color: var(--white);
        margin-bottom: 16px;
        position: relative;
        z-index: 1;
    }

    .cta-banner p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 17px;
        margin-bottom: 36px;
        font-weight: 300;
        position: relative;
        z-index: 1;
    }

    .cta-btns {
        display: flex;
        gap: 16px;
        justify-content: center;
        position: relative;
        z-index: 1;
        flex-wrap: wrap;
    }

    .btn-white {
        background: var(--white);
        color: var(--red);
        padding: 16px 36px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.25s;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    }

    .btn-ghost {
        background: transparent;
        color: var(--white);
        padding: 16px 36px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        border: 2px solid rgba(255, 255, 255, 0.5);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.25s;
    }

    .btn-ghost:hover {
        border-color: var(--white);
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    /* ─── FOOTER ─── */
    footer {
        background: var(--blue-dark);
        padding: 60px 60px 32px;
        color: rgba(255, 255, 255, 0.65);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 48px;
    }

    .footer-brand .logo-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .footer-logo-mark {
        width: 210px;
        height: 54px;
        object-fit: contain;
        background: var(--white);
        border-radius: 12px;
        padding: 2px 6px;
    }

    .footer-brand p {
        font-size: 14px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 300;
    }

    .footer-brand .tagline {
        margin-top: 16px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        color: var(--gold);
    }

    .footer-col h5 {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 16px;
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
    }

    .footer-col ul li a:hover {
        color: var(--white);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 28px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.35);
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-bottom span {
        color: var(--gold);
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ─── MOBILE ─── */
    @media (max-width: 900px) {
        nav {
            padding: 0 24px;
        }

        .nav-links {
            display: none;
        }

        section {
            padding: 70px 24px;
        }

        .hero {
            padding: 110px 24px 60px;
        }

        .hero-stats {
            display: none;
        }

        #sobre {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .servicos-grid {
            grid-template-columns: 1fr;
        }

        .diferenciais-inner {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .horarios-grid {
            grid-template-columns: 1fr 1fr;
        }

        .contato-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }