/* Cruzeiro do Sul - Landing Page CSS */
:root {
    --primary: #003B71; /* Azul Cruzeiro */
    --secondary: #F79A16; /* Laranja Cruzeiro */
    --accent: #002A52; /* Azul Escuro */
    --text-primary: #1D1D1F;
    --text-secondary: #555555;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-light: #F0F4F8;
    --border: #D2D2D7;
    --success: #28A745;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 59, 113, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 59, 113, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 59, 113, 0.16);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-logo img {
    height: 50px;
    width: auto;
}

.navbar-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.navbar-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    align-items: center;
    justify-content: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Marquee Banner */
.marquee-banner {
    background: var(--secondary);
    color: var(--primary);
    padding: 16px 0 12px; /* Aumentado o padding superior para descer o texto */
    overflow: hidden;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    z-index: 999;
    font-weight: 800;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0 25px;
}

.marquee-item.highlight-text {
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    margin-top: 120px;
    padding: 80px 40px 50px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary);
    animation: fadeInUp 0.8s ease-out;
}

.hero-content .highlight {
    color: var(--secondary);
}

.hero-tagline {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* Conditions Cards */
.hero-special-conditions {
    margin: 40px 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.conditions-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.condition-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.condition-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.condition-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.condition-value strong {
    font-size: 20px;
    display: block;
}

.condition-label {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Form */
.hero-form {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.form-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary);
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.radio-option input {
    display: none;
}

.radio-option label {
    display: block;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.radio-option input:checked + label {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.submit-button {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Modalidades Section */
.modalidades-section {
    padding: 80px 40px;
    background: var(--white);
}

.modalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.modalidade-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.modalidade-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.modalidade-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.modalidade-body {
    padding: 30px;
}

.modalidade-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.modalidade-body li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modalidade-body li i { color: var(--success); }

/* Testemunhos Section */
.testimonials-section {
    padding: 80px 40px;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h5 { color: var(--primary); font-weight: 700; }
.author-info span { font-size: 12px; color: var(--text-secondary); }

/* Benefits Section */
.benefits {
    padding: 80px 40px;
    background: var(--white);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-card {
    background: var(--bg-secondary);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

/* Image Section */
.image-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 80px 40px;
    background: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 300px;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 40px 30px;
    text-align: center;
}

.footer-cta h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.footer-cta p {
    margin-bottom: 24px;
    opacity: 0.8;
}

.footer-info {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    opacity: 0.6;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-content { text-align: center; }
    .conditions-cards { justify-content: center; }
    .navbar-menu { display: none; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 36px; }
    .section-title { font-size: 32px; }
    .conditions-cards { grid-template-columns: 1fr; }
}
