/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b7355;
    --accent-color: #f4e4d7;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --success: #4caf50;
    --error: #f44336;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    --gradient: linear-gradient(135deg, #d4a574 0%, #c9946e 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #fef9f4 0%, #f9f0e8 100%);
    min-height: 100vh;
}

/* Contenedores de Pantalla */
.screen {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Pantalla de Selección de Familia */
#familySelection {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.wedding-header {
    text-align: center;
    margin-bottom: 50px;
}

.wedding-logo {
    max-width: 650px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.wedding-header .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
}

/* Contador Regresivo */
.countdown-container {
    background: var(--white);
    border-radius: 12px;
    padding: 15px 20px;
    margin: 25px auto;
    max-width: 500px;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
}

.countdown-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--gradient);
    border-radius: 8px;
    padding: 10px 12px;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-2px);
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-label {
    font-size: 0.65rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.wedding-date {
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Contador en Navbar */
.countdown-navbar {
    background: var(--accent-color);
    padding: 15px 20px;
    border-top: 2px solid var(--primary-color);
}

.countdown-display-small {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-label-small {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

.countdown-items-small {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-item-small {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.countdown-item-small strong {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Dropdown Selector Elegante */
.family-selector-container {
    max-width: 600px;
    margin: 50px auto;
}

.custom-select-wrapper {
    width: 100%;
}

.custom-select {
    position: relative;
    width: 100%;
    user-select: none;
}

.select-trigger {
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.select-trigger:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.select-trigger span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.select-trigger .arrow {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.custom-select.open .arrow {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: var(--shadow-hover);
}

.custom-select.open .select-options {
    max-height: 400px;
    overflow-y: auto;
    opacity: 1;
}

.select-option {
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.select-option:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
}

.select-option.selected {
    background: var(--gradient);
    color: var(--white);
    font-weight: 600;
}

/* Scrollbar personalizado para dropdown */
.select-options::-webkit-scrollbar {
    width: 8px;
}

.select-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.select-options::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.select-options::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}



/* Barra de Navegación */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-logo {
    max-height: 200px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    margin-bottom: 30px;
}

.nav-family {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-family span {
    color: var(--text-light);
    font-size: 1rem;
}

.nav-family strong {
    color: var(--primary-color);
}

/* Botones */
.btn-primary,
.btn-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    white-space: normal;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-primary:disabled:hover {
    transform: none;
    box-shadow: var(--shadow);
}

/* Contenedor Principal */
.main-container {
    padding: 40px 20px;
}

/* Secciones */
.section {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

/* Sección del Hotel */
.hotel-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--accent-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.hotel-header {
    text-align: center;
    margin-bottom: 30px;
}

.hotel-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.hotel-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    margin-bottom: 30px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.hotel-cta {
    text-align: center;
}

.btn-hotel {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hotel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* Sección de JetBlue */
.jetblue-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-hover);
}

.jetblue-content {
    text-align: center;
}

.jetblue-logo {
    max-width: 250px;
    height: auto;
    margin: 0 auto 25px;
    display: block;
}

.jetblue-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.jetblue-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.reminder-box {
    background: #fff3cd;
    border-left: 5px solid var(--warning);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.1);
}

.reminder-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.reminder-content strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.reminder-content p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Pasos */
.steps-container {
    display: grid;
    gap: 25px;
}

.step-card {
    background: var(--accent-color);
    border-radius: 15px;
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

.wedding-date-info {
    background: var(--white);
    border-left: 5px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.2);
}

.wedding-date-info strong {
    color: var(--primary-color);
}

.recommendations {
    list-style: none;
    margin-top: 15px;
}

.recommendations li {
    color: var(--text-light);
    padding: 8px 0 8px 30px;
    position: relative;
}

.recommendations li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Formularios */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input[type="number"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

/* Confirmación */
.confirmation-card {
    max-width: 700px;
    margin: 0 auto;
}

.confirmation-card form {
    background: var(--accent-color);
    padding: 30px;
    border-radius: 15px;
}

.success-message {
    text-align: center;
    padding: 50px 30px;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
    font-weight: bold;
}

.success-message h3 {
    color: var(--success);
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-message p {
    color: var(--text-light);
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--white);
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.footer p {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Botón Secreto de Admin */
.admin-secret-btn {
    position: absolute;
    bottom: 5px;
    right: 10px;
    background: transparent;
    border: none;
    color: transparent;
    font-size: 8px;
    cursor: pointer;
    padding: 5px 10px;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.admin-secret-btn:hover {
    opacity: 0.3;
}

.admin-btn-footer {
    right: auto;
    left: 10px;
    color: rgba(102, 126, 234, 0.15);
    font-size: 9px;
    opacity: 0.08;
}

.admin-btn-footer:hover {
    opacity: 0.25;
    color: rgba(102, 126, 234, 0.3);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.admin-pin-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.admin-pin-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.admin-pin-content input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 8px;
    margin-bottom: 20px;
    font-family: inherit;
}

.admin-pin-content input[type="password"]:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-actions button {
    flex: 1;
}

.error-message {
    background: #ffebee;
    color: var(--error);
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Estilos para Modal de Alerta Personalizada */
.alert-modal-content {
    max-width: 500px;
    padding: 40px 30px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounceIcon 0.5s ease;
}

@keyframes bounceIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.alert-modal-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.alert-modal-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.alert-modal-content .modal-actions {
    margin-top: 30px;
}

.alert-modal-content .btn-primary {
    min-width: 120px;
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Links sin underline */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .wedding-logo {
        max-width: 200px;
    }

    .wedding-header .subtitle {
        font-size: 1rem;
    }

    .family-selector-container {
        margin: 30px auto;
    }

    .select-trigger {
        padding: 15px 20px;
    }

    .select-trigger span {
        font-size: 1rem;
    }

    .select-option {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-logo {
        max-height: 150px;
        margin-bottom: 20px;
    }

    .hotel-card,
    .jetblue-card {
        padding: 25px 20px;
    }

    .hotel-header h3 {
        font-size: 1.5rem;
    }

    .reminder-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .reminder-icon {
        font-size: 2rem;
    }

    .countdown-container {
        padding: 12px 15px;
        max-width: 400px;
    }

    .countdown-title {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .countdown-item {
        min-width: 55px;
        padding: 8px;
        gap: 6px;
    }

    .countdown-value {
        font-size: 1.3rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .wedding-date {
        font-size: 0.8rem;
        margin-top: 10px;
    }

    .countdown-navbar {
        padding: 10px 15px;
    }

    .countdown-display-small {
        flex-direction: column;
        gap: 10px;
    }

    .countdown-items-small {
        gap: 10px;
        justify-content: center;
    }

    .countdown-item-small {
        font-size: 0.85rem;
    }

    .countdown-item-small strong {
        font-size: 1rem;
    }

    .nav-family {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .section {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .step-card {
        padding: 20px;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }

    .confirmation-card form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .wedding-logo {
        max-width: 300px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .alert-modal-content {
        padding: 30px 20px;
    }

    .alert-icon {
        font-size: 3rem;
    }

    .alert-modal-content h3 {
        font-size: 1.5rem;
    }

    .alert-modal-content p {
        font-size: 1rem;
    }

    .alert-modal-content .btn-primary {
        width: 100%;
        padding: 12px 20px;
    }

    .modal-actions button {
        width: 100%;
    }
}

/* ============================================
   INSTRUCCIONES DE RESERVA JETBLUE
   ============================================ */

.instructions-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 35px;
    margin-top: 40px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.instructions-box h4 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.instruction-step {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.instruction-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.step-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(212, 165, 116, 0.4);
}

.step-content {
    flex: 1;
}

.step-content strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.step-content strong strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Paso destacado (paso 6 con imagen) */
.highlight-step {
    background: linear-gradient(135deg, #fff8f0 0%, #fef5eb 100%);
    border-left: 4px solid #ff9800;
}

.highlight-step .step-badge {
    background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(255, 152, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(255, 152, 0, 0.6);
    }
}

.highlight-step .step-content strong {
    color: #ff6f00;
}

/* Contenedor de imagen del paquete */
.package-image-container {
    margin-top: 20px;
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    border: 2px dashed var(--primary-color);
    text-align: center;
}

.package-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
}

.image-caption {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    margin: 10px 0 0 0;
    font-weight: 500;
}

/* Responsive para instrucciones */
@media (max-width: 768px) {
    .instructions-box {
        padding: 25px 20px;
    }

    .instructions-box h4 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .instruction-step {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .step-badge {
        min-width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-content strong {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .package-image-container {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .instructions-box {
        padding: 20px 15px;
        margin-top: 30px;
    }

    .instructions-box h4 {
        font-size: 1.2rem;
    }

    .instruction-steps {
        gap: 15px;
    }

    .instruction-step {
        padding: 15px;
    }

    .step-badge {
        min-width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-content strong {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }
}
