/* 
* Mila's Deco Home - Estilos principales
* Paleta de colores:
* - Marrón principal: #A25B1E (RGB: 162, 91, 30)
* - Amarillo dorado: #FFAE00 (RGB: 255, 174, 0)
* - Blanco: #FFFFFF (RGB: 255, 255, 255)
* - Marrón suave: #b67930 (para footer)
* - Crema claro: #fdf6e9 (para secciones y slider)
*/

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #A25B1E;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #A25B1E;
    transition: all 0.3s ease;
}

a:hover {
    color: #FFAE00;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

.separador {
    width: 80px;
    height: 3px;
    background-color: #FFAE00;
    margin: 0 auto 40px;
}

.btn {
    display: inline-block;
    background-color: #A25B1E;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background-color: #FFAE00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Estilos para el contenedor del logo en el header */
/* Se usa flexbox para centrar verticalmente el logo */
.logo {
    display: flex;
    align-items: center;
}

/* Establece un tamaño máximo para el logo en el header */
/* Esto controla la altura del logo sin distorsionar su proporción */
.logo img {
    max-height: 60px;
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: 25px;
}

.menu a {
    font-weight: 500;
    padding: 5px;
    position: relative;
}

.menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFAE00;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #A25B1E;
}

/* Slider */
.slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    text-align: center;
    color: #333; /* Color de texto más oscuro para mejor contraste */
    z-index: 10;
    max-width: 800px;
    padding: 20px;
    /* Cambiado: Fondo color crema con transparencia */
    background-color: rgba(253, 246, 233, 0.85);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #A25B1E; /* Cambiado a marrón para mejor contraste */
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
}

.slider-controls button {
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    color: #A25B1E;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #FFAE00;
}

/* Bienvenida */
.bienvenida {
    text-align: center;
    /* Cambiado: Color de fondo a crema claro */
    background-color: #fdf6e9;
}

.bienvenida p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 18px;
}

/* Productos */
.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.producto-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.producto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.producto-img {
    height: 250px;
    overflow: hidden;
}

.producto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.producto-card:hover .producto-img img {
    transform: scale(1.1);
}

.producto-info {
    padding: 20px;
    text-align: center;
}

.producto-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.cta-button {
    text-align: center;
    margin-top: 20px;
}

/* Galería */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.galeria-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

/* Contacto */
.contacto {
    background-color: #fdf6e9;
}

.contacto-contenido {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.contacto-info, .contacto-formulario {
    flex: 1;
    min-width: 300px;
}

.contacto-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contacto-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contacto-item i {
    font-size: 24px;
    color: #A25B1E;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fdf6e9;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contacto-item:hover i {
    background-color: #A25B1E;
    color: #FFAE00;
}

.contacto-item p {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Footer */
footer {
    /* Cambiado: Color de fondo a marrón suave con transparencia */
    background-color: rgba(182, 121, 48, 0.9);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo, .footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

/* Estilos para el logo en el footer */
/* En el footer se usa un tamaño diferente al del header */
/* Se define un ancho máximo para que se vea bien en dispositivos pequeños */
.footer-logo img {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-social h3 {
    color: #fff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    /* Color de fondo blanco para los iconos */
    background-color: #FFFFFF;
    border-radius: 50%;
    margin-right: 10px;
    /* Color de los iconos amarillo dorado */
    color: #FFAE00;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #FFFFFF;
    /* El color de los iconos permanece amarillo dorado */
    color: #FFAE00;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Estilos para FAQ */
.faq-container {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.faq-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #A25B1E;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.faq-question h4 {
    margin: 0;
    font-size: 16px;
    color: #A25B1E;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 15px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-answer p {
    margin-top: 10px;
    line-height: 1.6;
    color: #666;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ======================================== */

/* Tablet y pantallas medianas (992px y menos) */
@media (max-width: 992px) {
    /* Navegación móvil */
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        text-align: center;
        border-radius: 0 0 10px 10px;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    /* Slider responsive */
    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    /* Productos grid responsive */
    .productos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    /* Galería responsive */
    .galeria-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }

    /* Contacto responsive */
    .contacto-contenido {
        flex-direction: column;
        gap: 20px;
    }

    .contacto-info, .contacto-formulario {
        min-width: 100%;
    }
}

/* Tablets pequeñas y móviles grandes (768px y menos) */
@media (max-width: 768px) {
    /* Espaciado general */
    section {
        padding: 50px 0;
    }

    .container {
        width: 95%;
        padding: 0 10px;
    }

    /* Tipografía responsive */
    h2 {
        font-size: 28px;
    }

    /* Slider ajustado */
    .slide-content {
        padding: 15px;
        max-width: 90%;
    }

    .slide-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* Header responsive */
    header {
        padding: 12px 0;
    }

    .logo img {
        max-height: 50px;
    }

    /* Productos grid más compacto */
    .productos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .producto-card {
        margin-bottom: 20px;
    }

    /* Galería más compacta */
    .galeria-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 12px;
    }

    .galeria-item {
        height: 200px;
    }

    /* Contacto y FAQ */
    .contacto-contenido {
        flex-direction: column;
        gap: 25px;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 15px;
    }

    /* Footer responsive */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-logo, .footer-social {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Móviles pequeños (576px y menos) */
@media (max-width: 576px) {
    /* Espaciado ultra compacto */
    section {
        padding: 40px 0;
    }

    .container {
        width: 100%;
        padding: 0 15px;
    }

    /* Header móvil */
    header {
        padding: 10px 0;
    }

    .logo img {
        max-height: 45px;
    }

    /* Slider móvil */
    .slider {
        height: 60vh;
        min-height: 400px;
    }

    .slide-content {
        max-width: 95%;
        padding: 12px;
    }

    .slide-content h2 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .slide-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .slider-controls {
        padding: 0 10px;
    }

    .slider-controls button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    /* Tipografía móvil */
    h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    /* Grids una sola columna */
    .productos-grid, .galeria-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .producto-card {
        max-width: 100%;
    }

    .galeria-item {
        height: 180px;
    }

    /* Bienvenida móvil */
    .bienvenida p {
        font-size: 16px;
        line-height: 1.5;
    }

    /* Botones móviles */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* FAQ móvil */
    .faq-container {
        padding: 15px;
    }

    .faq-question h4 {
        font-size: 14px;
        line-height: 1.4;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Footer móvil */
    .footer-logo img {
        max-width: 120px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

/* Estilos para la sección de Testimonios */
.testimonios {
    /* Fondo color crema claro como otras secciones */
    background-color: #fdf6e9;
    padding: 80px 0;
}

/* Contenedor principal del carrusel */
.testimonios-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

/* El slider que contendrá todas las tarjetas y se moverá horizontalmente */
.testimonios-slider {
    display: flex;
    transition: transform 0.5s ease;
    /* El espacio entre tarjetas se controla con gap */
    gap: 20px;
}

/* Tarjeta individual de testimonio */
.testimonio-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    transition: all 0.3s ease;
    /* Se aplica flexbox para centrar el contenido */
    display: flex;
    justify-content: center;
}

/* En pantallas más grandes, mostrar múltiples tarjetas */
@media (min-width: 768px) {
    .testimonio-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (min-width: 992px) {
    .testimonio-card {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

/* Contenido interno de la tarjeta */
.testimonio-contenido {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Estilo para las comillas decorativas */
.testimonio-comillas {
    color: #FFAE00;
    font-size: 28px;
    margin-bottom: 15px;
}

/* Estilo para el texto del testimonio */
.testimonio-texto {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1; /* Hace que el texto ocupe todo el espacio disponible */
}

/* Contenedor para la información del cliente */
.testimonio-cliente {
    display: flex;
    align-items: center;
}

/* Avatar circular con iniciales */
.testimonio-avatar {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.avatar-inicial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #A25B1E;
    color: #fff;
    font-weight: 600;
    border-radius: 50%;
}

/* Información textual del cliente */
.testimonio-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #A25B1E;
}

.testimonio-info p {
    margin: 0;
    font-size: 14px;
    color: #888;
}

/* Controles de navegación del carrusel */
.testimonios-controles {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

/* Botones de navegación */
.testimonio-prev,
.testimonio-next {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A25B1E;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonio-prev:hover,
.testimonio-next:hover {
    background-color: #FFAE00;
    color: #fff;
}

/* Indicadores de posición del carrusel */
.testimonios-indicadores {
    display: flex;
    gap: 8px;
}

.indicador {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(162, 91, 30, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicador.active {
    background-color: #A25B1E;
    transform: scale(1.2);
}

/* Efecto hover para tarjetas */
.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Media queries adicionales para hacer la sección responsive */
@media (max-width: 576px) {
    .testimonios-slider {
        padding: 0 10px;
    }
    
    .testimonio-card {
        padding: 15px;
    }
    
    .testimonio-texto {
        font-size: 14px;
    }
    
    .testimonio-comillas {
        font-size: 24px;
    }
    
    .testimonio-avatar {
        width: 40px;
        height: 40px;
    }
}

/* Estilos para el Banner del Blog */
.blog-banner {
    background: linear-gradient(135deg, #fdf6e9 0%, #fff 100%);
    padding: 60px 0;
    margin-bottom: 0;
}

.blog-banner-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

.blog-banner-text {
    flex: 1;
    min-width: 300px;
}

.blog-banner-text h2 {
    font-size: 2.5rem;
    color: #A25B1E;
    margin-bottom: 15px;
    text-align: left;
}

.blog-banner-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 25px;
}

.blog-banner-btn {
    display: inline-flex;
    align-items: center;
    background-color: #A25B1E;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(162, 91, 30, 0.2);
}

.blog-banner-btn:hover {
    background-color: #FFAE00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 174, 0, 0.3);
    color: #fff;
}

.blog-banner-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-banner-btn:hover i {
    transform: translateX(5px);
}

.blog-banner-cards {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-banner-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-banner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    height: 180px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-banner-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content h3 {
    font-size: 1.1rem;
    color: #A25B1E;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    color: #A25B1E;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-card-link i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-card-link:hover {
    color: #FFAE00;
}

.blog-card-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .blog-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-banner-text h2 {
        text-align: center;
    }
    
    .blog-banner-cards {
        width: 100%;
    }
}

/* Blog banner responsive móvil */
@media (max-width: 576px) {
    .blog-banner {
        padding: 30px 0;
    }
    
    .blog-banner-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .blog-banner-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .blog-banner-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .blog-banner-cards {
        flex-direction: column;
        gap: 15px;
    }
    
    .blog-banner-card {
        min-width: 100%;
    }
    
    .blog-card-image {
        height: 150px;
    }
    
    .blog-card-content {
        padding: 15px;
    }
    
    .blog-card-content h3 {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .blog-card-link {
        font-size: 0.9rem;
    }
}

/* Banner Promocional Escolares 2025 */
.banner-escolares {
    background: linear-gradient(90deg, #FFAE00 60%, #fdf6e9 100%);
    padding: 50px 0 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-escolares-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.banner-escolares-texto {
    flex: 1 1 300px;
}
.banner-escolares-texto h2 {
    font-size: 2.5rem;
    color: #A25B1E;
    margin-bottom: 15px;
}
.banner-escolares-texto p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 25px;
}
.banner-escolares-img {
    flex: 1 1 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-escolares-img img {
    max-width: 260px;
    border-radius: 15px;
    box-shadow: 0 4px 24px rgba(162,91,30,0.15);
    border: 3px solid #A25B1E;
    background: #fff;
}
@media (max-width: 900px) {
    .banner-escolares-content {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }
    .banner-escolares-img img {
        max-width: 180px;
    }
}

/* Tabla de combos escolares */
.combos-table-section {
    padding: 40px 0 30px 0;
    background: #fdf6e9;
}
.combos-table-wrapper {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 900px;
}
.combos-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(162,91,30,0.08);
    font-size: 1.08rem;
    margin: 0 auto;
    overflow: hidden;
}
.combos-table th, .combos-table td {
    padding: 16px 12px;
    text-align: left;
}
.combos-table th {
    background: #A25B1E;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.combos-table tr:nth-child(even) {
    background: #f9e7c7;
}
.combos-table tr:nth-child(odd) {
    background: #fff;
}
.combos-table td {
    color: #333;
    font-weight: 500;
}
.combos-table tr:hover {
    background: #FFAE0022;
    transition: background 0.2s;
}
@media (max-width: 700px) {
    .combos-table th, .combos-table td {
        padding: 10px 6px;
        font-size: 0.98rem;
    }
    .banner-escolares-texto h1 {
        font-size: 2rem;
    }
    .banner-sub {
        font-size: 1.05rem;
    }
}

/* Sección Promocional - Botón para Guía de Decoración */
.promo-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fdf6e9 0%, #fff 50%, #fdf6e9 100%);
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23A25B1E" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23FFAE00" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23A25B1E" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23FFAE00" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Efectos de fondo con emoticonos flotantes */
.promo-section::after {
    content: '🏠 🪴 🕯️ 🖼️ 🛋️ ✨ 🎨 💡 🪟 🕯️ 🏺 🖼️ 🪴 ✨ 🎨 🛋️ 💡 🏠 🪟 🏺';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 20px;
    color: rgba(162, 91, 30, 0.15);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    animation: floatingEmojis 20s infinite linear;
    pointer-events: none;
    z-index: 1;
    letter-spacing: 30px;
    line-height: 2;
    padding: 20px;
}

@keyframes floatingEmojis {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-10px) translateX(5px) rotate(90deg); }
    50% { transform: translateY(0px) translateX(-5px) rotate(180deg); }
    75% { transform: translateY(10px) translateX(5px) rotate(270deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

/* Emoticonos individuales con animaciones específicas */
.promo-floating-emoji {
    position: absolute;
    font-size: 18px;
    opacity: 0.2;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.emoji-1 { top: 15%; left: 10%; animation: float1 12s infinite; }
.emoji-2 { top: 25%; right: 15%; animation: float2 14s infinite; }
.emoji-3 { bottom: 30%; left: 8%; animation: float3 16s infinite; }
.emoji-4 { bottom: 20%; right: 12%; animation: float4 13s infinite; }
.emoji-5 { top: 35%; left: 25%; animation: float5 18s infinite; }
.emoji-6 { top: 45%; right: 30%; animation: float6 11s infinite; }
.emoji-7 { bottom: 45%; left: 20%; animation: float7 15s infinite; }
.emoji-8 { bottom: 35%; right: 25%; animation: float8 17s infinite; }

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(120deg); }
    66% { transform: translateY(5px) rotate(240deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(10px); }
    75% { transform: translateY(10px) translateX(-5px); }
}

@keyframes float4 {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px); opacity: 0.2; }
    50% { transform: translateY(-25px); opacity: 0.4; }
}

@keyframes float6 {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    33% { transform: translateX(-10px) rotate(120deg); }
    66% { transform: translateX(10px) rotate(240deg); }
}

@keyframes float7 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes float8 {
    0%, 100% { transform: rotate(0deg) translateY(0px); }
    25% { transform: rotate(90deg) translateY(-8px); }
    50% { transform: rotate(180deg) translateY(0px); }
    75% { transform: rotate(270deg) translateY(8px); }
}

.promo-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo-button {
    position: relative;
    display: block;
    background: linear-gradient(135deg, #A25B1E 0%, #FFAE00 100%);
    border-radius: 25px;
    padding: 25px 40px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 15px 35px rgba(162, 91, 30, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
}

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

.promo-button:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(162, 91, 30, 0.4);
    color: #fff;
}

.promo-button:hover .promo-background-effect {
    opacity: 1;
    transform: scale(1.2);
}

.promo-button:hover .promo-arrow {
    transform: translateX(8px);
}

.promo-button:hover .promo-icon {
    transform: rotate(15deg) scale(1.1);
}

.promo-background-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFAE00 0%, #A25B1E 100%);
    opacity: 0;
    transition: all 0.4s ease;
    transform: scale(0.8);
    border-radius: 25px;
}

.promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-icon {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.promo-text {
    flex: 1;
    text-align: left;
}

.promo-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-text p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.4;
}

.promo-arrow {
    font-size: 20px;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Efectos adicionales para dinamismo */
.promo-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFAE00, #A25B1E, #FFAE00, #A25B1E);
    background-size: 300% 300%;
    border-radius: 27px;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promo-button:hover::before {
    opacity: 1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Responsive para el botón promocional */
@media (max-width: 768px) {
    .promo-section {
        padding: 40px 0;
    }
    
    .promo-button {
        padding: 20px 25px;
        border-radius: 20px;
    }
    
    .promo-content {
        gap: 15px;
    }
    
    .promo-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .promo-text h3 {
        font-size: 1.4rem;
    }
    
    .promo-text p {
        font-size: 1rem;
    }
    
    .promo-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Emoticonos más pequeños en tablet */
    .promo-floating-emoji {
        font-size: 14px;
        opacity: 0.15;
    }
    
    .promo-section::after {
        font-size: 16px;
        letter-spacing: 20px;
    }
}

@media (max-width: 480px) {
    .promo-button {
        padding: 18px 20px;
    }
    
    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .promo-text h3 {
        font-size: 1.3rem;
    }
    
    .promo-text p {
        font-size: 0.95rem;
    }
    
    .promo-arrow {
        transform: rotate(90deg);
    }
    
    .promo-button:hover .promo-arrow {
        transform: rotate(90deg) translateY(8px);
    }
    
    /* Emoticonos aún más pequeños en móvil */
    .promo-floating-emoji {
        font-size: 12px;
        opacity: 0.1;
    }
    
    .promo-section::after {
        font-size: 14px;
        letter-spacing: 15px;
        line-height: 1.8;
    }
    
    /* Ajustar posiciones de emoticonos en móvil */
    .emoji-1 { top: 10%; left: 5%; }
    .emoji-2 { top: 20%; right: 8%; }
    .emoji-3 { bottom: 25%; left: 3%; }
    .emoji-4 { bottom: 15%; right: 7%; }
    .emoji-5 { top: 30%; left: 15%; }
    .emoji-6 { top: 40%; right: 20%; }
    .emoji-7 { bottom: 35%; left: 12%; }
    .emoji-8 { bottom: 25%; right: 15%; }
}

/* ========================================
   BREAKPOINT ADICIONAL PARA MÓVILES MUY PEQUEÑOS
   ======================================== */

/* Móviles muy pequeños (320px y menos) */
@media (max-width: 320px) {
    /* Espaciado mínimo */
    section {
        padding: 30px 0;
    }

    .container {
        padding: 0 10px;
    }

    /* Header ultra compacto */
    header {
        padding: 8px 0;
    }

    .logo img {
        max-height: 40px;
    }

    /* Slider ultra compacto */
    .slider {
        height: 50vh;
        min-height: 300px;
    }

    .slide-content {
        padding: 10px;
    }

    .slide-content h2 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 0.8rem;
    }

    .slider-controls button {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    /* Tipografía ultra compacta */
    h2 {
        font-size: 20px;
    }

    /* Productos y galería */
    .producto-info, .blog-card-content {
        padding: 12px;
    }

    .producto-info h3, .blog-card-content h3 {
        font-size: 16px;
    }

    /* Botones pequeños */
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Blog banner ultra compacto */
    .blog-banner-text h2 {
        font-size: 1.5rem;
    }

    .blog-banner-text p {
        font-size: 0.9rem;
    }

    .blog-banner-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Footer ultra compacto */
    .footer-logo img {
        max-width: 100px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* FAQ ultra compacto */
    .faq-container {
        padding: 12px;
    }

    .faq-question h4 {
        font-size: 13px;
    }

    .faq-answer p {
        font-size: 12px;
    }
} 