.elementor-4725 .elementor-element.elementor-element-108239c{--display:flex;--border-radius:20px 20px 20px 20px;box-shadow:3px 3px 10px 0px rgba(0,0,0,0.5);}body.elementor-page-4725:not(.elementor-motion-effects-element-type-background), body.elementor-page-4725 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-569479d );}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-59f080c *//* --- CONFIGURACIÓN DEL CONTENEDOR PRINCIPAL (Efecto Estudio Fotográfico) --- */
.ayuda-container-3d {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(245,245,245,1) 100%); /* Degradado radial suave */
    border-radius: 30px;
    font-family: 'Poppins', sans-serif; /* Usamos una fuente moderna si está disponible */
}

/* --- TÍTULO --- */
.ayuda-title-3d {
    text-align: center;
    color: #333;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-size: 28px;
    letter-spacing: 1px;
}

/* --- LA CUADRÍCULA --- */
.ayuda-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Botones más cuadrados */
    gap: 25px;
}

/* --- ESTILO DE CADA TARJETA/BOTÓN (Efecto 3D Flotante) --- */
.ayuda-card-3d {
    display: flex;
    flex-direction: column; /* Icono arriba, texto abajo */
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 25px; /* Radio de borde pronunciado */
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Transición suave con efecto 'bounce' */
    
    /* Sombra profunda y suave para efecto flotante */
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); 
    
    /* Borde dorado muy fino para definir */
    border: 1px solid rgba(212, 175, 55, 0.1);
    
    height: 100%; /* Asegurar altura uniforme */
}

/* --- EFECTO HOVER (Hacer que 'flote' más) --- */
.ayuda-card-3d:hover {
    transform: translateY(-10px) scale(1.03); /* Sube y se agranda un poco */
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2); /* Sombra más intensa y dorada */
    background: #fff;
}

/* --- EL ENVOLTORIO DEL ICONO --- */
.icon-wrapper-3d {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #fdfaf0; /* Fondo crema muy suave */
    border: 2px solid rgba(212, 175, 55, 0.3); /* Borde dorado suave */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    
    /* Sombra interna para dar profundidad */
    box-shadow: inset 0 3px 6px rgba(0,0,0,0.05);
}

/* --- EL ICONO DORADO (Truco CSS) --- */
.gold-icon {
    font-size: 40px;
    /* Efecto dorado usando degradado de texto (funciona en WebKit) */
    background: linear-gradient(135deg, #d4af37 0%, #f7ef8a 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- TEXTOS DENTRO DE LA TARJETA --- */
.texto-card-3d {
    text-align: center;
}

.main-text {
    display: block;
    color: #222;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sub-text {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
}

/* --- AJUSTE ESPECIAL PARA WHATSAPP --- */
.whatsapp-card-3d:hover .icon-wrapper-3d {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.whatsapp-card-3d:hover .gold-icon {
    background: #25D366;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- RESPONSIVIDAD (Ajuste para móviles) --- */
@media (max-width: 600px) {
    .ayuda-grid-3d {
        grid-template-columns: 1fr; /* Una columna en móvil */
        gap: 15px;
    }
    
    .ayuda-card-3d {
        flex-direction: row; /* En móvil, icono a la izquierda de nuevo */
        justify-content: flex-start;
        padding: 20px;
    }
    
    .icon-wrapper-3d {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .gold-icon {
        font-size: 30px;
    }
    
    .texto-card-3d {
        text-align: left;
    }
}/* End custom CSS */