/* --- ESTILOS PÁGINA SUMI-ENVÍOS --- */

.shipping-page {
    font-family: 'Inter', sans-serif;
    background: #f4f7f6;
    /* Fondo gris muy suave para contraste */
    padding-top: 100px;
    padding-bottom: 80px;
    color: #333;
}

.shipping-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.shipping-header {
    text-align: center;
    margin-bottom: 50px;
}

.shipping-header h1 {
    font-size: 2.5rem;
    color: #0d47a1;
    margin-bottom: 10px;
}

.shipping-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Video Section */
.video-section {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-caption {
    margin-top: 20px;
    text-align: center;
}

.video-caption h3 {
    color: #0d47a1;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.video-caption p {
    color: #666;
    font-size: 0.95rem;
}

/* Form Section */
.form-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.form-header-card {
    background: #0d47a1;
    color: white;
    padding: 30px;
    text-align: center;
}

.form-header-card h2 {
    margin: 0 0 5px;
    font-size: 1.8rem;
}

.form-header-card p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.iframe-wrapper {
    width: 100%;
    overflow: hidden;
    /* Altura inicial sugerida, aunque el iframe tiene su propio height */
    min-height: 800px;
}

.dolibarr-iframe {
    width: 100%;
    /* Altura fija grande para evitar doble scroll en la medida de lo posible */
    height: 1900px;
    border: none;
    display: block;
}

.secure-badge {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #2e7d32;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .shipping-header h1 {
        font-size: 2rem;
    }

    /* Ajuste para móviles, quizás el iframe necesite más altura */
    .dolibarr-iframe {
        height: 2200px;
    }
}