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

    body {
        font-family: 'Roboto', Arial, sans-serif;
        color: #333;
        line-height: 1.6;
    }

    /* Header */
    header {
        background: #f5f5f5;
        padding: 15px 50px;
        display: flex;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .logo {
        display: flex;
        align-items: center;
        font-weight: bold;
        flex: 0 0 auto;
    }

    .logo-text {
        font-family: 'Bebas Neue', Arial, sans-serif;
        font-size: 32px;
        color: #1e3a8a;
        letter-spacing: 1px;
    }

    .logo-year {
        font-family: 'Bebas Neue', Arial, sans-serif;
        color: #00bcd4;
    }

    .logo-subtitle {
        font-family: 'Roboto', Arial, sans-serif;
        font-size: 10px;
        font-weight: 400;
        color: #1e3a8a;
        display: block;
    }

    nav {
        display: flex;
        gap: 30px;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
        padding-right: 50px;
    }

    nav a {
        font-family: 'Roboto', Arial, sans-serif;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s;
    }

    nav a:hover {
        color: #00bcd4;
    }

    /* Hero Section - Tarifas */
    .hero-section {
        background: rgb(0, 165, 228, 1);
        padding: 10px 10px;
        text-align: center;
        color: white;
    }

    .hero-section h1 {
        font-family: 'Bebas Neue', Arial, sans-serif;
        font-size: 70px;
        margin-bottom: 10px;
        color: #0D2C6C;
        text-transform: uppercase;
        font-weight: 400;
        letter-spacing: 2px;
    }

    .pricing-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: left;
    }

    .pricing-card {
        background: rgb(0, 165, 228, 1);
        padding: 40px;
        border-radius: 10px;
    }

    .pricing-label {
        font-family: 'Roboto', Arial, sans-serif;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 15px;
        opacity: 0.95;
        letter-spacing: 0.5px;
    }

    .pricing-title {
        font-family: 'Bebas Neue', Arial, sans-serif;
        font-size: 60px;
        font-weight: 400;
        margin-bottom: 25px;
        color: #0D2C6C;
        letter-spacing: 1px;
    }

    .pricing-description {
        font-family: 'Roboto', Arial, sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.8;
        opacity: 0.95;
    }

    .divider {
        height: 3px;
        background: white;
        margin: 25px 0;
        width: 100%;
    }

    /* Form Section */
    .form-section {
        background: white;
        padding: 80px 50px;
    }

    .form-container {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .form-left {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .form-left h2 {
        font-family: 'Bebas Neue', Arial, sans-serif;
        color: rgb(0, 165, 228, 1);
        font-size: 32px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

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

    label {
        font-family: 'Roboto', Arial, sans-serif;
        font-weight: 500;
        margin-bottom: 8px;
        color: rgb(13, 44, 108, 1);
        font-size: 14px;
    }

    .required {
        color: rgb(13, 44, 108, 1);
    }

    input, select {
        font-family: 'Roboto', Arial, sans-serif;
        font-weight: 400;
        padding: 12px;
        border: 2px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
        transition: border 0.3s;
    }

    input:focus, select:focus {
        outline: none;
        border-color: #00bcd4;
    }

    input.error {
        border-color: #e91e63;
    }

    .error-message {
        color: #e91e63;
        font-size: 12px;
        margin-top: 5px;
    }

    select {
        cursor: pointer;
        background: white;
    }

    .submit-btn {
        font-family: 'Roboto', Arial, sans-serif;
        background: #c0d944;
        color: #1e3a8a;
        padding: 15px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.3s;
        text-transform: uppercase;
        margin-top: 20px;
        letter-spacing: 0.5px;
    }

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

    .submit-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

    .event-info {
        background: white;
        border: 2px solid #34567c;
        padding: 30px;
        border-radius: 10px;
    }

    .event-info h3 {
        font-family: 'Bebas Neue', Arial, sans-serif;
        color: rgb(0, 165, 228, 1);
        font-size: 24px;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .event-info p {
        color: #666;
        font-size: 14px;
        margin-bottom: 8px;
    }

    /* Alert messages */
    .event-info p {
        font-family: 'Roboto', Arial, sans-serif;
        font-weight: 400;
        color: #666;
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.7;
    }

    .alert-success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }

    .alert-error {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

    /* Footer */
    footer {
        background: rgb(13, 44, 108);
        color: white;
        padding: 50px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 50px;
    }

    .footer-logo {
        font-family: 'Bebas Neue', Arial, sans-serif;
        font-size: 36px;
        font-weight: 400;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .footer-subtitle {
        font-family: 'Roboto', Arial, sans-serif;
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 25px;
        opacity: 0.9;
    }

    .footer-description {
        font-family: 'Roboto', Arial, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.8;
        opacity: 0.9;
    }

    .contact-section h4 {
        font-family: 'Bebas Neue', Arial, sans-serif;
        margin-bottom: 20px;
        font-size: 22px;
        letter-spacing: 1px;
    }

    .contact-item {
        font-family: 'Roboto', Arial, sans-serif;
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .footer-bottom {
        font-family: 'Roboto', Arial, sans-serif;
        font-weight: 400;
        text-align: center;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.2);
        font-size: 12px;
        opacity: 0.8;
    }

    @media (max-width: 768px) {
        header {
            flex-direction: column;
            padding: 20px;
        }

        .pricing-container {
            grid-template-columns: 1fr;
        }

        .form-container {
            grid-template-columns: 1fr;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

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

        .hero-section h1 {
            font-size: 32px;
        }
    }

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0;
    border: none;
    background: transparent;
    transition: all 0.2s ease;
}

.radio-label:hover span {
    color: #00a8e8;
}

.radio-label input[type="radio"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #0D2C6C;
    flex-shrink: 0;
}

.radio-label span {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    line-height: 1.5;
}

.radio-label input[type="radio"]:checked + span {
    color: #0D2C6C;
    font-weight: 600;
}

/* Responsive para radio buttons */
@media (max-width: 768px) {
    .radio-group {
        gap: 10px;
    }
    
    .radio-label span {
        font-size: 15px;
    }
    
    .radio-label input[type="radio"] {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
}