/* Direct Response Marketing Style */
:root {
    --primary-color: #0056b3;
    /* Strong Trust Blue */
    --secondary-color: #28a745;
    /* Action Green */
    --accent-color: #ffc107;
    /* Warning/Highlight Yellow */
    --text-dark: #212529;
    --text-gray: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Clean, solid shadow */
    --border-radius: 8px;
    /* Standard accessible radius */
    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

body {
    font-family: var(--font-main);
    line-height: 1.5;
    color: var(--text-dark);
    background-color: #fff;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
}

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

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

/* Header - Clean & Solid */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

header .logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
}

header nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

header nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

header nav a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

header nav a:hover {
    color: var(--primary-color);
}

header .btn-nav {
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

header .btn-nav:hover {
    background: #218838;
}

/* Hero Section - Professional & Visual */
/* Hero Section - Professional & Visual */
.hero {
    padding: 30px 0;
    /* Minimized padding */
    background: linear-gradient(rgba(0, 30, 60, 0.85), rgba(0, 30, 60, 0.9)),
        url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    position: relative;
    /* Ultra content focused */
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    /* More space for text */
    gap: 15px;
    /* Minimal gap */
    align-items: center;
    width: 100%;
}

.hero h1 {
    font-size: 2.3rem;
    /* Larger to fill space */
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.1rem;
    /* More distinct description */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-features {
    margin-bottom: 10px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #fff;
    font-size: 0.85rem;
}

.check-icon {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Form Card - Professional Lift */
.form-card {
    background: #fff;
    padding: 20px;
    /* Minimal padding */
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    border: none;
    position: relative;
    z-index: 10;
}

.form-card h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 800;
    margin-bottom: 5px;
}

.form-card .subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    /* Smaller inputs */
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    background: #fdfdfd;
}

.form-group input:focus {
    border-color: var(--primary-color);
    background: #fff;
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #218838;
}

/* Section Specifics */
.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Steps Section (Processo) */
.steps-section {
    padding: 80px 0;
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.step-item {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Presence Section (Estados) */
.presence-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.state-badge {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    font-weight: 600;
    box-shadow: var(--shadow-card);
    color: var(--primary-color);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

/* Testimonials Slider */
.testimonials-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    /* Hide overflow from container */
}

/* Slider Container */
.testimonials-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    /* Space for scrolling */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox hide scrollbar */
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari hide scrollbar */
}

.review-card {
    background: #fff;
    border: 1px solid #e9ecef;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);

    /* Show 3 items: (100% - (20px gap * 2)) / 3 */
    min-width: calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);

    scroll-snap-align: start;
    /* Align to start for better 3-per-view feel */
    flex: 0 0 auto;
}

@media (max-width: 992px) {
    .review-card {
        min-width: 85%;
        /* Show 1 item with peek on tablet */
        max-width: 85%;
        scroll-snap-align: center;
    }
}

@media (max-width: 576px) {
    .review-card {
        min-width: 90%;
        /* Show nearly full item on mobile */
        max-width: 90%;
    }
}

.review-card {
    background: #fff;
    border: 1px solid #e9ecef;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.review-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: #343a40;
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p,
.footer-col a {
    color: #adb5bd;
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: block;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #adb5bd;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        background: #f8f9fa;
        text-align: center;
    }

    /* Remove split bg */
    .hero h1 {
        font-size: 2.5rem;
    }

    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    header .container {
        flex-direction: column;
        gap: 15px;
    }

    header nav {
        flex-direction: column;
        gap: 15px;
    }
}