/* =======================
   DISPLAYS DIGITALES LED - 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;
}

#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;
}

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

#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;
}

#div-1 .carousel-text-content img {
    align-self: flex-start;
    margin-left: 0 !important;
    margin-right: auto !important;
}

@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;
    }
    #div-1 .carousel-description {
        display: block;
    }
}

#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;
    }
}

#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;
    text-align: left;
    max-width: 100%;
}

@media (min-width: 1024px) {
    #div-1 .carousel-description {
        display: block;
        font-size: calc(1.125rem + 0.5vw);
        margin-bottom: 0;
        max-width: 550px;
    }
}

#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;
    }
}

#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;
}

#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);
}

#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;
    width: 50px;
    min-width: 50px;
}

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

#div-1 .accordion-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#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);
}

#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);
}

#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);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center;
}

#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);
}

#div-1 .carousel-container a#show-content {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

@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;
    }
    #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;
    }
}

@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;
    }
}

@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;
    }
    #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;
    }
}

#div-1 .accordion-item {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#div-1 .accordion-item,
#div-1 .accordion-image,
#div-1 .accordion-label {
    will-change: transform, width;
}

/* =======================
   DIV-2: HERO SECTION
   ======================= */
#div-2 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

#div-2 .hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('../img/pantalla-led-hero-background.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;
}

#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;
}

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

#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;
}

#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;
}

#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), 0 0 20px rgba(184, 115, 51, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#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), 0 0 30px rgba(184, 115, 51, 0.4);
    background-color: #C98444;
    border-color: rgba(255, 255, 255, 0.5);
}

#div-2 .hero-cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

#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;
    animation: bounceButton 0.8s ease-out 0.4s forwards;
}

@keyframes bounceButton {
    0% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

@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 (min-width: 1200px) {
    #div-2 .hero-title {
        font-size: 4rem;
    }
    #div-2 .hero-subtitle {
        font-size: 1.5rem;
    }
}

@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;
}

#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;
}

#div-3 .pas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
    max-width: 1400px;
    margin: 0 auto;
}

#div-3 .pas-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 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: 2px solid transparent;
    text-align: center;
}

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

#div-3 .pas-icon {
    font-size: calc(3rem + 1vw);
    margin-bottom: 20px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#div-3 .pas-icon img {
    width: calc(7.5rem + 2.5vw);
    height: calc(7.5rem + 2.5vw);
    max-width: 250px;
    max-height: 250px;
    object-fit: contain;
    display: block;
}

#div-3 .pas-title {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.25rem + 0.75vw);
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

#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 .section-title.animated.visible {
    opacity: 1 !important;
}

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

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

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

@media (min-width: 600px) {
    #div-3 .pas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
}

@media (min-width: 1024px) {
    #div-3 {
        padding: 80px 0;
    }
    #div-3 .section-title {
        font-size: calc(2rem + 1.5vw);
        margin-bottom: 60px;
    }
    #div-3 .pas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 0 40px;
    }
    #div-3 .pas-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    #div-3 {
        padding: 40px 0;
    }
    #div-3 .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    #div-3 .pas-grid {
        gap: 20px;
        padding: 0 10px;
    }
    #div-3 .pas-card {
        padding: 25px 15px;
    }
}

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

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

#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;
}

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

#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;
    background: linear-gradient(135deg, #ffffff 0%, #FAF3E0 100%);
}

#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: flex;
    justify-content: center;
    align-items: center;
}

#div-4 .benefit-icon img {
    width: calc(7.5rem + 2.5vw);
    height: calc(7.5rem + 2.5vw);
    max-width: 250px;
    max-height: 250px;
    object-fit: contain;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

#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;
}

#div-4 .benefit-description {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #666666;
    line-height: 1.6;
    max-width: 400px;
}

#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 .section-title.animated.visible {
    opacity: 1 !important;
}

#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);
}

@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-4 .benefit-card {
        padding: 25px 15px;
    }
}

/* =======================
   DIV-5: GRID DE SOLUCIONES DESTACADAS
   ======================= */
#div-5 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
}

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

#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;
}

#div-5 .solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
    max-width: 1400px;
    margin: 0 auto;
}

#div-5 .solution-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);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

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

#div-5 .solution-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

#div-5 .solution-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#div-5 .solution-title {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.25rem + 0.75vw);
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 10px;
    line-height: 1.3;
}

#div-5 .solution-specs {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #B87333;
    font-weight: 600;
    margin-bottom: 8px;
}

#div-5 .solution-use {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #666666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

#div-5 .solution-button {
    display: inline-block;
    padding: 14px 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 .solution-button:hover {
    background-color: #B87333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 77, 62, 0.4);
}

#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 .section-title.animated.visible {
    opacity: 1 !important;
}

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

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

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

@media (min-width: 600px) {
    #div-5 .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
    #div-5 .solution-image {
        height: 280px;
    }
}

@media (min-width: 1024px) {
    #div-5 {
        padding: 80px 0;
    }
    #div-5 .section-title {
        font-size: calc(2rem + 1.5vw);
        margin-bottom: 60px;
    }
    #div-5 .solutions-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding: 0 40px;
    }
    #div-5 .solution-image {
        height: 300px;
    }
    #div-5 .solution-content {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    #div-5 {
        padding: 40px 0;
    }
    #div-5 .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    #div-5 .solutions-grid {
        gap: 20px;
        padding: 0 10px;
    }
    #div-5 .solution-image {
        height: 220px;
    }
    #div-5 .solution-content {
        padding: 20px 15px;
    }
}

/* =======================
   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;
}

#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;
}

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

#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;
}

#div-6 .provider-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #FAF3E0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

#div-6 .provider-card:hover .provider-logo {
    transform: scale(1.1);
}

#div-6 .provider-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

#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;
}

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

#div-6 .provider-certifications {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.75rem + 0.25vw);
    color: #B87333;
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

#div-6 .provider-button {
    display: inline-block;
    padding: 12px 28px;
    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);
}

#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 .section-title.animated.visible {
    opacity: 1 !important;
}

#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);
}

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

@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(4, 1fr);
        gap: 40px;
        padding: 0 40px;
    }
    #div-6 .provider-card {
        padding: 40px 30px;
    }
}

@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-6 .provider-card {
        padding: 25px 15px;
    }
}

/* =======================
   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;
}

#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 4px rgba(0, 0, 0, 0.8);
}

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

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

#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;
    font-family: 'Raleway', Arial, sans-serif;
}

#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;
    cursor: pointer;
    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;
}

#div-7 .form-group.toggle-group {
    margin-bottom: 20px;
}

#div-7 .toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

#div-7 .toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

#div-7 .toggle-slider {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    background-color: #ccc;
    border-radius: 26px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

#div-7 .toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#div-7 .toggle-input:checked + .toggle-slider {
    background: linear-gradient(135deg, #1B4D3E 0%, #B87333 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

#div-7 .toggle-input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

#div-7 .toggle-text {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    font-weight: 400;
    color: #1B4D3E;
    line-height: 1.5;
    flex: 1;
}

#div-7 .toggle-text a {
    color: #1B4D3E;
    text-decoration: underline;
    transition: color 0.3s ease;
}

#div-7 .toggle-text a:hover {
    color: #B87333;
}

#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;
}

#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);
    }
}

#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::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-7 .submit-button:hover::before {
    width: 300px;
    height: 300px;
}

#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;
}

#div-7 .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #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: 999;
    transition: all 0.3s ease;
    color: #ffffff;
}

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

#div-7 .whatsapp-float svg {
    width: 32px;
    height: 32px;
}

#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 .section-title.animated.visible {
    opacity: 1 !important;
}

#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);
}

@media (min-width: 600px) {
    #div-7 .quote-form {
        padding: 40px 35px;
    }
    #div-7 .form-group {
        margin-bottom: 30px;
    }
}

@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 .form-container {
        padding: 0 40px;
    }
    #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 .form-group {
        margin-bottom: 20px;
    }
    #div-7 .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

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

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

#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;
}

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

#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 cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

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

#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;
}

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

#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;
}

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

#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);
    transition: all 0.3s ease;
}

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

#div-8 .testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(27, 77, 62, 0.3);
    border-color: #1B4D3E;
}

#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;
}

#div-8 .brands-section {
    margin-top: 60px;
    padding: 0 15px;
}

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

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

#div-8 .brand-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

#div-8 .brand-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 4px 20px rgba(27, 77, 62, 0.2);
    border-color: #1B4D3E;
}

#div-8 .brand-logo {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(1rem + 0.5vw);
    font-weight: 700;
    color: #1B4D3E;
    text-align: center;
}

#div-8 .counter-section {
    margin-top: 50px;
    padding: 0 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#div-8 .counter-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

#div-8 .counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(27, 77, 62, 0.2);
    border-color: #B87333;
}

#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(0.875rem + 0.5vw);
    color: #666666;
    line-height: 1.4;
}

#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 .section-title.animated.visible {
    opacity: 1 !important;
}

#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 .brand-item.animated {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-out;
}

#div-8 .brand-item.animated.move-up {
    transform: translateY(30px);
}

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

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

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

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

#div-8 .counter-item.animated.escalar.visible {
    opacity: 1 !important;
}

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

@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 .testimonial-card {
        padding: 40px 30px;
    }
    #div-8 .brands-grid {
        gap: 30px;
    }
}

@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-8 .testimonial-card {
        padding: 25px 15px;
    }
    #div-8 .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* =======================
   DIV-9: CÓMO FUNCIONA
   ======================= */
#div-9 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
}

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

#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;
}

#div-9 .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

#div-9 .step-card {
    background: #ffffff;
    border-radius: 20px;
    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);
    position: relative;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

#div-9 .step-number {
    width: 80px;
    height: 80px;
    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(2rem + 1vw);
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3);
    transition: all 0.3s ease;
}

#div-9 .step-card:hover .step-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(27, 77, 62, 0.5);
}

#div-9 .step-title {
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: calc(1.25rem + 0.75vw);
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 15px;
    line-height: 1.3;
}

#div-9 .step-description {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #666666;
    line-height: 1.6;
    max-width: 400px;
}

#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 .section-title.animated.visible {
    opacity: 1 !important;
}

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

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

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

@media (min-width: 600px) {
    #div-9 .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (min-width: 1024px) {
    #div-9 {
        padding: 80px 0;
    }
    #div-9 .section-title {
        font-size: calc(2rem + 1.5vw);
        margin-bottom: 60px;
    }
    #div-9 .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
        padding: 0 40px;
    }
    #div-9 .step-card {
        padding: 40px 30px;
    }
    #div-9 .step-number {
        width: 100px;
        height: 100px;
        font-size: calc(2.5rem + 1vw);
    }
}

@media (max-width: 480px) {
    #div-9 {
        padding: 40px 0;
    }
    #div-9 .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    #div-9 .steps-grid {
        gap: 25px;
        padding: 0 10px;
    }
    #div-9 .step-card {
        padding: 25px 15px;
    }
    #div-9 .step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* =======================
   DIV-10: COBERTURA GEOGRÁFICA
   ======================= */
#div-10 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
    background: linear-gradient(135deg, #1B4D3E 0%, #B87333 100%);
}

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

#div-10 .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);
}

#div-10 .cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 15px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

#div-10 .city-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    width: 100%;
    min-height: 240px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    overflow: visible;
}

#div-10 .city-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    border-color: #FAF3E0;
}

#div-10 .city-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

#div-10 .city-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#div-10 .city-logo-fallback {
    display: none;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1B4D3E 0%, #B87333 100%);
    border-radius: 50%;
    color: #ffffff;
    font-family: 'poiret_oneregular', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

#div-10 .city-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;
    flex-shrink: 0;
    word-wrap: break-word;
    width: 100%;
}

#div-10 .city-info {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #666666;
    line-height: 1.5;
    margin-bottom: 12px;
    flex-shrink: 0;
    word-wrap: break-word;
    width: 100%;
}

#div-10 .city-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1B4D3E 0%, #B87333 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: auto;
    flex-shrink: 0;
    white-space: nowrap;
}

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

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

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

#div-10 .section-title.animated.visible {
    opacity: 1 !important;
}

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

#div-10 .city-card.animated.move-up {
    transform: translateY(30px);
}

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

@media (min-width: 600px) {
    #div-10 .cities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    #div-10 .city-card {
        min-height: 260px;
        padding: 30px 25px;
    }
    #div-10 .city-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    #div-10 {
        padding: 80px 0;
    }
    #div-10 .section-title {
        font-size: calc(2rem + 1.5vw);
        margin-bottom: 60px;
    }
    #div-10 .cities-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 25px;
        padding: 0 40px;
    }
    #div-10 .city-card {
        min-height: 280px;
        padding: 35px 25px;
    }
    #div-10 .city-icon {
        width: 110px;
        height: 110px;
        margin-bottom: 22px;
    }
}

@media (max-width: 480px) {
    #div-10 {
        padding: 40px 0;
    }
    #div-10 .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    #div-10 .cities-grid {
        gap: 18px;
        padding: 0 15px;
    }
    #div-10 .city-card {
        min-height: 220px;
        padding: 22px 18px;
    }
    #div-10 .city-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
}

/* =======================
   DIV-11: PLACEHOLDER
   ======================= */
#div-11 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
}

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

/* =======================
   DIV-12: PLACEHOLDER
   ======================= */
#div-12 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
}

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

/* =======================
   DIV-13: FAQ CON SCHEMA MARKUP
   ======================= */
#div-13 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
}

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

#div-13 .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;
}

#div-13 .faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

#div-13 .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-13 .faq-item.active {
    border-color: #1B4D3E;
    box-shadow: 0 4px 20px rgba(27, 77, 62, 0.2);
}

#div-13 .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-13 .faq-item:hover .faq-question {
    color: #B87333;
}

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

#div-13 .faq-icon {
    font-size: calc(1.25rem + 0.5vw);
    color: #B87333;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

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

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

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

#div-13 .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;
}

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

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

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

#div-13 .section-title.animated.visible {
    opacity: 1 !important;
}

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

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

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

@media (min-width: 1024px) {
    #div-13 {
        padding: 80px 0;
    }
    #div-13 .section-title {
        font-size: calc(2rem + 1.5vw);
        margin-bottom: 60px;
    }
    #div-13 .faq-container {
        padding: 0 40px;
    }
    #div-13 .faq-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    #div-13 {
        padding: 40px 0;
    }
    #div-13 .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    #div-13 .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    #div-13 .faq-answer {
        padding: 0 20px;
    }
    #div-13 .faq-item.active .faq-answer {
        padding: 0 20px 15px 20px;
    }
}


