/* Inicio div-1.css */
/* =======================
   DIV-1: CAROUSEL ACORDEÓN INTERACTIVO
   Mobile-First Approach
   ======================= */

#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); /* Reducido 25% desde calc(2rem + 2vw) */
    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); /* Reducido 25% desde calc(2.5rem + 2vw) */
        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); /* Reducido 25% desde calc(1.5rem + 2vw) */
        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;
}

/* Fin div-1.css */

/* Inicio div-2.css */
/* =======================
   DIV-2: HERO SECTION
   Mobile-First Approach
   ======================= */

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

/* Video/Fondo de Hero */
#div-2 .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#div-2 .hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background-image: url('img/avatar-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 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: #C88444;
}

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

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

/* Animación bounce personalizada que mantiene el estado final */
@keyframes bounceButton {
    0% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Asegurar que después de la animación el botón permanezca visible */
#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;
}

/* Forzar visibilidad después de que termine la animación */
#div-2 .hero-cta-button.animated.escalar.bounce-in.visible[style*="opacity"] {
    opacity: 1 !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);
    }
}

/* Responsive: Desktop Grande */
@media (min-width: 1200px) {
    #div-2 .hero-title {
        font-size: 4rem;
    }

    #div-2 .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Ajustes para móviles pequeños */
@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;
    }
}

/* Fin div-2.css */

/* Inicio div-3.css */
/* =======================
   DIV-3: SECCIÓN PAS (PROBLEM - AGITATE - SOLUTION)
   Mobile-First Approach
   ======================= */

#div-3 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
    background: linear-gradient(135deg, #FAF3E0 0%, #ffffff 100%);
}

#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 PAS */
#div-3 .pas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tarjeta PAS */
#div-3 .pas-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-3 .pas-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 25px rgba(230, 34, 13, 0.3);
    border-color: #E6220D;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

/* Icono PAS */
#div-3 .pas-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-3 .pas-icon img {
    width: calc(6rem + 2vw);
    height: calc(6rem + 2vw);
    object-fit: contain;
    display: block;
}

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

/* Título PAS */
#div-3 .pas-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 PAS */
#div-3 .pas-description {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #666666;
    line-height: 1.6;
    max-width: 400px;
}

/* Animaciones de entrada */
#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);
}

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

/* Asegurar que el título permanezca visible una vez animado */
#div-3 .section-title.animated.visible {
    opacity: 1 !important;
}

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

/* Responsive: Desktop (3 columnas) */
@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;
    }
}

/* Ajustes para móviles pequeños */
@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;
    }
}

/* Fin div-3.css */

/* Inicio div-4.css */
/* =======================
   DIV-4: CASOS DE ÉXITO / PORTFOLIO
   Mobile-First Approach
   ======================= */

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

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

/* 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;
    position: relative;
}

#div-4 .benefit-icon img {
    width: calc(6rem + 2vw);
    height: calc(6rem + 2vw);
    object-fit: contain;
    display: 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;
    max-width: 400px;
}

/* Animaciones de entrada */
#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);
}

/* Asegurar que el título permanezca visible una vez animado */
#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);
}

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

/* Responsive: Desktop */
@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(2, 1fr);
        gap: 40px;
        padding: 0 40px;
    }

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

/* Ajustes para móviles pequeños */
@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;
    }
}

/* Fin div-4.css */

/* Inicio div-5.css */
/* =======================
   DIV-5: GRID DE SOLUCIONES DESTACADAS
   Mobile-First Approach
   ======================= */

#div-5 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
    background: linear-gradient(135deg, #FAF3E0 0%, #ffffff 100%);
}

#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 Soluciones */
#div-5 .solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Tarjeta de Solución */
#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;
    position: relative;
    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;
}

/* Imagen de la Solución */
#div-5 .solution-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1B4D3E 0%, #B87333 100%);
}

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

/* Contenido de la Solución */
#div-5 .solution-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Título de la Solución */
#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;
}

/* Ubicación de la Solución */
#div-5 .solution-location {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #B87333;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Botón de Solución */
#div-5 .solution-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;
    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;
    position: relative;
    overflow: hidden;
}

#div-5 .solution-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

#div-5 .solution-button:hover::before {
    width: 300px;
    height: 300px;
}

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

#div-5 .solution-button:active {
    transform: translateY(0);
}

/* Animaciones de entrada */
#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);
}

/* Asegurar que el título permanezca visible una vez animado */
#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);
}

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

    #div-5 .solution-image {
        height: 220px;
    }
}

/* Responsive: Desktop (4 columnas) */
@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: 30px;
        padding: 0 40px;
    }

    #div-5 .solution-image {
        height: 200px;
    }

    #div-5 .solution-content {
        padding: 30px 25px;
    }
}

/* Ajustes para móviles pequeños */
@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: 180px;
    }

    #div-5 .solution-content {
        padding: 20px 15px;
    }
}

/* Fin div-5.css */

/* Inicio div-6.css */
/* =======================
   DIV-6: PROVEEDORES ESPECIALIZADOS
   Mobile-First Approach
   ======================= */

#div-6 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
    background: linear-gradient(135deg, #FAF3E0 0%, #ffffff 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: 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: 2px solid transparent;
    text-align: center;
}

#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;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B4D3E 0%, #B87333 100%);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    overflow: hidden;
}

#div-6 .provider-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

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

/* 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 del Proveedor */
#div-6 .provider-cities {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #B87333;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Experiencia del Proveedor */
#div-6 .provider-experience {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.75rem + 0.25vw);
    color: #666666;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Botón del Proveedor */
#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;
    text-align: center;
    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 de entrada */
#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);
}

/* Asegurar que el título permanezca visible una vez animado */
#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(30px);
}

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

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

/* Responsive: Desktop */
@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;
    }

    #div-6 .provider-card {
        padding: 30px 25px;
    }
}

/* Ajustes para móviles pequeños */
@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;
    }
}

/* Fin div-6.css */

/* Inicio div-7.css */
/* =======================
   DIV-7: FORMULARIO DE COTIZACIÓN
   Mobile-First Approach
   ======================= */

#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 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

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

#div-7 .contact-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    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 input:valid,
#div-7 .form-group textarea:valid {
    border-color: #4CAF50;
}

#div-7 .form-group input:invalid:not(:placeholder-shown),
#div-7 .form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #E6220D;
}

#div-7 .form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: 'Raleway', Arial, sans-serif;
}

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

/* Toggle Switch */
#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-input:focus + .toggle-slider {
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.2);
}

#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 .form-group.toggle-group.error .toggle-slider {
    box-shadow: 0 0 0 3px rgba(230, 34, 13, 0.2);
    background-color: #E6220D;
}

#div-7 .form-group.toggle-group.error .toggle-input:checked + .toggle-slider {
    background: linear-gradient(135deg, #E6220D 0%, #c41e0b 100%);
}

/* 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::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:active {
    transform: translateY(-1px) scale(1);
}

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

/* WhatsApp Float */
#div-7 .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#div-7 .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 3px 3px 6px #777;
}

#div-7 .whatsapp-float a {
    color: #FFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Animaciones de entrada */
#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);
}

/* Asegurar que el título permanezca visible una vez animado */
#div-7 .section-title.animated.visible {
    opacity: 1 !important;
}

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

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

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

/* Responsive: Tablet y Desktop */
@media (min-width: 600px) {
    #div-7 .contact-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 .contact-form {
        padding: 50px 45px;
    }
}

/* Ajustes para móviles pequeños */
@media (max-width: 480px) {
    #div-7 {
        padding: 40px 0;
    }

    #div-7 .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
        padding: 0 15px;
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.9),
            0 0 8px rgba(0, 0, 0, 0.6);
    }

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

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

/* Fin div-7.css */

/* Inicio div-8.css */
/* =======================
   DIV-8: PRUEBA SOCIAL (TESTIMONIOS Y CONTADOR)
   Mobile-First Approach
   ======================= */

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

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

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

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

/* Efecto hover en avatar */
#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;
}

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

/* Contadores en Vivo */
#div-8 .counters-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
    max-width: 1000px;
    margin: 0 auto;
}

#div-8 .counter-item {
    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.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(2rem + 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;
}

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

/* Asegurar que el título permanezca visible una vez animado */
#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 .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);
}

/* Asegurar que cualquier animación escalar con visible tenga opacity 1 */
#div-8 .counter-item.animated.escalar.visible {
    opacity: 1 !important;
}

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

    #div-8 .counters-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Responsive: Desktop */
@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 .counters-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 0 40px;
    }

    #div-8 .counter-item {
        padding: 40px 30px;
    }
}

/* Ajustes para móviles pequeños */
@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 .counters-section {
        gap: 20px;
        padding: 0 10px;
    }
}

/* Fin div-8.css */

/* Inicio div-9.css */
/* =======================
   DIV-9: CONFIANZA Y PRUEBA SOCIAL
   Mobile-First Approach
   ======================= */

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

/* Grid de Logos */
#div-9 .logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto 50px;
    align-items: center;
}

/* Logo Item */
#div-9 .logo-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    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-9 .logo-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 4px 20px rgba(27, 77, 62, 0.2);
    border-color: #1B4D3E;
}

#div-9 .logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

#div-9 .logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Placeholder para logos */
#div-9 .logo-placeholder {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 0.875rem;
    color: #666666;
    text-align: center;
    font-weight: 600;
}

/* Contadores en Vivo */
#div-9 .counters-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
    max-width: 1000px;
    margin: 0 auto;
}

#div-9 .counter-item {
    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.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

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

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

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

/* Animaciones de entrada */
#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);
}

/* Asegurar que el título permanezca visible una vez animado */
#div-9 .section-title.animated.visible {
    opacity: 1 !important;
}

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

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

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

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

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

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

/* Asegurar que cualquier animación escalar con visible tenga opacity 1 */
#div-9 .counter-item.animated.escalar.visible {
    opacity: 1 !important;
}

/* Responsive: Tablet */
@media (min-width: 600px) {
    #div-9 .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    #div-9 .counters-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

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

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

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

    #div-9 .logo-item {
        height: 120px;
        padding: 25px;
    }

    #div-9 .logo-item img {
        max-height: 80px;
    }

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

    #div-9 .counter-item {
        padding: 40px 30px;
    }
}

/* Ajustes para móviles pequeños */
@media (max-width: 480px) {
    #div-9 {
        padding: 40px 0;
    }

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

    #div-9 .logos-grid {
        gap: 15px;
        padding: 0 10px;
    }

    #div-9 .logo-item {
        height: 80px;
        padding: 15px;
    }

    #div-9 .counters-section {
        gap: 20px;
        padding: 0 10px;
    }
}

/* Fin div-9.css */

/* Inicio div-10.css */
/* =======================
   DIV-10: CÓMO FUNCIONA (3 PASOS)
   Mobile-First Approach
   ======================= */

#div-10 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
}

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

/* Título de Sección */
#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: #1B4D3E;
    padding: 0 20px;
}

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

/* Tarjeta de Paso */
#div-10 .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-10 .step-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 30px rgba(27, 77, 62, 0.3);
    border-color: #1B4D3E;
}

/* Número del Paso */
#div-10 .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;
    position: relative;
}

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

/* Título del Paso */
#div-10 .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;
}

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

/* Icono decorativo (opcional) */
#div-10 .step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#div-10 .step-card:hover .step-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Línea conectora (solo desktop) */
#div-10 .step-connector {
    display: none;
}

/* Animaciones de entrada */
#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);
}

/* Asegurar que el título permanezca visible una vez animado */
#div-10 .section-title.animated.visible {
    opacity: 1 !important;
}

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

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

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

#div-10 .step-card.animated.move-left {
    transform: translateX(50px);
}

#div-10 .step-card.animated.move-left.visible {
    opacity: 1;
    transform: translateX(0);
}

#div-10 .step-card.animated.move-right {
    transform: translateX(-50px);
}

#div-10 .step-card.animated.move-right.visible {
    opacity: 1;
    transform: translateX(0);
}

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

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

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

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

    #div-10 .step-card {
        padding: 40px 30px;
    }

    #div-10 .step-number {
        width: 100px;
        height: 100px;
        font-size: calc(2.5rem + 1vw);
    }

    /* Línea conectora entre pasos (solo desktop) */
    #div-10 .step-card:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -35px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2.5rem;
        color: #B87333;
        opacity: 0.5;
        z-index: 1;
    }
}

/* Ajustes para móviles pequeños */
@media (max-width: 480px) {
    #div-10 {
        padding: 40px 0;
    }

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

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

    #div-10 .step-card {
        padding: 25px 15px;
    }

    #div-10 .step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Fin div-10.css */

/* Inicio div-11.css */
/* =======================
   DIV-11: FORMULARIO DE CONTACTO
   Mobile-First Approach
   ======================= */

#div-11 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
    background: linear-gradient(135deg, #1B4D3E 0%, #B87333 100%);
}

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

/* Título de Sección */
#div-11 .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),
        0 0 10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

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

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

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

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

#div-11 .form-group input:valid,
#div-11 .form-group textarea:valid {
    border-color: #4CAF50;
}

#div-11 .form-group input:invalid:not(:placeholder-shown),
#div-11 .form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #E6220D;
}

#div-11 .form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: 'Raleway', Arial, sans-serif;
}

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

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

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

/* Toggle Switch */
#div-11 .form-group.toggle-group {
    margin-bottom: 20px;
}

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

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

#div-11 .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-11 .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-11 .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-11 .toggle-input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

#div-11 .toggle-input:focus + .toggle-slider {
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.2);
}

#div-11 .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-11 .toggle-text a {
    color: #1B4D3E;
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

#div-11 .form-group.toggle-group.error .toggle-slider {
    box-shadow: 0 0 0 3px rgba(230, 34, 13, 0.2);
    background-color: #E6220D;
}

#div-11 .form-group.toggle-group.error .toggle-input:checked + .toggle-slider {
    background: linear-gradient(135deg, #E6220D 0%, #c41e0b 100%);
}

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

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

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

/* Mensaje de Éxito */
#div-11 .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-11 .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-11 .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-11 .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-11 .submit-button:hover::before {
    width: 300px;
    height: 300px;
}

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

#div-11 .submit-button:active {
    transform: translateY(-1px) scale(1);
}

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

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

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

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

/* Asegurar que el título permanezca visible una vez animado */
#div-11 .section-title.animated.visible {
    opacity: 1 !important;
}

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

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

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

/* Responsive: Tablet y Desktop */
@media (min-width: 600px) {
    #div-11 .contact-form {
        padding: 40px 35px;
    }

    #div-11 .form-group {
        margin-bottom: 30px;
    }
}

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

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

    #div-11 .form-container {
        padding: 0 40px;
    }

    #div-11 .contact-form {
        padding: 50px 45px;
    }
}

/* Ajustes para móviles pequeños */
@media (max-width: 480px) {
    #div-11 {
        padding: 40px 0;
    }

    #div-11 .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
        padding: 0 15px;
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.9),
            0 0 8px rgba(0, 0, 0, 0.6);
    }

    #div-11 .contact-form {
        padding: 25px 15px;
    }

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

/* Fin div-11.css */

/* Inicio div-12.css */
/* =======================
   DIV-12: PROVEEDORES DESTACADOS (PLACEHOLDER)
   Mobile-First Approach
   ======================= */

#div-12 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
    background: linear-gradient(135deg, #FAF3E0 0%, #ffffff 100%);
}

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

/* Título de Sección */
#div-12 .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-12 .providers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Tarjeta de Proveedor */
#div-12 .provider-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: 2px solid transparent;
    text-align: center;
}

#div-12 .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-12 .provider-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B4D3E 0%, #B87333 100%);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

#div-12 .provider-card:hover .provider-logo {
    transform: rotate(360deg) scale(1.1);
}

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

/* Ciudad del Proveedor */
#div-12 .provider-city {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.875rem + 0.25vw);
    color: #B87333;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Especialidad */
#div-12 .provider-specialty {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: calc(0.75rem + 0.25vw);
    color: #666666;
    line-height: 1.5;
}

/* Placeholder Message */
#div-12 .placeholder-message {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

/* Asegurar que el título permanezca visible una vez animado */
#div-12 .section-title.animated.visible {
    opacity: 1 !important;
}

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

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

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

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

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

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

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

    #div-12 .provider-card {
        padding: 30px 25px;
    }
}

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

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

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

/* Fin div-12.css */

/* Inicio div-13.css */
/* =======================
   DIV-13: FAQ
   Mobile-First Approach
   ======================= */

#div-13 {
    position: relative;
    width: 100%;
    padding: 50px 0;
    min-height: auto;
}

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

/* Título de Sección */
#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;
}

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

/* Item de FAQ */
#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);
}

/* Pregunta */
#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%);
}

/* Icono de Expansión */
#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;
}

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

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

/* Asegurar que el título permanezca visible una vez animado */
#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);
}

/* Responsive: Desktop */
@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;
    }
}

/* Fin div-13.css */

