h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

/* HERO SECTION CUSTOM */
.hero-section-custom {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay-custom {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a1429eb, #122549d9, #203a60cc);
    z-index: 2;
}

.hero-content-custom {
    position: relative;
    z-index: 3;
    max-width: 890px;
    margin: 0 auto;
    padding: 80px 24px 80px 24px;
    text-align: center;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #eeb72b, #f29e0d);
    color: #0f172a;
    padding: 6px 18px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    text-wrap: balance;
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 1.625rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: #eeb72b;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #fff;
    opacity: 0.95;
}

.hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 600px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #eeb72b, #f29e0d);
    color: #0f172a;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    transition: opacity 0.2s;
}

.hero-btn-primary:hover {
    opacity: 0.9;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-btn-light-bg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #305991;
    color: #305991;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.hero-btn-light-bg:hover {
    background: #3059911c;
}

:root {
    --primary: #1e3a5f;
    --primary-foreground: #ffffff;
    --secondary: #eeb72b;
    --accent: #eeb72b;
    --foreground: #0f172a;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --primary-color: #1e3a5f;
    --text-color: #0f172a;
    --bg-color: #fff;
    --light-bg: #f8fafc;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
    /* padding-top: 60px; */
}

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

/* ========================= */
/* Header Styles             */
/* ========================= */
.site-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(240, 242, 245, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    height: 72px;
}

@media (min-width: 1024px) {
    .site-header-fixed {
        height: 96px;
    }

    .header-inner {
        min-height: 96px;
    }
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.header-logo img {
    display: block;
    max-width: 280px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.header-logo-icon {
    color: var(--accent, #eeb72b);
    width: 32px;
    height: 32px;
}

.header-logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground, #0f172a);
    letter-spacing: -0.025em;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }
}

.header-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground, #0f172a) !important;
    text-decoration: none;
    transition: color 0.2s;
}

.header-nav-link:hover {
    color: var(--accent, #eeb72b) !important;
}

.header-cta-btn {
    background: linear-gradient(135deg, #eeb72b, #f29e0d);
    color: var(--accent-foreground, #0f172a);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

.header-cta-btn:hover {
    opacity: 0.9;
}

.header-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--foreground, #0f172a);
    cursor: pointer;
    padding: 4px;
}

@media (min-width: 768px) {
    .header-mobile-toggle {
        display: none;
    }
}

.header-mobile-nav {
    display: none;
    background: #f0f2f5;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    padding: 0 16px 16px 16px;
}

.header-mobile-nav.active {
    display: block;
}

@media (min-width: 768px) {
    .header-mobile-nav {
        display: none !important;
    }
}

.header-mobile-link {
    display: block;
    padding: 8px 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.82);
    text-decoration: none;
    transition: color 0.2s;
}

.header-mobile-link:hover {
    color: var(--accent, #eeb72b);
}

.header-mobile-cta {
    display: block;
    margin-top: 8px;
    background: linear-gradient(135deg, #eeb72b, #f29e0d);
    color: var(--accent-foreground, #0f172a);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

/* Mobile header: center header-inner vertically and improve layout */
@media (max-width: 767px) {
    .site-header-fixed {
        height: 76px;
    }

    .header-inner {
        padding: 0 16px;
        height: 100%;
    }

    .header-logo-text {
        display: inline-block;
        font-size: 1rem;
        font-weight: 700;
        color: var(--foreground, #0f172a);
        max-width: 160px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
    }

    .header-logo img {
        max-width: 190px;
        max-height: 52px;
    }

    .header-logo-icon {
        width: 28px;
        height: 28px;
    }

    .header-mobile-toggle {
        padding: 8px;
        border-radius: 8px;
    }

    .header-mobile-toggle .menu-icon,
    .header-mobile-toggle .close-icon {
        width: 28px;
        height: 28px;
    }

    .header-mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #f0f2f5;
        padding: 12px 16px;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
        max-height: calc(100vh - 64px);
        overflow: auto;
        z-index: 9999;
    }

    .header-mobile-nav.active {
        display: block;
    }

    .header-mobile-link {
        padding: 14px 0;
        font-size: 1rem;
    }

    .header-mobile-cta {
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 1rem;
    }
}

/* Sections */
section {
    padding: 60px 0;
}

section:not(#cta, #solucao-section):nth-child(even) {
    background-color: var(--light-bg);
}

#cta,
#solucao-section {
    background-color: #122549;
}

.hero {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: var(--primary-color);
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

/* ========================= */
/* CSS Variables (Design System) */
/* ========================= */
:root {
    --background: #ffffff;
    --foreground: #0f172a;
    --card: #ffffff;
    --card-foreground: #0f172a;
    --primary: #1e3a5f;
    --primary-foreground: #ffffff;
    --secondary: #eeb72b;
    --secondary-foreground: #0f172a;
    --accent: #eeb72b;
    --accent-foreground: #0f172a;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --destructive: #ef4444;
    --border: #e2e8f0;
    --text-color: #0f172a;
    --bg-color: #ffffff;
}

/* ========================= */
/* Utility Classes           */
/* ========================= */
.gradient-accent {
    background: linear-gradient(135deg, #eeb72b, #f29e0d);
}

.text-accent {
    color: var(--accent, #eeb72b);
}

.text-secondary {
    color: var(--secondary, #eeb72b);
}

.text-foreground {
    color: var(--foreground, #0f172a);
}

.text-muted-foreground {
    color: var(--muted-foreground, #64748b);
}

.text-primary-foreground {
    color: var(--primary-foreground, #ffffff);
}

.text-accent-foreground {
    color: var(--accent-foreground, #0f172a);
}

.text-destructive {
    color: var(--destructive, #ef4444);
}

.bg-background {
    background: var(--background, #ffffff);
}

.bg-card {
    background: var(--card, #ffffff);
}

.bg-primary {
    background: var(--primary, #1e3a5f);
}

.bg-muted {
    background: var(--muted, #f1f5f9);
}

.bg-secondary-10 {
    background: rgba(249, 212, 35, 0.1);
}

.bg-primary-10 {
    background: rgba(30, 58, 95, 0.1);
}

.bg-destructive-10 {
    background: rgba(239, 68, 68, 0.1);
}

.bg-accent-20 {
    background: rgba(249, 212, 35, 0.2);
}

.section-alt {
    background: #f8fafc;
}

.card-hover {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card-hover:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

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

/* ========================= */
/* Hero Overlay              */
/* ========================= */
.hero-overlay {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(30, 58, 95, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
}

/* ========================= */
/* Apresentação Section      */
/* ========================= */
.apresentacao-section {
    padding: 80px 0 0;
    background: #ffffff;
}

.apresentacao-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.apresentacao-intro {
    font-size: 1.125rem;
    color: var(--foreground, #0f172a);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.apresentacao-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    text-align: left;
    margin-bottom: 48px;
}

.apresentacao-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.apresentacao-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.apresentacao-image-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: var(--primary, #1e3a5f);
    color: var(--primary-foreground, #ffffff);
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.apresentacao-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.apresentacao-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground, #0f172a);
    line-height: 1.4;
}

.apresentacao-feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(238, 183, 43, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.apresentacao-feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--secondary, #eeb72b);
}

.apresentacao-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--primary, #1e3a5f);
    color: var(--primary-foreground, #ffffff);
    border-radius: 16px;
    padding: 28px 32px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.25);
}

.apresentacao-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(30, 58, 95, 0.35);
}

.apresentacao-cta-text {
    text-align: left;
}

.apresentacao-cta-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 4px 0;
}

@media (min-width: 768px) {
    .apresentacao-cta-title {
        font-size: 1.5rem;
    }
}

.apresentacao-cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin: 0;
}

.apresentacao-cta-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary, #eeb72b);
    color: var(--accent-foreground, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.apresentacao-cta:hover .apresentacao-cta-arrow {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .apresentacao-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .apresentacao-feature-item {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .apresentacao-cta {
        flex-direction: column;
        text-align: center;
    }

    .apresentacao-cta-text {
        text-align: center;
    }
}

/* ========================= */
/* Autoridade Section        */
/* ========================= */
.autoridade-section {
    padding: 80px 0;
    background: #f9fafb;
}

.autoridade-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px;
}

.autoridade-slider-viewport {
    overflow: hidden;
    padding: 4px 0;
}

.autoridade-cards {
    --autoridade-slides: 1;
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
    will-change: transform;
}

@media (min-width: 640px) {
    .autoridade-cards {
        --autoridade-slides: 2;
    }
}

@media (min-width: 1024px) {
    .autoridade-cards {
        --autoridade-slides: 4;
    }
}

.autoridade-card {
    flex: 0 0 calc((100% - (var(--autoridade-slides) - 1) * 24px) / var(--autoridade-slides));
    box-sizing: border-box;
    background: var(--card, #ffffff);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border, #e2e8f0);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.autoridade-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #3059911a;
    margin-bottom: 16px;
}

.autoridade-icon-logo img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.autoridade-icon svg {
    width: 28px;
    height: 28px;
    color: #305991;
}

.autoridade-title {
    font-weight: 700;
    color: var(--foreground, #0f172a);
    margin-bottom: 8px;
    font-size: 1rem;
}

.autoridade-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground, #64748b);
    line-height: 1.5;
}

.autoridade-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    background: #ffffff;
    color: #305991;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.autoridade-slider-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
}

.autoridade-slider-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: translateY(-50%);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.autoridade-slider-prev {
    left: 8px;
}

.autoridade-slider-next {
    right: 8px;
}

.autoridade-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.autoridade-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 9999px;
    border: 0;
    background: rgba(48, 89, 145, 0.35);
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.autoridade-slider-dot.is-active {
    background: #305991;
    transform: scale(1.2);
}

@media (max-width: 639px) {
    .autoridade-slider-wrapper {
        padding: 0 48px;
    }

    .autoridade-slider-btn {
        width: 36px;
        height: 36px;
    }
}

/* ========================= */
/* Problemas Section         */
/* ========================= */
.problemas-section {
    padding: 80px 0;
    background: #f0f2f5;
}

.problemas-container {
    margin: 0 auto;
    padding: 0 16px;
}

.problemas-header {
    text-align: center;
    margin-bottom: 48px;
}

.problemas-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--foreground, #0f172a);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .problemas-title {
        font-size: 2.25rem;
    }
}

.problemas-title-accent {
    color: #305991;
}

.problemas-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .problemas-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problema-card {
    display: flex;
    background: var(--card, #ffffff);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border, #e2e8f0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    align-items: center;
}

.problema-title {
    font-weight: 700;
    color: var(--foreground, #0f172a);
    margin-bottom: 8px;
    font-size: 1.2rem;
    line-height: 1.3;
    text-align: center;
}

.problema-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.problema-icon svg {
    width: 20px;
    height: 20px;
    color: var(--destructive, #ef4444);
}

.problema-text {
    color: var(--foreground, #0f172a);
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
}

.problemas-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.problemas-footer-text {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 600;
    max-width: 70%;
}

@media (max-width: 639px) {
    .problemas-footer {
        flex-direction: column;
        gap: 16px;
    }

    .problemas-footer-text {
        max-width: 100%;
        text-align: center;
    }
}

/* ========================= */
/* Solução Section           */
/* ========================= */
.solucao-section {
    padding: 80px 0;
    background: var(--primary, #1e3a5f);
    color: var(--primary-foreground, #ffffff);
}

.solucao-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.solucao-icon {
    margin: 0 auto 24px auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solucao-icon svg {
    width: 48px;
    height: 48px;
    color: var(--accent, #eeb72b);
}

.solucao-title {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .solucao-title {
        font-size: 2.25rem;
    }
}

.solucao-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.solucao-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .solucao-actions {
        flex-direction: row;
    }
}

/* ========================= */
/* Diagnóstico Section       */
/* ========================= */
.diagnostico-section {
    padding: 88px 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.diagnostico-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.diagnostico-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px;
}

.diagnostico-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(48, 89, 145, 0.1);
    color: #305991;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.diagnostico-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--foreground, #0f172a);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .diagnostico-title {
        font-size: 2.35rem;
    }
}

.diagnostico-title-accent {
    color: #305991;
}

.diagnostico-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .diagnostico-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.diagnostico-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 22px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
    .diagnostico-item-wide {
        grid-column: 1 / -1;
    }
}

.diagnostico-item-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eeb72b, #f29e0d);
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.diagnostico-item-text {
    margin: 0;
    color: var(--foreground, #0f172a);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

.diagnostico-highlight {
    background: linear-gradient(135deg, #1e3a5f 0%, #305991 100%);
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.18);
}

.diagnostico-highlight-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.0625rem;
    line-height: 1.8;
    text-align: center;
}

@media (max-width: 767px) {
    .diagnostico-section {
        padding: 72px 0;
    }

    .diagnostico-item {
        padding: 20px 18px;
    }

    .diagnostico-highlight {
        padding: 24px 18px;
        border-radius: 18px;
    }
}

/* ========================= */
/* Serviços Section          */
/* ========================= */
.servicos-section {
    padding: 80px 0;
    background: #f9fafb;
}

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

.servicos-header {
    text-align: center;
    margin-bottom: 56px;
}

.servicos-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--foreground, #0f172a);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .servicos-title {
        font-size: 2.25rem;
    }
}

.servicos-title-accent {
    color: #305991;
}

.servicos-desc {
    color: var(--muted-foreground, #64748b);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

.servicos-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .servicos-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .servicos-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.servico-card {
    background: var(--card, #ffffff);
    border-radius: 16px;
    border: 1px solid var(--border, #e2e8f0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.servico-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.servico-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #3059911a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.servico-icon svg {
    width: 24px;
    height: 24px;
    color: #305991;
}

.servico-title {
    font-weight: 700;
    color: var(--foreground, #0f172a);
    font-size: 1.125rem;
    line-height: 1.3;
}

.servico-bonus {
    display: inline-block;
    background: linear-gradient(135deg, #eeb72b, #f29e0d);
    color: var(--accent-foreground, #0f172a);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 9999px;
    margin-left: 8px;
    vertical-align: middle;
}

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

.servico-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.servico-list-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.servico-list-icon svg {
    width: 16px;
    height: 16px;
    color: var(--accent, #eeb72b);
}

.servico-list li span:last-child {
    font-size: 0.875rem;
    color: var(--muted-foreground, #64748b);
}

/* ========================= */
/* Diferenciais Section      */
/* ========================= */
.diferenciais-section {
    padding: 80px 0;
    background: #f0f2f5;
}

.diferenciais-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

.diferenciais-header {
    text-align: center;
    margin-bottom: 48px;
}

.diferenciais-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--foreground, #0f172a);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .diferenciais-title {
        font-size: 2.25rem;
        margin-top: 0;
    }
}

.diferenciais-title-accent {
    color: #305991;
}

.diferenciais-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .diferenciais-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 88px;
    }
}

.diferencial-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card, #ffffff);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border, #e2e8f0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.diferencial-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(249, 212, 35, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.diferencial-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent, #eeb72b);
}

.diferencial-text {
    color: var(--foreground, #0f172a);
    font-weight: 500;
    font-size: 1rem;

}

/* ========================= */
/* Serviços Para Section     */
/* ========================= */
.servicospara-section {
    padding: 80px 0;
    background: #f9fafb;
}

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

.servicospara-header {
    text-align: center;
    margin-bottom: 48px;
}

.servicospara-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--foreground, #0f172a);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .servicospara-title {
        font-size: 2.25rem;
    }
}

.servicospara-title-accent {
    color: #305991;
}

.servicospara-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.servico-card-item {
    position: relative;
    min-height: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
    background-size: cover !important;
}

.servico-card-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--card-bg-image);
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.5s ease;
    z-index: -2;
}

.servico-card-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.4) 60%, transparent 100%);
    z-index: -1;
}

.servico-card-item:hover::before {
    transform: scale(1.05);
}

.servico-card-item .card-content {
    width: 100%;
    padding: 26px;
    display: flex;
    flex-direction: column;
}

.servicospara-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    backdrop-filter: blur(3px);
}

.servicospara-card-icon svg {
    width: 24px;
    height: 24px;
    color: #f9d423;
}

.servico-card-item .card-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.7rem;
    line-height: 1.2;
    font-weight: 700;
    transition: transform 0.45s ease;
}

.servico-card-item .card-description {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 45ch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: max-height 0.45s ease, margin-top 0.45s ease, opacity 0.45s ease, transform 0.45s ease;
}

.servico-card-item:hover .card-description {
    margin-top: 12px;
    max-height: 180px;
    opacity: 1;
    transform: translateY(0);
}

@media (hover: none) {
    .servico-card-item .card-description {
        margin-top: 12px;
        max-height: 180px;
        opacity: 1;
        transform: translateY(0);
    }
}

.servicospara-cta-actions {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

@media (max-width: 767px) {
    .cta-actions {
        flex-direction: column;
    }
}

/* ========================= */
/* FAQ Section               */
/* ========================= */
.faq-section {
    padding: 80px 0;
    background: #f0f2f5;
}

.faq-container {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 16px;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--foreground, #0f172a);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .faq-title {
        font-size: 2.25rem;
    }
}



.faq-title-accent {
    color: #305991;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card, #ffffff);
    border-radius: 12px;
    border: 1px solid var(--border, #e2e8f0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 0 24px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground, #0f172a);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
}

.faq-question:hover {
    color: var(--secondary, #eeb72b);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--muted-foreground, #64748b);
    transition: transform 0.3s ease, color 0.2s;
}

.faq-item.active .faq-question::after {
    content: '−';
    color: var(--secondary, #eeb72b);
}

.faq-item.active .faq-question {
    color: var(--secondary, #eeb72b);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 16px 0;
}

.faq-answer p {
    color: var(--muted-foreground, #64748b);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ========================= */
/* CTA Section               */
/* ========================= */
.cta-section {
    padding: 80px 0;
    background: var(--primary, #1e3a5f);
    color: var(--primary-foreground, #ffffff);
}

.cta-container {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #eeb72b, #f29e0d);
    color: var(--accent-foreground, #0f172a);
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    transition: opacity 0.2s;
}

.cta-btn:hover {
    opacity: 0.9;
}

.cta-btn svg {
    width: 22px;
    height: 22px;
}

/* ========================= */
/* Contato Section           */
/* ========================= */
.contato-section {
    padding: 80px 0;
    background: #f9fafb;
}



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

.contato-header {
    text-align: center;
    margin-bottom: 56px;
}



.contato-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--foreground, #0f172a);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .contato-title {
        font-size: 2.25rem;
    }
}

.contato-title-accent {
    color: #305991;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1024px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contato-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contato-infos {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contato-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card, #ffffff);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border, #e2e8f0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.contato-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-info-icon svg {
    width: 24px;
    height: 24px;
}

.contato-info-icon.gradient-accent svg {
    color: var(--accent-foreground, #0f172a);
}

.contato-info-icon.bg-secondary-10 svg {
    color: var(--secondary, #eeb72b);
}

.contato-info-title {
    font-weight: 700;
    color: var(--foreground, #0f172a);
    margin: 0 0 4px 0;
}

.contato-info-desc {
    color: var(--muted-foreground, #64748b);
    font-size: 1rem;
    margin: 0;
}

.contato-mapa {
    height: 224px;
    overflow: hidden;
    border-radius: 16px;
    padding: 0;
}

.contato-mapa iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contato-form,
.contato-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* O <form> gerado pelo CF7 vira o container flex dentro do wrapper .contato-form */
.contato-form > .wpcf7 {
    width: 100%;
}

/* Cada campo (label + controle) vira um item vertical */
.contato-form .contato-field {
    display: flex;
    flex-direction: column;
}

/* Neutraliza os <p>/<br> que o autop do CF7 pode inserir */
.contato-form .wpcf7-form p {
    margin: 0;
}

.contato-form .contato-field br {
    display: none;
}

/* O CF7 envolve cada controle em um <span>; forçamos largura total */
.contato-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contato-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground, #0f172a);
    margin-bottom: 4px;
}

.contato-input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid var(--border, #e2e8f0);
    background: var(--card, #ffffff);
    padding: 12px 16px;
    color: var(--foreground, #0f172a);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contato-input::placeholder {
    color: var(--muted-foreground, #64748b);
}

.contato-input:focus {
    border-color: var(--secondary, #eeb72b);
    box-shadow: 0 0 0 3px rgba(249, 212, 35, 0.2);
}

.contato-textarea {
    resize: none;
    min-height: 120px;
}

.contato-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #eeb72b, #f29e0d);
    color: var(--accent-foreground, #0f172a);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    transition: opacity 0.2s;
}

.contato-btn:hover {
    opacity: 0.9;
}

.contato-btn {
    line-height: 1;
}

/* Evita que quebras (<br>) inseridas pelo autop do CF7 desalinhem o botão */
.contato-btn br {
    display: none;
}

.contato-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* --- Mensagens e validação do Contact Form 7 --- */
.contato-form .wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 0.8125rem;
    margin-top: 4px;
}

.contato-form .wpcf7-form-control.wpcf7-not-valid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.contato-form .wpcf7-response-output {
    margin: 8px 0 0;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9375rem;
}

.contato-form .wpcf7-spinner {
    margin: 0 auto;
}

/* Mobile: make main CTAs full-width and uniform */
@media (max-width: 767px) {
    .hero-actions .hero-btn-primary,
    .hero-actions .hero-btn-secondary,
    .cta-btn,
    .contato-btn,
    .header-cta-btn,
    .header-mobile-cta {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* reduce gap between stacked buttons on small screens */
    .hero-actions {
        gap: 12px;
    }
}

/* Footer (dark 3-column) */
.site-footer-dark {
    background: #122549;
    color: #ffffff;
    padding: 64px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    align-items: flex-start;
    padding-bottom: 48px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-col--brand {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
    margin-bottom: 16px;
}

.footer-logo:hover {
    opacity: 0.85;
}

.footer-logo-icon {
    color: var(--secondary, #eeb72b);
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.footer-site-name {
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 8px;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.footer-menu,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
}

.footer-menu li,
.footer-contact li {
    margin-bottom: 10px;
    text-align: left;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    display: block;
    padding: 0;
}

.footer-menu a:hover {
    color: var(--accent, #eeb72b);
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease, gap 0.2s ease;
}

.footer-contact-link:hover {
    color: var(--accent, #eeb72b);
    gap: 12px;
}

.footer-contact-link svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.footer-contact-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-contact-address svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

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



.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-align: center;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    text-align: center;
    margin-top: 8px;
}

.footer-credit a {
    color: var(--secondary, #eeb72b);
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .site-footer-dark {
        padding: 48px 0 0 0;
    }

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

    .footer-col--brand {
        padding-right: 0;
    }

    .footer-title {
        font-size: 0.9375rem;
        margin-bottom: 14px;
    }

    .footer-brand-desc {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 20px 0;
    }
}

/* ========================= */
/* Botão Flutuante WhatsApp  */
/* ========================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================================================
   Seção Aplicativo eCondos
   ========================================================================== */
.app-section {
    padding: 80px 0;
    background-color: #f8fafc; /* Tom levemente acinzentado para alternar com as outras seções */
    overflow: hidden;
}

.app-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-badge {
    background-color: rgba(122, 0, 223, 0.08); /* Fundo roxo muito suave baseado no aplicativo */
    color: #7a00df; /* Roxo do eCondos */
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.app-title {
    font-size: 36px;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.app-title-accent {
    color: #7a00df; /* Destaque no nome eCondos */
}

.app-subtitle {
    font-size: 20px;
    color: #475569;
    font-weight: 500;
    margin: 0 0 25px 0;
    line-height: 1.4;
}

.app-desc {
    font-size: 16px;
    color: #334155;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.app-highlight {
    background-color: #ffffff;
    border-left: 4px solid #7a00df;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin: 15px 0 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.app-highlight p {
    font-size: 16px;
    color: #0f172a;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.app-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.app-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup-img {
    max-width: 100%;
    height: auto;
    max-height: 520px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}

/* Efeito sutil ao passar o mouse na imagem */
.app-image-wrapper:hover .app-mockup-img {
    transform: translateY(-8px) scale(1.02);
}

/* Responsividade para Tablets e Celulares */
@media (max-width: 991px) {
    .app-section {
        padding: 60px 0;
    }
    
    .app-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .app-content {
        align-items: center;
    }

    .app-actions {
        justify-content: center;
    }
    
    .app-highlight {
        border-left: none;
        border-top: 3px solid #7a00df;
        border-radius: 8px;
        padding: 15px;
    }
    
    .app-mockup-img {
        max-width: 75%;
    }
}

@media (max-width: 576px) {
    .app-title {
        font-size: 28px;
    }
    
    .app-subtitle {
        font-size: 18px;
    }
    
    .app-mockup-img {
        max-width: 90%;
    }
}

/* ========================= */
/* Política de Privacidade   */
/* ========================= */
.privacidade-hero {
    background: var(--primary, #1e3a5f);
    color: var(--primary-foreground, #ffffff);
    padding: 140px 0 56px;
    text-align: center;
}

@media (min-width: 1024px) {
    .privacidade-hero {
        padding: 176px 0 72px;
    }
}

.privacidade-badge {
    display: inline-block;
    background: var(--secondary, #eeb72b);
    color: var(--accent-foreground, #0f172a);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.privacidade-hero-title {
    font-size: 40px;
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--primary-foreground, #ffffff);
}

.privacidade-hero-subtitle {
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

.privacidade-section {
    padding: 56px 0 80px;
    background: var(--background, #ffffff);
}

.privacidade-content {
    max-width: 860px;
}

.privacidade-content h2 {
    font-size: 26px;
    color: var(--primary, #1e3a5f);
    margin: 44px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary, #eeb72b);
}

.privacidade-content h2:first-child {
    margin-top: 0;
}

.privacidade-content h3 {
    font-size: 19px;
    color: var(--foreground, #0f172a);
    margin: 28px 0 10px;
}

.privacidade-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--foreground, #0f172a);
    margin: 0 0 16px;
}

.privacidade-content strong {
    color: var(--primary, #1e3a5f);
}

.privacidade-list {
    margin: 0 0 20px;
    padding-left: 22px;
}

.privacidade-list li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--foreground, #0f172a);
    margin-bottom: 10px;
}

.privacidade-list li::marker {
    color: var(--secondary, #eeb72b);
}

.privacidade-content a {
    color: var(--primary, #1e3a5f);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacidade-content a:hover {
    color: var(--secondary, #eeb72b);
}

.privacidade-divider {
    border: 0;
    border-top: 1px solid var(--border, #e2e8f0);
    margin: 56px 0;
}

@media (max-width: 576px) {
    .privacidade-hero-title {
        font-size: 30px;
    }

    .privacidade-hero-subtitle {
        font-size: 16px;
    }

    .privacidade-content h2 {
        font-size: 22px;
    }
}