/* --- CSS Variables & Reset --- */
:root {
    /* Brand Colors extracted from kingskyfa.com */
    --color-primary: #115886;
    /* Deep Blue */
    --color-secondary: #1A80AF;
    /* Lighter Blue (was Teal) */
    --color-accent: #0d4a73;
    /* Lighter Blue */
    --color-dark: #0f172a;
    --color-light: #f8fafc;
    --color-white: #ffffff;
    --color-text-dark: #1e293b;
    --color-text-light: #475569;
    --color-danger: #ef4444;
    /* Helper for errors/warnings */

    /* Typography */
    --font-heading: 'Roboto Slab', serif;
    --font-body: 'Roboto Slab', serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 0px;
    /* Square buttons as per brand style */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
}

ul {
    list-style: none;
}

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

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

/* --- Utilities --- */
.container {
    width: 95%;
    /* Increased from 90% to reduce side margins */
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
    /* Remove horizontal padding on mobile */
}

@media (min-width: 768px) {
    .container {
        width: 90%;
        padding: 0 var(--spacing-sm);
    }
}

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

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

.text-white {
    color: var(--color-white) !important;
}

.text-dark {
    color: var(--color-text-dark) !important;
}

.bg-light {
    background-color: var(--color-light);
}

.bg-dark {
    background-color: var(--color-dark);
}

.bg-white {
    background-color: #ffffff;
}

.bg-gray {
    background-color: #f1f5f9;
}

.bg-brand {
    background-color: var(--color-primary);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

/* Mobile-first: Center text by default, left-align on desktop */
.section-title,
.section-text {
    text-align: center;
}

@media (min-width: 768px) {

    .section-title,
    .section-text {
        text-align: inherit;
        /* Inherit from parent on desktop */
    }
}

.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2-cols {
    grid-template-columns: 1fr;
}

.grid-3-cols {
    grid-template-columns: 1fr;
}

.grid-4-cols {
    grid-template-columns: 1fr;
}

/* Desktop Grid Overrides */
@media (min-width: 768px) {
    .grid-2-cols {
        grid-template-columns: 1fr 1fr;
    }

    .grid-3-cols {
        grid-template-columns: repeat(3, 1fr);
    }

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

    /* Tablet 2x2 */
}

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

    .grid-2-cols-rev {
        grid-template-columns: 1fr 1fr;
    }
}

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

.mobile-hide {
    display: none;
}

@media (min-width: 768px) {
    .desktop-hide {
        display: none;
    }

    .mobile-hide {
        display: inline-flex;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    /* Slightly wider */
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-heading);
    /* Roboto Slab */
}

.btn-sm {
    padding: 0.4rem 0.75rem;
    font-size: 0.825rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    /* Deep Blue */
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    /* Lighter Blue */
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-secondary);
    /* Teal */
    color: var(--color-white);
}

.btn-secondary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* Green CTA Button - "Go Ahead" signal */
.btn-cta-green {
    background-color: #25D366;
    color: #ffffff;
    font-weight: 700;
    border: 2px solid #25D366;
}

.btn-cta-green:hover {
    background-color: #1fb855;
    border-color: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-text {
    padding: 0;
    color: var(--color-secondary);
    background: none;
    font-family: var(--font-body);
}

.btn-text:hover {
    text-decoration: underline;
}

.btn-block {
    width: 100%;
}

/* --- Header --- */
.site-header {
    padding: 0.5rem 0;
    /* Slimmer header */
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    height: 40px;
    /* Slimmer logo */
    width: auto;
    object-fit: contain;
}

.desktop-nav {
    display: none;
    gap: var(--spacing-md);
}

.desktop-nav a {
    font-weight: 500;
    color: var(--color-white);
    /* White links on dark header */
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.desktop-nav a:hover {
    color: var(--color-secondary);
    /* Teal hover */
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    display: block;
}

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

    .mobile-menu-toggle {
        display: none;
    }

    /* Restore sizes for desktop */
    .logo-image {
        height: 50px;
    }

    .header-cta {
        gap: 1rem;
    }

    .btn-sm {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Mobile Menu Active State */
.desktop-nav.mobile-visible {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    /* Match header */
    padding: 1rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-nav.mobile-visible a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 5rem 0 3rem;
    /* Reduced for mobile */
    background-image: url('https://images.unsplash.com/photo-1464037866556-56549919f4e9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    min-height: auto;
    /* Let content define height */
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 88, 134, 0.92), rgba(13, 74, 115, 0.85));
    /* Deep Blue gradient */
}

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

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Hero Image & Video (placeholder oculto até ter vídeo de vendas) */
.hero-video-wrapper {
    margin: 1.5rem auto;
    width: 100%;
    max-width: var(--container-width);
}

.hero-mobile-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.hero-video-placeholder {
    display: none;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

@media (max-width: 767px) {
    .hero-video-wrapper {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        max-width: var(--container-width);
    }

    .hero-video-wrapper {
        max-width: var(--container-width);
    }
}

/* --- Global Section Styles --- */
.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-text {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
}

/* --- Lifestyle Section --- */
.lifestyle-section {
    padding: var(--spacing-md) 0;
    /* Reduced padding on mobile */
    background-color: var(--color-white);
    text-align: center;
    /* Center on mobile */
}

.lifestyle-container {
    /* Reduced gap on mobile */
}

/* Mobile: imagem fica após o texto (order controlado no media query abaixo) */
.lifestyle-visual {
    order: 0;
}

@media (min-width: 768px) {
    .lifestyle-visual {
        order: 0;
    }

    .lifestyle-section {
        padding: var(--spacing-xl) 0;
        text-align: left;
    }

    .lifestyle-container {
        gap: 4rem;
    }
}

.lifestyle-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.lifestyle-content .section-text {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: none;
    /* remove max-width constraints in grid */
}

/* Ensure image placeholder looks good */
.lifestyle-visual .image-placeholder {
    height: 500px;
    background-color: #f0f4f8;
    /* Softer placeholder color */
    color: #cbd5e1;
    position: relative;
    /* Optional: Add a subtle pattern or gradient if desired for placeholder */
}

/* Controle de visibilidade: imagem mobile vs desktop */
.lifestyle-visual-mobile {
    display: none; /* oculta no desktop */
}

.lifestyle-visual-desktop {
    display: block; /* visível no desktop */
}

/* Mobile: mostrar imagem mobile (dentro do content), ocultar coluna desktop */
@media (max-width: 767px) {
    .lifestyle-container {
        display: block; /* bloco simples no mobile, sem grid */
    }

    .lifestyle-visual-mobile {
        display: block;
        margin: 1.5rem 0;
    }

    .lifestyle-visual-desktop {
        display: none;
    }

    .lifestyle-content .section-title {
        font-size: 2rem;
        text-align: center;
    }
}

/* --- Problem Section --- */
.problem-section {
    padding: var(--spacing-md) 0;
    /* Reduced on mobile */
    text-align: center;
}

@media (max-width: 767px) {
    /* Problem: empilhar em coluna, botão CTA após a lista vermelha */
    .problem-section .grid {
        display: flex;
        flex-direction: column;
    }

    .problem-intro {
        order: 0;
        display: flex;
        flex-direction: column;
    }

    .problem-intro .section-title {
        order: 0;
    }

    .problem-intro .section-text {
        order: 1;
    }

    .problem-intro .btn {
        order: 3;
        margin-top: 1rem;
    }

    .problem-list-container {
        order: 1;
    }
}

.problem-list-container {
    background-color: var(--color-white);
    padding: 1.5rem;
    /* Reduced padding on mobile */
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #fee2e2;
    border-top: 4px solid #ef4444;
    display: flex;
    flex-direction: column;
}

.problem-header {
    margin-bottom: 1.5rem;
    /* Reduced on mobile */
    border-bottom: 1px solid #fecaca;
    padding-bottom: 1rem;
}

.problem-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #b91c1c;
    margin: 0;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.problem-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.problem-list h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.problem-list p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.problem-list li:hover .icon-box {
    transform: scale(1.05);
}

.icon-box.danger {
    background-color: #fef2f2;
    color: #ef4444;
}

.icon-box.danger svg {
    width: 28px;
    height: 28px;
    stroke-width: 2px;
}

.icon-box.warning {
    background-color: #FEF3C7;
    color: #D97706;
}

.icon-box.warning svg {
    width: 28px;
    height: 28px;
    stroke-width: 2px;
}

@media (min-width: 768px) {
    .problem-section {
        text-align: left;
    }
}

/* --- Solution Section --- */
.solution-section {
    padding: var(--spacing-lg) 0;
}

.solution-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Mobile: Texto primeiro, imagem depois */
}

@media (max-width: 767px) {
    /* Solution: texto (order 0) acima, imagem (order 1) abaixo */
    .solution-content {
        order: 0;
    }

    .solution-image-placeholder {
        order: 1;
        min-height: 220px;
    }
}

.solution-content {
    padding: 2rem;
    flex: 1;
}

.eyebrow {
    text-transform: uppercase;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
    text-align: center;
    /* Mobile Center */
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto;
    /* Mobile Center */
    justify-content: center;
    /* Mobile Center */
    padding: 1rem;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-primary);
}

.trust-indicator .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.trust-indicator .label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.solution-image-placeholder {
    background-color: #e2e8f0;
    min-height: 300px;
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1542296332-2e44a99cfef9?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: top;
}

@media (min-width: 900px) {
    .solution-card {
        flex-direction: row;
    }

    .eyebrow {
        text-align: left;
    }

    .trust-indicator {
        justify-content: flex-start;
        margin: 2rem 0;
    }

    .solution-image-placeholder {
        min-height: auto;
    }
}

/* --- Fleet & Location Sections --- */
.fleet-section,
.location-section {
    padding: var(--spacing-lg) 0;
    text-align: center;
}

/* Text color overrides for brand-bg sections */
.bg-brand .section-title,
.bg-brand .section-text,
.bg-brand h2,
.bg-brand h3,
.bg-brand h4,
.bg-brand p,
.bg-brand li,
.bg-brand strong {
    color: var(--color-white);
}

.bg-brand .feature-list li {
    color: rgba(255, 255, 255, 0.9);
}

/* Center feature lists on mobile but keep items row-aligned */
.feature-list {
    display: inline-block;
    text-align: left;
    margin: 0 auto var(--spacing-sm);
}

.align-center {
    align-items: center;
}

/* Controle de visibilidade: imagem fleet mobile vs desktop */
.fleet-visual-mobile {
    display: none; /* oculta no desktop */
}

.fleet-visual-desktop {
    display: block; /* visível no desktop */
}

@media (max-width: 767px) {
    /* Fleet: bloco simples no mobile */
    .fleet-section .grid {
        display: block;
    }

    .fleet-visual-mobile {
        display: block;
        margin: 1.5rem 0;
    }

    .fleet-visual-desktop {
        display: none;
    }
}

@media (min-width: 768px) {

    .fleet-visual {
        order: 0;
    }

    .fleet-section,
    .location-section {
        text-align: left;
    }

    .feature-list {
        display: block;
        margin: 0;
    }
}

.image-placeholder {
    width: 100%;
    height: 350px;
    background-color: #ddd;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    overflow: hidden;
}

.fleet-img {
    background-image: url('https://images.unsplash.com/photo-1616428782337-331da2542a9b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
}

.location-img {
    background-image: url('https://images.unsplash.com/photo-1520697772648-527e028b173e?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
}

.feature-list i {
    color: var(--color-secondary);
    /* Updated to secondary color (Kingsky Blue/Teal) for better visibility on dark bg or generally */
    flex-shrink: 0;
}

/* Stat Highlight Badge */
.stat-highlight {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    /* Center on mobile */
    text-align: center;
}

@media (min-width: 768px) {
    .stat-highlight {
        align-items: flex-start;
        text-align: left;
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* --- What's Included (Accordion Style) --- */
.included-section {
    padding: var(--spacing-lg) 0;
}

/* Imagem real da seção differentiators */
.differentiators-img-real {
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
}

.differentiators-visual-desktop .differentiators-img-real {
    min-height: 400px;
    max-height: 520px;
}

.differentiators-visual-mobile .differentiators-img-real {
    max-height: 260px;
    object-position: center top;
    margin: 1.5rem 0;
}

/* Imagens reais das seções fleet e location */
.fleet-img-real,
.location-img-real {
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
}

.fleet-visual-desktop .fleet-img-real,
.location-visual-desktop .location-img-real {
    min-height: 400px;
    max-height: 520px;
}

.fleet-visual-mobile .fleet-img-real,
.location-visual-mobile .location-img-real {
    max-height: 260px;
    object-position: center;
    margin: 1.5rem 0;
}

/* Imagem real da seção solution */
.solution-img-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
}

.solution-visual-desktop .solution-img-real {
    min-height: 400px;
    max-height: 520px;
}

.solution-visual-mobile.solution-img-real {
    max-height: 260px;
    object-position: center;
    margin: 1.5rem 0;
}

/* Imagem real da seção lifestyle */
.lifestyle-img-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
}

.lifestyle-visual-desktop .lifestyle-img-real {
    min-height: 400px;
    max-height: 520px;
}

.lifestyle-visual-mobile .lifestyle-img-real {
    max-height: 280px;
    object-position: top;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

/* Controle de visibilidade: solution, location e differentiators */
.solution-visual-mobile,
.location-visual-mobile,
.differentiators-visual-mobile {
    display: none;
}

@media (max-width: 767px) {
    /* Solution: mostrar imagem mobile, ocultar coluna desktop */
    .solution-visual-mobile {
        display: block;
        margin: 1.5rem 0;
        min-height: 220px;
        flex: none;
    }

    .solution-visual-desktop {
        display: none;
    }

    /* Location: mostrar imagem mobile, ocultar coluna desktop */
    .location-visual-mobile {
        display: block;
        margin: 1.5rem 0;
    }

    .location-visual-desktop {
        display: none;
    }

    /* Location: container vira bloco simples */
    .location-section .container {
        display: block;
    }

    /* Differentiators: mostrar imagem mobile, ocultar coluna desktop */
    .differentiators-visual-mobile {
        display: block;
        margin: 1.5rem 0;
    }

    .differentiators-visual-desktop {
        display: none;
    }

    /* Differentiators: container vira bloco simples */
    .differentiators-section .grid {
        display: block;
    }
}

/* Definição de mt-lg e correção de margem do botão no desktop */
.mt-lg {
    margin-top: var(--spacing-lg);
}

/* Desktop: botão fica centralizado sem overflow */
.included-section .text-center {
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .included-section .text-center {
        padding: 0;
    }
}

.included-accordion-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.included-item {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eef1f5;
}

.included-item.open {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--color-secondary);
}

.included-item-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}

.included-item-header:hover {
    background-color: #f8fafc;
}

.included-item-header .card-icon {
    margin-right: 1rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e0f2fe;
    border-radius: 50%;
    flex-shrink: 0;
}

.included-item-header h3 {
    margin: 0;
    flex-grow: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.accordion-chevron {
    transition: transform 0.3s ease;
    color: #94a3b8;
    width: 20px;
    height: 20px;
}

.included-item.open .accordion-chevron {
    transform: rotate(180deg);
    color: var(--color-secondary);
}

.included-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #f8fafc;
    padding: 0 1.5rem;
}

.included-item.open .included-item-body {
    max-height: 200px;
    /* Adjust based on content */
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid #eef1f5;
}

.included-item-body p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* --- Financing --- */
.financing-section {
    padding: var(--spacing-md) 0;
    /* Reduced on mobile */
    text-align: center;
    /* Center on mobile */
}

@media (min-width: 768px) {
    .financing-section {
        padding: var(--spacing-lg) 0;
        text-align: center;
        /* Keep centered on desktop too */
    }
}

/* Financing Partner Cards */
.financing-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 cols mobile */
    gap: 0.75rem;
    margin: 1.5rem auto;
    max-width: 100%;
}

@media (min-width: 600px) {
    .financing-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .financing-partners-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 900px;
        gap: 1rem;
    }
}

.partner-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
    transition: var(--transition);
    text-align: center;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.partner-logo-img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
    background: white;
    padding: 10px 12px;
    margin-bottom: 0.5rem;
}

.partner-card h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.2;
}

.partner-card p {
    font-size: 0.65rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.financing-features {
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.feature-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

/* --- Differentiators --- */
.differentiators-section {
    padding: var(--spacing-lg) 0;
    text-align: center;
}

@media (min-width: 768px) {
    .differentiators-section {
        text-align: left;
    }
}

.check-list-large {
    display: inline-block;
    text-align: left;
}

.check-list-large li {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--color-secondary);
}

.check-list-large p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: var(--color-text-lighter);
    font-style: italic;
    margin-top: 1rem;
}

.career-img {
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1549488497-60dc9852ce72?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
}

/* --- CTA Section --- */
.cta-section {
    padding: var(--spacing-md) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
}

.cta-header {
    margin-bottom: 2rem;
}

.cta-title {
    color: var(--color-white);
    font-size: 2rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone-row {
    margin-top: 1rem;
}

.cta-phone-row .btn {
    font-size: 0.95rem;
}

/* Botão de call abaixo do submit — visível em todas as versões */
.cta-phone-row-below {
    display: block;
    margin-top: 1rem;
}

.btn-outline-dark {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
}

.btn-outline-dark:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.form-container-centered {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    color: var(--color-text-dark);
    max-width: 500px;
    margin: 0 auto;
}

.form-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    font-size: 0.85rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 128, 175, 0.2);
}

@media (min-width: 768px) {
    .cta-section {
        padding: var(--spacing-lg) 0;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .form-container-centered {
        padding: 2rem;
    }
}

/* --- FAQ --- */
.faq-section {
    padding: var(--spacing-lg) 0;
}

.limit-width {
    max-width: 800px;
}

.accordion {
    margin-bottom: 2rem;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-body {
    display: none;
    padding-bottom: 1.5rem;
    color: var(--color-text-light);
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-primary);
    /* Dark Blue */
    color: #cbd5e1;
    padding: 4rem 0 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
}

.footer-branding .logo-text {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.footer-branding p {
    color: #ffffff;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.footer-contact p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: #ffffff;
    font-weight: 500;
}

.footer-links a {
    display: block;
    margin-bottom: 0.75rem;
}

.footer-context a:hover,
.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: #ffffff;
}

.footer-bottom a {
    color: #ffffff;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 1);
}

.legal-links {
    margin-top: 0.5rem;
}

.legal-links a {
    margin: 0 0.5rem;
}

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

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        text-align: left;
    }

    .legal-links {
        margin-top: 0;
    }
}

/* --- Testimonials Section (New) --- */
.testimonials-section {
    padding: var(--spacing-md) 0;
}

/* ── Carousel ── */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

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

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 33.333%;
        padding: 0 0.75rem;
    }
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-photo {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #dee4ea;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.testimonial-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-text {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.student-info {
    border-top: 1px solid #eef1f5;
    padding-top: 0.75rem;
}

.student-info h4 {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.student-info p {
    margin-bottom: 0;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* Carousel controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--color-primary-dark, #0f4a7a);
}

.carousel-dots {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c8d3de;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.carousel-dot.active {
    background: var(--color-primary);
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: var(--spacing-lg) 0;
    }
}