.elementor-1096 .elementor-element.elementor-element-b34f216{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-3166be4 *//* Reset y Configuración Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #586483 0%, #3d4659 100%);
    color: #333;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

/* Contenedor Principal */
.container {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

/* Cabecera */
.header {
    background: linear-gradient(135deg, #586483 0%, #3d4659 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    animation: pulse 4s ease-in-out infinite;
}

.header-icon {
    font-size: 4.5em;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    animation: slideInLeft 0.8s ease-out;
}

.header p {
    font-size: 1.3em;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    animation: slideInRight 0.8s ease-out;
}

/* Secciones de Contenido */
.content {
    padding: 50px;
}

.info-banner {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 25px;
    border-left: 5px solid #586483;
    margin-bottom: 40px;
    border-radius: 12px;
    animation: slideIn 0.6s ease-out 0.3s backwards;
    box-shadow: 0 4px 15px rgba(88, 100, 131, 0.1);
}

.section {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 15px;
    background: #fafbfc;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out backwards;
}

.section:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(88, 100, 131, 0.15);
    background: white;
}

.section h2 {
    color: #586483;
    font-size: 2.2em;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #586483;
    position: relative;
    overflow: hidden;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: #3d4659;
    transition: width 0.5s ease;
}

.section:hover h2::after {
    width: 100%;
}

.section h3 {
    color: #3d4659;
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid #586483;
}

/* Tablas y Listas */
.shipping-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(88, 100, 131, 0.1);
}

.shipping-table thead {
    background: linear-gradient(135deg, #586483 0%, #3d4659 100%);
    color: white;
}

.shipping-table th, .shipping-table td {
    padding: 18px;
    text-align: left;
}

.shipping-table tbody tr:hover {
    background: #f5f7fa;
}

.section ul {
    margin-left: 25px;
    list-style: none;
}

.section li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
}

.section li::before {
    content: '▸';
    color: #586483;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* Cajas de Alerta/Estado */
.highlight-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ffa726;
    margin: 25px 0;
    animation: glow 2s ease-in-out infinite;
}

.success-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #66bb6a;
    margin: 25px 0;
}

.warning-box {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ef5350;
    margin: 25px 0;
    animation: shake 0.5s ease-out;
}

/* Pasos del Proceso */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.step-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-top: 4px solid #586483;
    box-shadow: 0 4px 15px rgba(88, 100, 131, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #586483 0%, #3d4659 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Contacto y Footer */
.contact-box {
    background: linear-gradient(135deg, #586483 0%, #3d4659 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.footer {
    background: #f8f9fa;
    padding: 30px;
    text-align: center;
    color: #666;
}

/* Animaciones */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 { font-size: 2em; }
    .content { padding: 25px; }
    .shipping-table { font-size: 0.85em; display: block; overflow-x: auto; }
}/* End custom CSS */