@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Clean, Light & Professional */
    --primary-blue: #2563EB;     /* Blue (Trust/Security) */
    --dark-blue: #1E3A8A;
    --accent-yellow: #FBBF24;    /* Yellow/Gold (Urgency/Energy) */
    --accent-hover: #F59E0B;
    --bg-light: #F8FAFC;         /* Light Gray Background */
    --white: #FFFFFF;
    --text-main: #1E293B;        /* Dark Slate */
    --text-muted: #64748B;
    --success: #10B981;
    --border: #E2E8F0;
    
    /* Effects */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Compliance Top Bar */
.compliance-bar {
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 6px 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

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

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

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--dark-blue);
    letter-spacing: -0.3px;
    margin: 0;
}

.logo-desc {
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    gap: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
    box-shadow: 0 4px 0 0 #D97706;
}

.btn-yellow:hover {
    transform: translateY(-2px);
    background-color: var(--accent-hover);
    box-shadow: 0 6px 0 0 #D97706;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1FB155;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background-color: var(--white);
    padding: 60px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

/* Cards & Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.25rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-blue);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* Uber Section */
.uber-section {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 60px 0;
    border-radius: 24px;
    margin: 40px 0;
}

/* Footer */
footer {
    background: var(--white);
    padding: 60px 0 40px 0;
    border-top: 1px solid var(--border);
    color: var(--text-main);
}

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

.footer-col h4 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-col a {
    color: var(--primary-blue);
    text-decoration: none;
}

.legal-disclaimer {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    font-size: 0.95rem; /* Aumentado para igualar ao texto principal */
    color: var(--text-main);
    text-align: justify;
    margin-bottom: 30px;
    border: 1px solid var(--border);
    line-height: 1.6;
}

/* Floating Elements */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-card);
    z-index: 10000;
    text-decoration: none;
}

/* Mobile Adjustments */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* Modern Form Styles */
.quote-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.quote-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-yellow));
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: #F1F5F9;
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Detail Coverage Section */
.coverage-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.coverage-detail-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.coverage-detail-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-card);
}

.coverage-detail-card h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin: 15px 0;
}

.coverage-detail-card ul {
    list-style: none;
    padding: 0;
}

.coverage-detail-card ul li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.coverage-detail-card ul li i {
    color: var(--success);
    margin-top: 4px;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--accent-yellow);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark-blue);
}

/* Privacy Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-card);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--dark-blue);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 10002;
    border: 1px solid var(--border);
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-banner.active {
    display: flex;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.4;
}

.cookie-text a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}
