/* Reset e configurações básicas mobile-first */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

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

/* Hero Section - Mobile First */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #87CEEB 0%, #98FB98 30%, #FFD700 70%, #FF69B4 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 0;
    overflow: hidden;
}

.sun-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #FFD700 40%, #FFA500 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: sunGlow 3s ease-in-out infinite alternate;
}

.sun-decoration::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 16px solid #FFD700;
}

@keyframes sunGlow {
    0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

.hero-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    z-index: 10;
    position: relative;
}

.brand-logo {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.logo-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6B73FF, #9B59B6);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(107, 115, 255, 0.3);
    border: 4px solid white;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: white;
    text-align: center;
    line-height: 1.2;
    font-weight: bold;
}

.hero-title-container {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    display: block;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-info {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.local-info h2 {
    background: linear-gradient(135deg, #32CD32, #228B22);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 1rem;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.3);
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    border: 3px solid white;
}

.date-info {
    margin-bottom: 20px;
}

.date-badge {
    background: linear-gradient(135deg, #FF6347, #FF1493);
    color: white;
    padding: 12px 25px;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(255, 99, 71, 0.4);
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    border: 3px solid white;
}

.vagas-info {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.vagas-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.inscricoes-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

.pricing-preview {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.price-item {
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(107, 115, 255, 0.2);
}

.price-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #6B73FF;
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #FF6347;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF6347, #FF1493);
    color: white;
    padding: 18px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 99, 71, 0.4);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 1s both, pulse 2s ease-in-out 2s infinite;
    font-family: 'Poppins', sans-serif;
    border: 3px solid white;
    min-height: 60px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 99, 71, 0.6);
}

.cta-text {
    font-size: 1rem;
}

.cta-arrow {
    font-size: 1.2rem;
}

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

/* Seções Gerais */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #6B73FF;
    animation: fadeInUp 0.8s ease-out;
}

.section-title.white {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-description {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    padding: 0 10px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Sobre Section */
.sobre {
    padding: 60px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: linear-gradient(135deg, #FFE4E1, #E6E6FA);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #6B73FF;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Programação Section */
.programacao {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFE4B5, #F0E68C);
}

.schedule-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.schedule-day {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.schedule-day:hover {
    transform: translateY(-3px);
}

.day-header {
    padding: 15px;
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.day-header.seg { background: linear-gradient(135deg, #FF6B6B, #FF8E8E); }
.day-header.ter { background: linear-gradient(135deg, #4ECDC4, #6FDDD1); }
.day-header.qua { background: linear-gradient(135deg, #45B7D1, #67C3DB); }
.day-header.qui { background: linear-gradient(135deg, #96CEB4, #A8D5B8); }
.day-header.sex { background: linear-gradient(135deg, #FFEAA7, #FFE17A); }
.day-header.todos { background: linear-gradient(135deg, #FD79A8, #E84393); }

.day-name {
    font-size: 1.2rem;
    font-weight: bold;
}

.day-content {
    padding: 20px 15px;
}

.day-content p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    text-align: center;
}

.special-text {
    color: #FF6347 !important;
    font-size: 1rem ! important;
}

/* Preços Section */
.precos {
    padding: 60px 0;
    background: white;
}

.pricing-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid #E6E6FA;
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.pricing-card.featured {
    border-color: #FFD700;
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: translateY(-5px) scale(1.02);
}

.pricing-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #6B73FF;
    margin-bottom: 15px;
}

.pricing-price {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FF6347;
}

.price-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF6347;
    font-family: 'Poppins', sans-serif;
}

.pricing-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #6B73FF;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid white;
}

/* Promoções Section */
.promocoes {
    padding: 60px 0;
    background: linear-gradient(135deg, #FF6B9D, #C44569);
}

.promo-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.promo-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-dezembro {
    border-left: 6px solid #FF0000;
}

.promo-janeiro {
    border-left: 6px solid #FFD700;
}

.promo-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.promo-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #6B73FF;
    margin-bottom: 8px;
}

.promo-content p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
}

/* Formulário de Inscrição */
.inscricao {
    padding: 60px 0;
    background: linear-gradient(135deg, #E0E6FF, #FFE4E1);
}

.form-intro {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    padding: 0 10px;
}

.inscricao-form {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #9B59B6;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E6E6FA;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.form-group label,
.form-group-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 3px solid #E6E6FA;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
    min-height: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #B8B3FF;
    box-shadow: 0 4px 12px rgba(107, 115, 255, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6B73FF;
    background: linear-gradient(135deg, #F8F9FF, #FFF);
    box-shadow: 0 0 0 4px rgba(107, 115, 255, 0.15), 0 8px 25px rgba(107, 115, 255, 0.2);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio buttons customizados - Versão simplificada */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 16px;
    border: 2px solid #E6E6FA;
    border-radius: 10px;
    transition: all 0.2s ease;
    background: white;
    position: relative;
}

.radio-option:hover {
    border-color: #B8B3FF;
    background: #F8F9FF;
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: #6B73FF;
    background: #F0F4FF;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #CCC;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: white;
}

.radio-option:has(input[type="radio"]:checked) .radio-custom {
    border-color: #6B73FF;
    background: white;
}

.radio-option:has(input[type="radio"]:checked) .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #6B73FF;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.radio-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

/* Checkbox customizado */
.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 15px;
    border: 3px solid #E6E6FA;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.checkbox-option:hover {
    border-color: #B8B3FF;
    background: linear-gradient(135deg, #F8F9FF, #FFF);
    box-shadow: 0 4px 12px rgba(107, 115, 255, 0.1);
    transform: translateY(-1px);
}

.checkbox-option:has(input[type="checkbox"]:checked) {
    border-color: #32CD32;
    background: linear-gradient(135deg, #32CD32, #228B22);
    color: white;
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
    transform: translateY(-2px);
}

.checkbox-option:has(input[type="checkbox"]:checked) .checkbox-text {
    color: white;
    font-weight: 600;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 3px solid #E6E6FA;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.checkbox-option:has(input[type="checkbox"]:checked) .checkbox-custom {
    border-color: white;
    background: white;
    box-shadow: 0 0 0 2px #32CD32, 0 4px 12px rgba(50, 205, 50, 0.4);
}

.checkbox-option:has(input[type="checkbox"]:checked) .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #32CD32;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.checkbox-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

/* Checkbox group para datas */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.checkbox-group .checkbox-option {
    padding: 12px;
}

.checkbox-group .checkbox-text {
    font-size: 0.9rem;
}

/* Total Price */
.total-price {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    border: 3px solid white;
}

.total-price-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #6B73FF;
    font-weight: bold;
}

.total-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #6B73FF;
    font-weight: bold;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #32CD32, #228B22);
    color: white;
    padding: 18px 20px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 60px;
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
    border: 3px solid white;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(50, 205, 50, 0.6);
}

.submit-text {
    font-size: 1rem;
}

.submit-icon {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.footer-brand h3,
.footer-contact h4,
.footer-hours h4 {
    font-family: 'Poppins', sans-serif;
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-brand p,
.footer-contact p,
.footer-hours p {
    color: #BDC3C7;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #BDC3C7;
    font-size: 0.85rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6B73FF, #9B59B6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 115, 255, 0.4);
    font-size: 1.2rem;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 115, 255, 0.6);
}

/* Validação de formulário */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #FF6B6B;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(255, 107, 107, 0.03));
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15), 0 4px 12px rgba(255, 107, 107, 0.2);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error-message {
    color: #FF6B6B;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

.success-message {
    background: linear-gradient(135deg, #D4EDDA, #B8E6C1);
    color: #155724;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #C3E6CB;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(212, 237, 218, 0.3);
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsividade para tablets e desktop */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .schedule-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .promo-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }

    .checkbox-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 60px;
    }

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

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

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

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

    .inscricao-form {
        padding: 40px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms ! important;
    }
}

/* Focus styles para acessibilidade */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 3px solid #6B73FF;
    outline-offset: 2px;
}
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 3px solid #6B73FF;
    outline-offset: 2px;
}

/* Estilos adicionais para estados dos inputs */
.form-group input.has-content,
.form-group select.has-content,
.form-group textarea.has-content {
    border-color: #32CD32;
    background: linear-gradient(135deg, #F0FFF0, #FFF);
    box-shadow: 0 2px 8px rgba(50, 205, 50, 0.1);
}

.form-group input.focused,
.form-group select.focused,
.form-group textarea.focused {
    background: linear-gradient(135deg, #F8F9FF, #FFF);
    transform: translateY(-1px);
}

/* Animação suave para transições */
.radio-option,
.checkbox-option,
.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efeito de glow sutil */
.radio-option:hover,
.checkbox-option:hover {
    box-shadow: 0 4px 12px rgba(107, 115, 255, 0.1), 0 0 20px rgba(107, 115, 255, 0.05);
}

/* Alto contraste para acessibilidade */
@media (prefers-contrast: high) {
    .hero {
        background: linear-gradient(135deg, #000080 0%, #006400 100%);
    }
    
    .colonia-text,
    .ferias-text {
        color: #000;
        text-shadow: 2px 2px 0 #fff;
    }
}

/* Destaque para seção obrigatória */
.highlight-required {
    border: 3px solid #FF6347;
    background: linear-gradient(135deg, #FFF5F5, #FFE4E1);
    box-shadow: 0 8px 25px rgba(255, 99, 71, 0.3);
    position: relative;
}

.highlight-required::before {
    content: 'OBRIGATÓRIO';
    position: absolute;
    top: -12px;
    right: 20px;
    background: #FF6347;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 10px rgba(255, 99, 71, 0.4);
}

/* Estilos para cupom */
.coupon-input-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.apply-coupon-btn {
    background: linear-gradient(135deg, #6B73FF, #9B59B6);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apply-coupon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 115, 255, 0.3);
}

.cupom-message {
    margin-top: 5px;
    font-size: 0.85rem;
    font-weight: 500;
}

.cupom-message.success {
    color: #32CD32;
}

.cupom-message.error {
    color: #FF6347;
}
