/* NoePan - Mejoras visuales by Juan/SOLTIA */

/* === ANCHO AMPLIADO === */
.container,
.et_pb_row {
    width: 95% !important;
    max-width: 1400px !important;
}

.et-l--header .et_pb_row {
    width: 96% !important;
    max-width: 1500px !important;
}

.et-l--footer .et_pb_row {
    width: 95% !important;
    max-width: 1400px !important;
}

/* Secciones full-width */
.et_pb_section {
    position: relative;
}

.et_pb_fullwidth_section .et_pb_row {
    width: 100% !important;
    max-width: 100% !important;
}

/* === TIPOGRAFIA === */
body { 
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html { scroll-behavior: smooth; }

/* === ANIMACIONES === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.et_pb_section { animation: fadeInUp 0.8s ease-out both; }
.et_pb_section:nth-child(2) { animation-delay: 0.1s; }
.et_pb_section:nth-child(3) { animation-delay: 0.2s; }
.et_pb_section:nth-child(4) { animation-delay: 0.3s; }

/* === HOVER IMAGENES === */
.et_pb_image img,
.et_pb_gallery_image img,
.woocommerce ul.products li.product img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease !important;
}

.et_pb_image:hover img,
.et_pb_gallery_image:hover img,
.woocommerce ul.products li.product:hover img {
    transform: scale(1.03) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
}

/* === BOTONES === */
.et_pb_button,
.woocommerce a.button,
.woocommerce button.button {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border-radius: 8px !important;
    letter-spacing: 0.5px !important;
}

.et_pb_button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* === PRODUCTOS WOOCOMMERCE === */
.woocommerce ul.products li.product {
    transition: all 0.4s ease !important;
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04) !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1) !important;
}

/* === BLURB CARDS === */
.et_pb_blurb {
    transition: all 0.4s ease !important;
}

.et_pb_blurb:hover {
    transform: translateY(-4px) !important;
}

/* === LOGO CLICKABLE === */
.et_pb_menu__logo-wrap {
    cursor: pointer;
}

/* === MOBILE === */
@media (max-width: 768px) {
    .et_pb_row { width: 92% !important; }
    .et_pb_section { padding: 40px 15px !important; }
    .et_pb_text h1 { font-size: 2rem !important; }
    .et_pb_text h2 { font-size: 1.6rem !important; }
}

/* === ACCESIBILIDAD === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
