/* ===== PÁGINA INFO - ESTILOS MEJORADOS ===== */

.info-page {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0;
    background: transparent;
}

.info-page__header {
    background: linear-gradient(135deg, #FF3366 0%, #e02856 100%);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.info-page__header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.info-page__title {
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.info-page__content {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    line-height: 1.8;
    color: #374151;
}

/* Títulos dentro del contenido */
.info-page__content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: #1f2937;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #FF3366;
    position: relative;
}

.info-page__content h2::before {
    content: '▶';
    color: #FF3366;
    margin-right: 0.75rem;
    font-size: 0.8em;
}

.info-page__content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #374151;
}

.info-page__content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Tablas mejoradas */
.info-page__content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem auto;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    max-width: 800px;
}

.info-page__content table thead {
    background: linear-gradient(135deg, #FF3366 0%, #e02856 100%);
    color: white;
}

.info-page__content table thead th {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    padding: 16px 20px;
    text-align: left;
    border: none;
}

.info-page__content table th:first-child,
.info-page__content table td:first-child {
    text-align: left;
    padding-left: 24px;
}

.info-page__content table th:not(:first-child),
.info-page__content table td:not(:first-child) {
    text-align: center;
}

.info-page__content table td {
    padding: 14px 20px;
    border: none;
    color: #374151;
    font-weight: 500;
}

.info-page__content table tbody tr {
    transition: all 0.2s ease;
}

.info-page__content table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.info-page__content table tbody tr:hover {
    background: #fef3c7;
    transform: translateX(4px);
    box-shadow: -4px 0 0 #FF3366, 0 2px 8px rgba(234, 88, 12, 0.15);
}

.info-page__content table tbody td strong {
    color: #FF3366;
    font-size: 1.15em;
    font-weight: 700;
}

/* Listas mejoradas */
.info-page__content ul,
.info-page__content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.info-page__content ul li,
.info-page__content ol li {
    margin: 0.75rem 0;
    position: relative;
    padding-left: 0.5rem;
}

.info-page__content ul li::marker {
    color: #FF3366;
}

/* Alertas/Notas */
.info-page__content .alert {
    padding: 1.25rem 1.5rem !important;
    margin: 2rem 0 !important;
    border-radius: 12px !important;
    border-left: 5px solid !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08) !important;
    font-weight: 500;
}

.info-page__content .alert h4 {
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
}

.info-page__content .alert ul {
    margin: 0.75rem 0 0 0 !important;
    padding-left: 1.5rem !important;
}

.info-page__content .alert ul li {
    margin: 0.5rem 0 !important;
}

.info-page__content .alert-info {
    background: linear-gradient(to right, #dbeafe 0%, #e0f2fe 100%) !important;
    border-color: #3b82f6 !important;
    color: #1e40af !important;
}

.info-page__content .alert-warning {
    background: linear-gradient(to right, #fed7aa 0%, #fde68a 100%) !important;
    border-color: #f59e0b !important;
    color: #92400e !important;
}

.info-page__content .alert-success {
    background: linear-gradient(to right, #d1fae5 0%, #a7f3d0 100%) !important;
    border-color: #10b981 !important;
    color: #065f46 !important;
}

/* Párrafos con strong */
.info-page__content p {
    margin: 1.25rem 0;
}

.info-page__content strong {
    color: #1f2937;
    font-weight: 600;
}

/* Size guide específico */
.info-page__content .size-guide-table {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 2px solid #e5e7eb;
}

.info-page__content .size-guide-table p {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    color: #92400e;
}

/* Shipping info específico */
.info-page__content .shipping-info {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 2px solid #bae6fd;
}

.info-page__content .shipping-info h4 {
    color: #0369a1;
    margin-top: 1.5rem;
}

.info-page__content .shipping-info h4:first-child {
    margin-top: 0;
}

/* Footer de la página */
.info-page__footer {
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    background: #f9fafb;
    border-radius: 12px;
    text-align: center;
}

.info-page__footer .text-muted {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Banner de contacto mejorado */
.contact-banner {
    background: linear-gradient(135deg, #FF3366 0%, #e02856 100%);
    color: white;
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem auto;
    max-width: 1000px;
    box-shadow: 0 8px 16px rgba(234, 88, 12, 0.25);
    position: relative;
    overflow: hidden;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.contact-banner__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.contact-banner__content {
    position: relative;
    z-index: 1;
}

.contact-banner__content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-banner__content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-banner .btn--whatsapp {
    background: white;
    color: #25d366;
    font-weight: 700;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-banner .btn--whatsapp:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .info-page__header {
        padding: 2rem 1.5rem;
        border-radius: 12px 12px 0 0;
    }

    .info-page__title {
        font-size: 2rem;
    }

    .info-page__content {
        padding: 2rem 1.5rem;
        border-radius: 0 0 12px 12px;
    }

    .info-page__content h2 {
        font-size: 1.5rem;
    }

    .info-page__content h3 {
        font-size: 1.25rem;
    }

    .info-page__content table {
        font-size: 0.85rem;
    }

    .info-page__content table th,
    .info-page__content table td {
        padding: 10px 12px;
    }

    .contact-banner {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }

    .contact-banner__icon {
        font-size: 3rem;
    }

    .contact-banner__content h3 {
        font-size: 1.5rem;
    }

    .contact-banner__content p {
        font-size: 1rem;
    }

    .contact-banner .btn--whatsapp {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .info-page__content table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
    }

    .info-page__content table th,
    .info-page__content table td {
        padding: 8px 10px;
    }
}
