/* =======================
   MERCHANDISING EMPRESARIAL - ESTILOS ESPECÍFICOS
   Mobile-First Approach
   ======================= */

/* =======================
   DIV-1: CAROUSEL ACORDEÓN INTERACTIVO
   ======================= */
#div-1 {
    width: 100%;
    height: 100vh;
    background-color: #FAF3E0;
    background-size: cover;
    background-position: center;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

#div-1.visible {
    display: flex;
}

/* Contenedor del Carousel */
#div-1 .carousel-container {
    width: 100%;
    max-width: 2400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px 20px;
    box-sizing: border-box;
    gap: 30px;
}

/* Layout de dos columnas en desktop */
@media (min-width: 1024px) {
    #div-1 .carousel-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding: 60px 40px;
    }
}

/* Contenido de Texto a la Izquierda */
#div-1 .carousel-text-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    z-index: 2;
    order: 1;
}

/* Alineación específica para imágenes dentro del carousel-text-content */
#div-1 .carousel-text-content img {
    align-self: flex-start;
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* Tamaño de imagen en vista móvil */
@media (max-width: 768px) {
    #div-1 .carousel-text-content img {
        width: 120px !important;
        height: 120px !important;
    }
}

@media (min-width: 1024px) {
    #div-1 .carousel-text-content {
        width: 30%;
        max-width: 600px;
        order: 0;
    }

    /* Mostrar descripción solo en desktop */
    #div-1 .carousel-description {
        display: block;
    }
}

/* Título Principal */
#div-1 .carousel-heading {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.5rem + 1.5vw);
    font-weight: 700;
    line-height: 1.2;
    color: #1B4D3E;
    margin-bottom: 20px;
    display: block;
    text-align: left;
}

@media (min-width: 1024px) {
    #div-1 .carousel-heading {
        font-size: calc(1.875rem + 1.5vw);
        margin-bottom: 25px;
    }
}

/* Descripción */
#div-1 .carousel-description {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(1rem + 0.5vw);
    line-height: 1.6;
    color: #666666;
    margin-bottom: 30px;
    display: none; /* Oculto por defecto en móvil */
    text-align: left;
    max-width: 100%;
}

/* Mostrar descripción solo en desktop (1024px y superior) */
@media (min-width: 1024px) {
    #div-1 .carousel-description {
        display: block; /* Visible en desktop */
        font-size: calc(1.125rem + 0.5vw);
        margin-bottom: 0;
        max-width: 550px;
    }
}

/* Wrapper del Acordeón */
#div-1 .carousel-accordion-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
}

@media (min-width: 1024px) {
    #div-1 .carousel-accordion-wrapper {
        width: 70%;
        order: 1;
    }
}

/* Acordeón de Imágenes */
#div-1 .carousel-accordion {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    height: 500px;
    padding: 20px;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Ocultar scrollbar pero mantener funcionalidad */
#div-1 .carousel-accordion::-webkit-scrollbar {
    height: 8px;
}

#div-1 .carousel-accordion::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

#div-1 .carousel-accordion::-webkit-scrollbar-thumb {
    background: rgba(27, 77, 62, 0.5);
    border-radius: 4px;
}

#div-1 .carousel-accordion::-webkit-scrollbar-thumb:hover {
    background: rgba(27, 77, 62, 0.7);
}

/* Item del Acordeón */
#div-1 .accordion-item {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Ancho inicial (inactivo) */
    width: 50px;
    min-width: 50px;
}

/* Estado activo (hover) */
#div-1 .accordion-item.active,
#div-1 .accordion-item:hover {
    width: 450px;
    min-width: 450px;
}

/* Wrapper de la Imagen */
#div-1 .accordion-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Imagen de Fondo */
#div-1 .accordion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

#div-1 .accordion-item:hover .accordion-image {
    transform: scale(1.05);
}

/* Overlay Oscuro para Legibilidad */
#div-1 .accordion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: background 0.3s ease;
}

#div-1 .accordion-item:hover .accordion-overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* Etiqueta de Texto */
#div-1 .accordion-label {
    position: absolute;
    color: #ffffff;
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    /* Estado inactivo: vertical, rotado 90 grados, centrado verticalmente */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center;
}

/* Estado activo: horizontal, en la parte inferior centrado */
#div-1 .accordion-item.active .accordion-label,
#div-1 .accordion-item:hover .accordion-label {
    top: auto;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
}

/* Botón "Aqui" - Oculto en todas las vistas */
#div-1 .carousel-container a#show-content {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Responsive: Tablet */
@media (min-width: 600px) and (max-width: 1023px) {
    #div-1 .carousel-text-content {
        text-align: center;
        align-items: center;
    }

    #div-1 .carousel-heading {
        text-align: center;
    }

    /* Descripción oculta en tablet (menor a 1024px) */
    #div-1 .carousel-description {
        display: none;
    }

    #div-1 .carousel-accordion {
        gap: 12px;
        height: 500px;
    }

    #div-1 .accordion-item {
        width: 80px;
        min-width: 80px;
    }

    #div-1 .accordion-item.active,
    #div-1 .accordion-item:hover {
        width: 450px;
        min-width: 450px;
    }

    #div-1 .accordion-label {
        font-size: 1.25rem;
    }
}

/* Responsive: Desktop */
@media (min-width: 1024px) {
    #div-1 .carousel-text-content {
        text-align: left;
        align-items: flex-start;
    }

    #div-1 .carousel-heading,
    #div-1 .carousel-description {
        text-align: left;
    }

    #div-1 .carousel-accordion {
        gap: 16px;
        height: 550px;
        padding: 40px;
    }

    #div-1 .accordion-item {
        width: 100px;
        min-width: 100px;
    }

    #div-1 .accordion-item.active,
    #div-1 .accordion-item:hover {
        width: 500px;
        min-width: 500px;
    }

    #div-1 .accordion-label {
        font-size: 1.5rem;
    }

    #div-1 .accordion-item.active .accordion-label,
    #div-1 .accordion-item:hover .accordion-label {
        bottom: 30px;
    }
}

/* Responsive: Móviles Pequeños */
@media (max-width: 480px) {
    #div-1 {
        padding: 10px;
    }

    #div-1 .carousel-container {
        padding: 20px 15px;
        gap: 25px;
    }

    #div-1 .carousel-text-content {
        text-align: center;
        align-items: center;
    }

    #div-1 .carousel-heading {
        font-size: calc(1.125rem + 1.5vw);
        text-align: center;
    }

    /* Descripción oculta en móviles pequeños (menor a 1024px) */
    #div-1 .carousel-description {
        display: none !important;
    }

    #div-1 .carousel-accordion {
        height: 400px;
        gap: 6px;
        padding: 10px;
    }

    #div-1 .accordion-item {
        width: 42px;
        min-width: 42px;
        border-radius: 15px;
    }

    #div-1 .accordion-item.active,
    #div-1 .accordion-item:hover {
        width: 350px;
        min-width: 350px;
    }

    #div-1 .accordion-label {
        font-size: 1rem;
    }

    #div-1 .accordion-item.active .accordion-label,
    #div-1 .accordion-item:hover .accordion-label {
        bottom: 20px;
    }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 360px) {
    #div-1 .carousel-accordion {
        height: 350px;
    }

    #div-1 .accordion-item {
        width: 40px;
        min-width: 40px;
    }

    #div-1 .accordion-item.active,
    #div-1 .accordion-item:hover {
        width: 280px;
        min-width: 280px;
    }

    #div-1 .accordion-label {
        font-size: 0.9rem;
    }
}

/* Prevenir selección de texto durante la animación */
#div-1 .accordion-item {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Mejora de rendimiento */
#div-1 .accordion-item,
#div-1 .accordion-image,
#div-1 .accordion-label {
    will-change: transform, width;
}

/* =======================
   DIV-2: HERO SECTION FULL-SCREEN
   ======================= */
#div-2 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: transparent !important; /* Override otros estilos */
}

#div-2 .hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Video/Fondo de Hero */
#div-2 .hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('/img/Merchandising-Colombia.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1B4D3E;
    display: block !important;
    min-height: 100vh;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Overlay oscuro para legibilidad */
#div-2 .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 77, 62, 0.85) 0%, rgba(184, 115, 51, 0.75) 100%);
    z-index: 1;
}

/* Contenido del Hero */
#div-2 .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    text-align: center;
    color: #ffffff;
}

/* H1 Principal */
#div-2 .hero-title {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.5rem + 2vw);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

/* Subtítulo */
#div-2 .hero-subtitle {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 1vw);
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    color: #FAF3E0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Botón CTA Principal */
#div-2 .hero-cta-button {
    display: inline-block !important;
    padding: 18px 40px;
    background-color: #B87333;
    color: #ffffff;
    text-decoration: none;
    font-size: calc(1rem + 0.5vw);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1;
}

#div-2 .hero-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#div-2 .hero-cta-button:hover::before {
    width: 300px;
    height: 300px;
}

#div-2 .hero-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.6);
    background-color: #A0662A;
}

/* Animaciones de entrada */
#div-2 .hero-title.animated {
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease-out;
}

#div-2 .hero-title.animated.move-up {
    transform: translateY(50px);
}

#div-2 .hero-title.animated.move-up.visible {
    opacity: 1;
    transform: translateY(0);
}

#div-2 .hero-subtitle.animated {
    opacity: 0;
    transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.4s ease-out;
    transition-delay: 0.2s;
}

#div-2 .hero-subtitle.animated.move-up {
    transform: translateY(30px);
}

#div-2 .hero-subtitle.animated.move-up.visible {
    opacity: 1;
    transform: translateY(0);
}

#div-2 .hero-cta-button.animated {
    opacity: 0;
    transition: transform 1.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.6s ease-out;
    transition-delay: 0.4s;
}

#div-2 .hero-cta-button.animated.escalar.bounce-in {
    transform: scale(0.8);
}

#div-2 .hero-cta-button.animated.escalar.bounce-in.visible {
    opacity: 1 !important;
    transform: scale(1) !important;
    visibility: visible !important;
    display: inline-block !important;
}

/* Responsive: Tablet y Desktop */
@media (min-width: 769px) {
    #div-2 .hero-content {
        padding: 40px;
    }

    #div-2 .hero-title {
        font-size: calc(2.5rem + 2vw);
        margin-bottom: 30px;
    }

    #div-2 .hero-subtitle {
        font-size: calc(1.125rem + 1vw);
        margin-bottom: 40px;
    }

    #div-2 .hero-cta-button {
        padding: 22px 50px;
        font-size: calc(1.125rem + 0.5vw);
    }
}

@media (max-width: 480px) {
    #div-2 .hero-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }

    #div-2 .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    #div-2 .hero-cta-button {
        padding: 16px 32px;
        font-size: 0.95rem;
        width: 90%;
        max-width: 300px;
    }
}

/* =======================
   DIV-3: PAS (Problem – Agitate – Solution)
   ======================= */
#div-3 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
}

#div-3 .content {
    position: relative;
    z-index: 2;
}

/* Título de Sección */
#div-3 .section-title {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.5rem + 1.5vw);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1B4D3E;
    padding: 0 20px;
}

/* Grid de Problemas */
#div-3 .problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tarjeta de Problema */
#div-3 .problem-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid #E6220D;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

#div-3 .problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 34, 13, 0.3);
}

/* Icono de Problema */
#div-3 .problem-icon {
    font-size: calc(4rem + 2vw);
    color: #E6220D;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(4rem + 2vw);
    height: calc(4rem + 2vw);
    min-width: 80px;
    min-height: 80px;
}

#div-3 .problem-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Contenido del Problema */
#div-3 .problem-content {
    flex: 1;
}

#div-3 .problem-title {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.125rem + 0.5vw);
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 10px;
}

#div-3 .problem-description {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #666666;
    line-height: 1.6;
}

/* Animaciones */
#div-3 .section-title.animated {
    opacity: 0;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
}

#div-3 .section-title.animated.escalar.bounce-in {
    transform: scale(0.9);
}

#div-3 .section-title.animated.escalar.bounce-in.visible {
    opacity: 1 !important;
    transform: scale(1);
}

#div-3 .problem-card.animated {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-out;
}

#div-3 .problem-card.animated.move-up {
    transform: translateY(40px);
}

#div-3 .problem-card.animated.move-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (min-width: 1024px) {
    #div-3 {
        padding: 80px 0;
    }

    #div-3 .section-title {
        font-size: calc(2rem + 1.5vw);
        margin-bottom: 60px;
    }

    #div-3 .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    #div-3 {
        padding: 40px 0;
    }

    #div-3 .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    #div-3 .problems-grid {
        gap: 20px;
        padding: 0 10px;
    }
}

/* =======================
   DIV-4: BENEFICIOS CLAVE (4 TARJETAS)
   ======================= */
#div-4 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
    background: linear-gradient(135deg, #FAF3E0 0%, #f9f4e8 100%);
}

#div-4 .content {
    position: relative;
    z-index: 2;
}

/* Título de Sección */
#div-4 .section-title {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.5rem + 1.5vw);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1B4D3E;
    padding: 0 20px;
}

/* Grid de Beneficios */
#div-4 .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tarjeta de Beneficio */
#div-4 .benefit-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#div-4 .benefit-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 25px rgba(27, 77, 62, 0.3);
    border-color: #1B4D3E;
}

/* Icono del Beneficio */
#div-4 .benefit-icon {
    font-size: calc(3rem + 1vw);
    margin-bottom: 20px;
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

#div-4 .benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Título del Beneficio */
#div-4 .benefit-title {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.125rem + 0.5vw);
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Descripción del Beneficio */
#div-4 .benefit-description {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #666666;
    line-height: 1.6;
}

/* Animaciones */
#div-4 .section-title.animated {
    opacity: 0;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
}

#div-4 .section-title.animated.escalar.bounce-in {
    transform: scale(0.9);
}

#div-4 .section-title.animated.escalar.bounce-in.visible {
    opacity: 1 !important;
    transform: scale(1);
}

#div-4 .benefit-card.animated {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-out;
}

#div-4 .benefit-card.animated.move-up {
    transform: translateY(40px);
}

#div-4 .benefit-card.animated.move-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (min-width: 600px) {
    #div-4 .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    #div-4 {
        padding: 80px 0;
    }

    #div-4 .section-title {
        font-size: calc(2rem + 1.5vw);
        margin-bottom: 60px;
    }

    #div-4 .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding: 0 40px;
    }

    #div-4 .benefit-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    #div-4 {
        padding: 40px 0;
    }

    #div-4 .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    #div-4 .benefits-grid {
        gap: 20px;
        padding: 0 10px;
    }
}

/* =======================
   DIV-5: GRID DE PRODUCTOS ESTRELLA (10 CARDS)
   ======================= */
#div-5 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
    background: #ffffff;
}

#div-5 .content {
    position: relative;
    z-index: 2;
}

/* Título de Sección */
#div-5 .section-title {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.5rem + 1.5vw);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1B4D3E;
    padding: 0 20px;
}

/* Grid de Productos */
#div-5 .products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Tarjeta de Producto */
#div-5 .product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

#div-5 .product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 30px rgba(27, 77, 62, 0.3);
    border-color: #1B4D3E;
}

/* Imagen del Producto */
#div-5 .product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1B4D3E 0%, #B87333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

#div-5 .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#div-5 .product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Contenido del Producto */
#div-5 .product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Nombre del Producto */
#div-5 .product-name {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.125rem + 0.5vw);
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Rango de Precios */
#div-5 .product-price {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(1rem + 0.25vw);
    color: #B87333;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Botón Ver Proveedor */
#div-5 .product-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1B4D3E;
    color: #ffffff;
    text-decoration: none;
    font-size: calc(0.875rem + 0.25vw);
    font-weight: 600;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#div-5 .product-button:hover {
    background-color: #B87333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 77, 62, 0.4);
}

/* Animaciones */
#div-5 .section-title.animated {
    opacity: 0;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
}

#div-5 .section-title.animated.escalar.bounce-in {
    transform: scale(0.9);
}

#div-5 .section-title.animated.escalar.bounce-in.visible {
    opacity: 1 !important;
    transform: scale(1);
}

#div-5 .product-card.animated {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-out;
}

#div-5 .product-card.animated.move-up {
    transform: translateY(40px);
}

#div-5 .product-card.animated.move-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (min-width: 600px) {
    #div-5 .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    #div-5 {
        padding: 80px 0;
    }

    #div-5 .section-title {
        font-size: calc(2rem + 1.5vw);
        margin-bottom: 60px;
    }

    #div-5 .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    #div-5 {
        padding: 40px 0;
    }

    #div-5 .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    #div-5 .products-grid {
        gap: 20px;
        padding: 0 10px;
    }
}

/* =======================
   DIV-6: PROVEEDORES ESPECIALIZADOS
   ======================= */
#div-6 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
    background: linear-gradient(135deg, #FAF3E0 0%, #f9f4e8 100%);
}

#div-6 .content {
    position: relative;
    z-index: 2;
}

/* Título de Sección */
#div-6 .section-title {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.5rem + 1.5vw);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1B4D3E;
    padding: 0 20px;
}

/* Grid de Proveedores */
#div-6 .providers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Tarjeta de Proveedor */
#div-6 .provider-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

#div-6 .provider-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 30px rgba(27, 77, 62, 0.3);
    border-color: #1B4D3E;
}

/* Logo del Proveedor */
#div-6 .provider-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B4D3E 0%, #B87333 100%);
    overflow: hidden;
}

#div-6 .provider-logo img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

/* Nombre del Proveedor */
#div-6 .provider-name {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.125rem + 0.5vw);
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 10px;
}

/* Ciudades de Entrega */
#div-6 .provider-cities {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #666666;
    margin-bottom: 10px;
}

/* Cantidad de Referencias */
#div-6 .provider-references {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #B87333;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Botón Ver Catálogo */
#div-6 .provider-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1B4D3E;
    color: #ffffff;
    text-decoration: none;
    font-size: calc(0.875rem + 0.25vw);
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#div-6 .provider-button:hover {
    background-color: #B87333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 77, 62, 0.4);
}

/* Animaciones */
#div-6 .section-title.animated {
    opacity: 0;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
}

#div-6 .section-title.animated.escalar.bounce-in {
    transform: scale(0.9);
}

#div-6 .section-title.animated.escalar.bounce-in.visible {
    opacity: 1 !important;
    transform: scale(1);
}

#div-6 .provider-card.animated {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-out;
}

#div-6 .provider-card.animated.move-up {
    transform: translateY(40px);
}

#div-6 .provider-card.animated.move-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (min-width: 600px) {
    #div-6 .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    #div-6 {
        padding: 80px 0;
    }

    #div-6 .section-title {
        font-size: calc(2rem + 1.5vw);
        margin-bottom: 60px;
    }

    #div-6 .providers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    #div-6 {
        padding: 40px 0;
    }

    #div-6 .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    #div-6 .providers-grid {
        gap: 20px;
        padding: 0 10px;
    }
}

/* =======================
   DIV-7: FORMULARIO DE COTIZACIÓN
   ======================= */
#div-7 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
    background: linear-gradient(135deg, #1B4D3E 0%, #B87333 100%);
}

#div-7 .content {
    position: relative;
    z-index: 2;
}

/* Título de Sección */
#div-7 .section-title {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.5rem + 1.5vw);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    padding: 0 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Contenedor del Formulario */
#div-7 .form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

#div-7 .quote-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Grupo de Campos */
#div-7 .form-group {
    margin-bottom: 25px;
}

#div-7 .form-group label {
    display: block;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    font-weight: 600;
    color: #1B4D3E;
    margin-bottom: 8px;
}

#div-7 .form-group input,
#div-7 .form-group textarea,
#div-7 .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #333333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-sizing: border-box;
}

#div-7 .form-group input:focus,
#div-7 .form-group textarea:focus,
#div-7 .form-group select:focus {
    outline: none;
    border-color: #1B4D3E;
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.1);
}

#div-7 .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Checkbox */
#div-7 .form-group.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

#div-7 .form-group.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    width: 20px;
    height: 20px;
    accent-color: #1B4D3E;
}

#div-7 .form-group.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    flex: 1;
    line-height: 1.5;
}

/* Mensaje de Error */
#div-7 .error-message {
    color: #E6220D;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
    font-family: 'Raleway', Arial, sans-serif;
}

#div-7 .form-group.error .error-message {
    display: block;
}

#div-7 .form-group.error input,
#div-7 .form-group.error textarea,
#div-7 .form-group.error select {
    border-color: #E6220D;
}

/* Mensaje de Éxito */
#div-7 .success-message {
    background: #4CAF50;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Raleway', Arial, sans-serif;
    display: none;
}

#div-7 .success-message.show {
    display: block;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botón de Envío */
#div-7 .submit-button {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #1B4D3E 0%, #B87333 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1rem + 0.5vw);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(27, 77, 62, 0.4);
    position: relative;
    overflow: hidden;
}

#div-7 .submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(27, 77, 62, 0.6);
}

#div-7 .submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* WhatsApp Flotante */
#div-7 .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
    font-size: 2rem;
}

#div-7 .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Animaciones */
#div-7 .section-title.animated {
    opacity: 0;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
}

#div-7 .section-title.animated.escalar.bounce-in {
    transform: scale(0.9);
}

#div-7 .section-title.animated.escalar.bounce-in.visible {
    opacity: 1 !important;
    transform: scale(1);
}

#div-7 .quote-form.animated {
    opacity: 0;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
}

#div-7 .quote-form.animated.move-up {
    transform: translateY(40px);
}

#div-7 .quote-form.animated.move-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (min-width: 1024px) {
    #div-7 {
        padding: 80px 0;
    }

    #div-7 .section-title {
        font-size: calc(2rem + 1.5vw);
        margin-bottom: 50px;
        padding: 0 30px;
    }

    #div-7 .quote-form {
        padding: 50px 45px;
    }
}

@media (max-width: 480px) {
    #div-7 {
        padding: 40px 0;
    }

    #div-7 .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    #div-7 .quote-form {
        padding: 25px 15px;
    }

    #div-7 .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* =======================
   DIV-8: PRUEBA SOCIAL
   ======================= */
#div-8 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
    background: #ffffff;
}

#div-8 .content {
    position: relative;
    z-index: 2;
}

/* Título de Sección */
#div-8 .section-title {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.5rem + 1.5vw);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1B4D3E;
    padding: 0 20px;
}

/* Grid de Testimonios */
#div-8 .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

/* Tarjeta de Testimonio */
#div-8 .testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

#div-8 .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(27, 77, 62, 0.2);
    border-color: #B87333;
}

/* Comilla de Apertura */
#div-8 .testimonial-quote {
    font-size: calc(4rem + 2vw);
    font-family: 'poiret_oneregular', Arial, sans-serif;
    color: #B87333;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.3;
}

/* Rating */
#div-8 .testimonial-rating {
    color: #FFD700;
    font-size: calc(1rem + 0.5vw);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Texto del Testimonio */
#div-8 .testimonial-text {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #333333;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

/* Autor del Testimonio */
#div-8 .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #FAF3E0;
}

/* Avatar */
#div-8 .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B4D3E 0%, #B87333 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.25rem + 0.5vw);
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
    border: 3px solid #FAF3E0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#div-8 .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Info del Autor */
#div-8 .testimonial-info {
    flex: 1;
}

#div-8 .testimonial-name {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1rem + 0.25vw);
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 5px;
}

#div-8 .testimonial-role {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.75rem + 0.25vw);
    color: #666666;
}

/* Sección de Logos */
#div-8 .brands-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#div-8 .brands-title {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.25rem + 0.75vw);
    font-weight: 700;
    text-align: center;
    color: #1B4D3E;
    margin-bottom: 30px;
}

#div-8 .brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

#div-8 .brand-item {
    background: #FAF3E0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1rem + 0.5vw);
    font-weight: 700;
    color: #1B4D3E;
    transition: all 0.3s ease;
}

#div-8 .brand-item:hover {
    background: #1B4D3E;
    color: #ffffff;
    transform: translateY(-5px);
}

/* Contador */
#div-8 .counter-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #FAF3E0 0%, #f9f4e8 100%);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

#div-8 .counter-number {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(2.5rem + 2vw);
    font-weight: 700;
    color: #1B4D3E;
    line-height: 1.2;
    margin-bottom: 10px;
    display: block;
}

#div-8 .counter-label {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(1rem + 0.5vw);
    color: #666666;
    line-height: 1.4;
}

/* Animaciones */
#div-8 .section-title.animated {
    opacity: 0;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
}

#div-8 .section-title.animated.escalar.bounce-in {
    transform: scale(0.9);
}

#div-8 .section-title.animated.escalar.bounce-in.visible {
    opacity: 1 !important;
    transform: scale(1);
}

#div-8 .testimonial-card.animated {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-out;
}

#div-8 .testimonial-card.animated.move-up {
    transform: translateY(40px);
}

#div-8 .testimonial-card.animated.move-up.visible {
    opacity: 1;
    transform: translateY(0);
}

#div-8 .counter-section.animated {
    opacity: 0;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
}

#div-8 .counter-section.animated.escalar.scale {
    transform: scale(0.8);
}

#div-8 .counter-section.animated.escalar.scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (min-width: 600px) {
    #div-8 .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    #div-8 .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    #div-8 {
        padding: 80px 0;
    }

    #div-8 .section-title {
        font-size: calc(2rem + 1.5vw);
        margin-bottom: 60px;
    }

    #div-8 .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 0 40px;
    }

    #div-8 .brands-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    #div-8 {
        padding: 40px 0;
    }

    #div-8 .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    #div-8 .testimonials-grid {
        gap: 25px;
        padding: 0 10px;
    }
}

/* =======================
   DIV-9: FAQ
   ======================= */
#div-9 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
    background: linear-gradient(135deg, #FAF3E0 0%, #f9f4e8 100%);
}

#div-9 .content {
    position: relative;
    z-index: 2;
}

/* Título de Sección */
#div-9 .section-title {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.5rem + 1.5vw);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1B4D3E;
    padding: 0 20px;
}

/* Contenedor de FAQ */
#div-9 .faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Item de FAQ */
#div-9 .faq-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

#div-9 .faq-item.active {
    border-color: #1B4D3E;
    box-shadow: 0 4px 20px rgba(27, 77, 62, 0.2);
}

/* Pregunta */
#div-9 .faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1rem + 0.5vw);
    font-weight: 600;
    color: #1B4D3E;
    transition: all 0.3s ease;
}

#div-9 .faq-item:hover .faq-question {
    color: #B87333;
}

#div-9 .faq-item.active .faq-question {
    color: #1B4D3E;
    background: linear-gradient(135deg, #FAF3E0 0%, #f9f4e8 100%);
}

/* Icono de Expansión */
#div-9 .faq-icon {
    font-size: calc(1.25rem + 0.5vw);
    color: #B87333;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

#div-9 .faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #1B4D3E;
}

/* Respuesta */
#div-9 .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

#div-9 .faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 20px 25px;
}

#div-9 .faq-answer-content {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #666666;
    line-height: 1.7;
    padding-top: 15px;
}

/* Animaciones */
#div-9 .section-title.animated {
    opacity: 0;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
}

#div-9 .section-title.animated.escalar.bounce-in {
    transform: scale(0.9);
}

#div-9 .section-title.animated.escalar.bounce-in.visible {
    opacity: 1 !important;
    transform: scale(1);
}

#div-9 .faq-item.animated {
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease-out;
}

#div-9 .faq-item.animated.move-up {
    transform: translateY(20px);
}

#div-9 .faq-item.animated.move-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (min-width: 1024px) {
    #div-9 {
        padding: 80px 0;
    }

    #div-9 .section-title {
        font-size: calc(2rem + 1.5vw);
        margin-bottom: 60px;
    }

    #div-9 .faq-container {
        padding: 0 40px;
    }

    #div-9 .faq-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    #div-9 {
        padding: 40px 0;
    }

    #div-9 .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    #div-9 .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    #div-9 .faq-answer {
        padding: 0 20px;
    }

    #div-9 .faq-item.active .faq-answer {
        padding: 0 20px 15px 20px;
    }
}

/* Animaciones comunes */
.animated {
    opacity: 0;
}

.animated.move-up {
    transform: translateY(40px);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-out;
}

.animated.move-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animated.escalar.bounce-in {
    transform: scale(0.9);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
}

.animated.escalar.bounce-in.visible {
    opacity: 1 !important;
    transform: scale(1);
}

.animated.visible {
    opacity: 1 !important;
}

