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

 body {
     font-family: 'Monserrat', sans-serif;
     background-color: #fcfcfc;
     color: #333;
 }



 #footer-placeholder {
     display: block !important;
     margin: 0 !important;
     padding: 0 !important;
     background-color: #000;
 }


 section *:last-child {
     margin-bottom: 0 !important;
 }

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

 img {
     max-width: 100%;
     height: auto;
     display: block;
 }

 a {
     text-decoration: none;
     color: rgb(137, 184, 55);
 }

 ul {
     list-style: none;
 }

 .main-content {
     padding-top: 90px;
     min-height: 80vh;
 }

 .page-section {
     padding: 20px 0 40px 0;
 }

 .page-section h1 {
     font-size: 2.5rem;
     margin-bottom: 20px;
     color: #333;
     border-left: 6px solid rgb(137, 184, 55);
     padding-left: 15px;
     display: block;
 }

 .main-footer {
     background-color: #000;
     color: #fff;
     margin-top: 0 !important;
     padding-top: 40px;
     display: block;
     width: 100%;
 }

 .footer-content {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     padding-bottom: 40px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .footer-info,
 .footer-contact,
 .footer-links,
 .footer-logo {
     flex: 1;
     min-width: 250px;
     padding: 0 20px;
     margin-bottom: 30px;
 }

 .footer-content h4 {
     color: #89b837;
     margin-bottom: 20px;
     font-weight: bold;
     text-transform: uppercase;
     font-size: 1.1rem;
 }

 .footer-links ul {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a,
 .footer-contact p,
 .footer-info p {
     color: #ccc;
     font-size: 14px;
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-links a:hover {
     color: #89b837;
 }

 .footer-bottom {
     text-align: center;
     padding: 25px;
     background-color: #111;
     font-size: 13px;
     color: #888;
     border-top: 1px solid #222;
 }

 .main-footer a,
 .footer-contact a,
 .footer-links a {
     color: #ccc !important;
     text-decoration: none !important;
     transition: color 0.3s ease;
 }

 .main-footer a:hover,
 .footer-contact a:hover,
 .footer-links a:hover {
     color: #89b837 !important;
     text-decoration: none !important;
 }

 .footer-contact p,
 .footer-contact span {
     color: inherit;
     text-decoration: none;
 }

 .main-header a,
 .main-header .nav-link {
     text-decoration: none !important;
     color: #fff !important;
 }

 .main-header .nav-link:hover {
     color: rgb(137, 184, 55) !important;
 }

 @media (max-width: 992px) {
     .nav-item .submenu {
         display: none;
         list-style: none;
         padding-left: 20px;
     }

     .nav-item.open>.submenu {
         display: block !important;
         animation: fadeInDown 0.3s ease;
     }

     .nav-item.open .dropdown-toggle::after {
         transform: rotate(180deg);
     }
 }

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

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-black-section {
     background-color: #0a0a0a;
     padding-top: 5rem;
     padding-bottom: 12rem;
     text-align: center;
 }

 .separator-line {
     width: 80px;
     height: 4px;
     background-color: #89b837;
     margin: 1.5rem auto;
 }

 .formulario-overlap {
     position: relative;
     margin-top: -8rem;
     z-index: 10;
 }

 @media (max-width: 1023px) {
     .submenu {
         display: none;
         flex-direction: column;
         padding-left: 20px;
     }

     .submenu.show-active {
         display: flex !important;
     }

     .main-nav.active {
         display: block;
     }
 }

 /*estilos para formularios*/
 .formulario-libre,
 .formulario-contactanos {
     max-width: 800px;
     margin: 3rem auto;
     padding: 2.5rem;
     background-color: #fff;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
     transform: scale(0.95);
     transform-origin: top center;
 }

 .formulario-libre h2,
 .formulario-contactanos h2 {
     font-size: 2rem;
     font-weight: 700;
     color: #333;
     text-align: center;
     margin-bottom: 1.5rem;
 }

 .formulario-libre p,
 .formulario-contactanos p {
     font-size: 1rem;
     color: #666;
     text-align: center;
     margin-bottom: 2rem;
 }


 .campo {
     margin-bottom: 1.2rem;
     text-align: left;
 }

 .campo label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 600;
     color: #444;
 }

 .campo input,
 .campo textarea,
 .campo select {
     width: 100%;
     padding: 0.85rem;
     border: 1px solid #ccc;
     border-radius: 6px;
     font-size: 1rem;
     font-family: 'Open Sans', sans-serif;
     box-sizing: border-box;
 }

 .campo input:focus,
 .campo textarea:focus {
     outline: none;
     border-color: rgb(137, 184, 55);
     box-shadow: 0 0 5px rgba(137, 184, 55, 0.3);
 }

 button[type="submit"] {
     padding: 1rem 2.5rem;
     background-color: rgb(137, 184, 55);
     color: white;
     border: none;
     border-radius: 6px;
     font-size: 1.1rem;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.3s ease;
     display: block;
     margin: 2rem auto 0;
 }

 button[type="submit"]:hover {
     background-color: #0f0f0f;
     transform: translateY(-2px);
 }

 .separator-line-hero {
     width: 300px;
     height: 3px;
     background: linear-gradient(to right, transparent 0%,
             rgb(137, 184, 55) 20%,
             rgb(137, 184, 55) 80%, transparent 100%);
     margin: 0 auto 30px;
 }


 @media (max-width: 600px) {
     .hero-text h1 {
         font-size: 2.5rem;
     }

     .hero-section {
         min-height: 450px;
         padding-top: 100px;
     }

     .formulario-libre,
     .formulario-contactanos {
         transform: scale(1);
         margin: 1rem;
         padding: 1.5rem;
     }
 }

 .error-mensaje {
     color: #e74c3c;
     font-size: 0.85rem;
     font-weight: bold;
     margin-top: 5px;
     animation: shake 0.3s ease-in-out;
 }

 @keyframes shake {

     0%,
     100% {
         transform: translateX(0);
     }

     25% {
         transform: translateX(-5px);
     }

     75% {
         transform: translateX(5px);
     }
 }


 @media (max-width: 768px) {

     .formulario-libre,
     .formulario-contactanos {
         margin: 20px 15px;
         padding: 1.5rem;
     }

     .stat-item {
         flex: 50%;
         margin-bottom: 40px;
     }
 }

 .hero-carousel-section {
     position: relative;
     width: 100%;
     height: 600px;
     overflow: hidden;
     background: #000;
 }

 .carousel-track-hero {
     display: flex;
     height: 100%;
     transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .hero-slide {
     min-width: 100%;
     height: 100%;
     position: relative;
     display: flex;
     align-items: center;
     overflow: hidden;
 }

 .slide-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     z-index: 1;
     transform: scale(1.2);
     transition: transform 7s ease-out;
 }

 .hero-slide.active .slide-bg {
     transform: scale(1);
 }

 .hero-slide::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 2;
 }

 .hero-content-wrapper {
     position: relative;
     z-index: 10;
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 50px;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
 }

 .hero-title-box {
     background-color: #89b837;
     padding: 10px 30px;
     margin-bottom: 20px;
     display: inline-block;
     opacity: 0;
     transform: translateX(-50px);
     transition: all 1.2s ease-out;
 }

 .hero-title-box h1 {
     color: white;
     font-size: 2.8rem;
     font-weight: 800;
     text-transform: uppercase;
     margin: 0;
 }

 .hero-feature-tag {
     background-color: rgba(80, 75, 75, 0.7);
     color: white;
     padding: 8px 25px;
     margin-bottom: 5px;
     font-size: 1.2rem;
     font-weight: 600;
     display: inline-block;
     width: 450px;
     max-width: 90%;
     opacity: 0;
     transform: translateX(-30px);
     transition: all 0.9s ease-out;
 }



 /* HERO CARRUSEL  */
 .hero-carousel-section {
     position: relative;
     width: 100%;
     height: 600px;
     overflow: hidden;
     background: #000;
 }

 .carousel-track-hero {
     display: flex;
     height: 100%;
     transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .hero-slide {
     min-width: 100%;
     height: 100%;
     position: relative;
     display: flex;
     align-items: center;
     overflow: hidden;
 }

 .slide-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     z-index: 1;
     transform: scale(1.2);
     transition: transform 7s ease-out;
 }

 .hero-slide.active .slide-bg {
     transform: scale(1);
 }

 .hero-slide::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 2;
 }

 .hero-content-wrapper {
     position: relative;
     z-index: 10;
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 50px;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
 }

 .hero-title-box {
     background-color: #89b837;
     padding: 10px 30px;
     margin-bottom: 20px;
     display: inline-block;
     opacity: 0;
     transform: translateX(-50px);
     transition: all 1.2s ease-out;
 }

 .hero-title-box h1 {
     color: white;
     font-size: 2.8rem;
     font-weight: 800;
     text-transform: uppercase;
     margin: 0;
 }

 .hero-feature-tag {
     background-color: rgba(80, 75, 75, 0.7);
     color: white;
     padding: 8px 25px;
     margin-bottom: 5px;
     font-size: 1.2rem;
     font-weight: 600;
     display: inline-block;
     width: 450px;
     max-width: 90%;
     opacity: 0;
     transform: translateX(-30px);
     transition: all 0.9s ease-out;
 }

 /*estilo de inicio.php*/
 .hero-slide.active .hero-title-box,
 .hero-slide.active .hero-feature-tag {
     opacity: 1;
     transform: translateX(0);
 }

 .hero-feature-tag:nth-child(2) {
     transition-delay: 0.5s;
 }

 .hero-feature-tag:nth-child(3) {
     transition-delay: 0.8s;
 }

 .hero-feature-tag:nth-child(4) {
     transition-delay: 1.1s;
 }

 .hero-feature-tag:nth-child(5) {
     transition-delay: 1.4s;
 }

 .hero-feature-tag:nth-child(6) {
     transition-delay: 1.7s;
 }

 .hero-carousel-indicators {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 20;
     display: flex;
     gap: 10px;
 }

 .hero-dot {
     height: 10px;
     width: 10px;
     background: rgba(255, 255, 255, 0.4);
     border-radius: 50%;
     cursor: pointer;
     transition: 0.3s;
 }

 .hero-dot.active-dot {
     background: #89b837;
     width: 30px;
     border-radius: 10px;
 }


 .servicios-interactivos {
     padding: 60px 0;
     background-color: #ffffff;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(6, 1fr);
     gap: 15px;
     margin-bottom: 30px;
 }

 .service-link {
     background: #f9f9f9;
     padding: 20px 10px;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     cursor: pointer;
     transition: 0.3s;
     border-radius: 12px;
     border: 2px solid transparent;
 }

 .service-link i {
     font-size: 28px;
     color: #89b837;
     margin-bottom: 10px;
     transition: 0.3s;
 }

 .service-link .texto-boton {
     font-weight: 800;
     color: #333;
     font-size: 14px;
 }

 .service-link .subtitulo-boton {
     font-size: 11px;
     color: #777;
     font-weight: 600;
     text-transform: uppercase;
     margin-top: 4px;
 }

 .service-link:hover {
     transform: translateY(-5px);
     background: #f0f0f0;
 }

 .service-link.active {
     background: #89b837;
     border-color: #89b837;
     box-shadow: 0 10px 20px rgba(137, 184, 55, 0.2);
 }

 .service-link.active i,
 .service-link.active .texto-boton,
 .service-link.active .subtitulo-boton {
     color: #ffffff;
 }

 .content-area-text {
     padding: 30px;
     background: #fff;
     border-radius: 15px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
     min-height: 120px;
     text-align: center;
     border: 1px solid #eee;
 }

 .collapse-custom {
     display: none;
 }

 .collapse-custom.active {
     display: block;
     animation: fadeInUpContent 0.5s ease forwards;
 }

 .collapse-custom p {
     font-size: 17px;
     color: #555;
     line-height: 1.7;
     max-width: 850px;
     margin: 0 auto;
 }

 @keyframes fadeInUpContent {
     from {
         opacity: 0;
         transform: translateY(15px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }


 .work-with-us-full {
     width: 100%;
     padding: 50px 0;
     background: linear-gradient(135deg, #333 0%, #111 100%);
     color: #ffffff;
     text-align: center;
 }

 .work-content-inner h2 {
     font-size: 32px;
     font-weight: 800;
     margin-bottom: 5px;
 }

 .work-separator {
     width: 60px;
     height: 3px;
     background: #89b837;
     margin: 0 auto 20px;
     border-radius: 2px;
 }

 .work-content-inner p {
     font-size: 16px;
     margin-bottom: 15px;
     color: #ccc;
 }

 .work-content-inner .highlight {
     color: #89b837;
     font-weight: 700;
     font-size: 18px;
     display: block;
     margin-bottom: 25px;
 }

 .btn-form {
     display: inline-block;
     padding: 12px 30px;
     background-color: #89b837;
     color: #000;
     font-weight: 800;
     text-transform: uppercase;
     text-decoration: none;
     border-radius: 50px;
     transition: 0.3s;
     font-size: 14px;
 }

 .btn-form:hover {
     background-color: #a4d85e;
     transform: scale(1.05);
     box-shadow: 0 10px 20px rgba(137, 184, 55, 0.4);
 }


 @media (max-width: 992px) {
     .hero-feature-tag {
         width: 90%;
         font-size: 1.1rem;
     }

     .services-grid {
         grid-template-columns: repeat(3, 1fr);
     }

     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 30px;
     }
 }

 @media (max-width: 600px) {
     .hero-title-box h1 {
         font-size: 1.8rem;
     }

     .services-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .work-content-inner h2 {
         font-size: 26px;
     }
 }

 .sublabel-stat {
     display: block !important;
     visibility: visible !important;
     opacity: 1 !important;
     font-size: 14px !important;
     color: #89b837 !important;
     font-weight: 600 !important;
     margin-top: 8px !important;
     line-height: 1.3 !important;
     text-align: center !important;
     width: 100% !important;
     max-width: 200px !important;
     margin-left: auto !important;
     margin-right: auto !important;
 }

 /*estilos sobrenosotros.php*/
 
.stats-section {
    padding: 80px 0;
    background-color: var(--negro-fondo);
    color: var(--blanco);
}

.stats-section .container {
    display: flex;
    justify-content: space-between; 
    flex-wrap: nowrap; 
    max-width: 1200px;
    margin: 0 auto;
    gap: 15px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 0; 
}

.stat-item i {
    font-size: 3rem;
    color: var(--verde-intercom);
    margin-bottom: 15px;
}

.stat-item .number {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--fuente-titulos);
    margin-bottom: 5px;
    white-space: nowrap; 
}


.stats-section .stat-item .label {
    color: var(--verde-intercom); 
    font-size: 1.1rem;            
    font-weight: 600;            
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-top: 10px;
}


@media (max-width: 768px) {
    .stats-section .container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .stat-item {
        flex: 1 1 45%;
        margin-bottom: 30px;
    }
}

 .itc-hero-section {
     position: relative;
     width: 100%;
     min-height: 400px;
     background-image: url('public/images/Mesa de trabajo intercom.webp') !important;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     background-color: #5e5e5e;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1;
 }

 .itc-hero-content {
     background-color: rgba(0, 0, 0, 0.65);
     padding: 30px;
     border-radius: 10px;
     width: 85%;
     max-width: 800px;
     text-align: center;
     color: #ffffff !important;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
     z-index: 3;
 }

 .itc-hero-logo {
     max-width: 180px;
     height: auto;
     margin: 0 auto 20px auto;
     display: block;
 }

 .itc-hero-content h2 {
     font-family: 'Montserrat', sans-serif;
     font-size: 2rem;
     color: #89b837;
     margin-bottom: 15px;
     text-transform: none;
 }

 .itc-hero-content p {
     font-family: 'Open Sans', sans-serif;
     font-size: 1rem;
     line-height: 1.6;
     text-align: justify;
     color: #ffffff;
     margin: 0;
 }

 .modal {
     display: none;
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     overflow: auto;
     background-color: rgba(0, 0, 0, 0.9);
     padding-top: 60px;
 }

 .modal-content {
     margin: auto;
     display: block;
     width: 80%;
     max-width: 700px;
     animation-name: zoom;
     animation-duration: 0.6s;
 }

 @keyframes zoom {
     from {
         transform: scale(0)
     }

     to {
         transform: scale(1)
     }
 }

 .close-modal {
     position: absolute;
     top: 15px;
     right: 35px;
     color: #f1f1f1;
     font-size: 40px;
     font-weight: bold;
     transition: 0.3s;
 }

 .close-modal:hover,
 .close-modal:focus {
     color: #bbb;
     text-decoration: none;
     cursor: pointer;
 }

 .prev,
 .next {
     cursor: pointer;
     position: absolute;
     top: 50%;
     width: auto;
     padding: 16px;
     margin-top: -50px;
     color: white;
     font-weight: bold;
     font-size: 20px;
     transition: 0.6s ease;
     border-radius: 0 3px 3px 0;
     user-select: none;
     -webkit-user-select: none;
     background-color: rgba(0, 0, 0, 0.5);
 }

 .next {
     right: 0;
     border-radius: 3px 0 0 3px;
 }

 .prev:hover,
 .next:hover {
     background-color: rgba(0, 0, 0, 0.8);
 }

 .leader-carousel-container .prev,
.leader-carousel-container .next {
    display: none;
}

.about-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 60px 30px;
    background: #f9f9f9;
    gap: 30px;
    box-sizing: border-box;
}

.about-text-container {
    flex: 2;
    max-width: 65%;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.about-box {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.about-box h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about-box p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
    color: #7c7878;
    font-size: 13px;
}

.about-box blockquote {
    border-left: 3px solid rgb(137, 184, 55);
    padding-left: 15px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    text-align: left;
}

.about-box blockquote cite {
    display: block;
    margin-top: 5px;
    font-size: 0.9em;
    color: #777;
}

.carousel {
    flex: 1;
    max-width: 390px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel img {
    min-width: 100%;
    height: auto;
    cursor: pointer;
}

.carousel-indicators {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: rgb(137, 184, 55);
}

.leaders-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.leaders-section h3 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}

.leader-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    touch-action: pan-y;
}

.leader-carousel-track {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    padding: 20px calc(50% - 150px);
    box-sizing: border-box;
}

.leader-slide {
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    padding: 20px 0;
    box-sizing: border-box;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.leader-slide:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.leader-card img {
    width: 200px;
    height: 200px;
    display: block;
    margin: 0 auto 15px auto;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgb(137, 184, 55);
}

.leader-card h4 {
    margin: 5px 0;
    font-size: 1.3em;
    color: #333;
}

.leader-card p {
    color: rgb(137, 184, 55);
    font-weight: bold;
    margin: 0;
}

.leader-carousel-container .prev {
    left: 10px;
}

.leader-carousel-container .next {
    right: 10px;
}

@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        padding: 50px 20px;
        gap: 40px;
    }

    .about-text-container {
        flex-direction: column;
        max-width: 100%;
        gap: 30px;
        order: 1;
    }

    .about-box {
        max-width: 100%;
        text-align: left;
    }

    .about-box p {
        text-align: justify;
    }

    .carousel {
        max-width: 100%;
        width: 100%;
        margin: 0;
        order: 2;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .stats-section .container {
        justify-content: center;
    }

    .stat-item {
        flex-basis: 40%;
        min-width: 180px;
        margin: 10px;
    }

    .leader-carousel-container {
        max-width: 320px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }

    .leader-carousel-track {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0;
        padding: 0;
    }

    .leader-slide {
        min-width: 100%;
        max-width: 100%;
        box-shadow: none;
        padding: 20px;
    }

    .leader-carousel-container .prev,
    .leader-carousel-container .next {
        display: none !important;
    }

    .leader-indicators {
        display: block;
    }

    .modal-content {
        width: 90%;
    }
}

@media (min-width: 993px) {
    .leader-carousel-container {
        max-width: 1200px;
        overflow: hidden;
        box-shadow: none;
        border-radius: 0;
        position: relative;
    }

    .leader-carousel-track {
        flex-wrap: nowrap;
        justify-content: flex-start;
        transition: transform 0.5s ease-in-out;
        padding: 0;
        gap: 30px;
    }

    .leader-slide {
        flex-basis: calc(33.33% - 20px);
        min-width: 300px;
        max-width: 400px;
        flex-shrink: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        box-sizing: border-box;
    }

    .leader-carousel-container .prev,
    .leader-carousel-container .next {
        display: block;
    }

    .leader-indicators {
        display: block;
    }
}

 /*Asistemte virtual*/
 .hero-asistente-virtual {
     background-image: url('../public/images/fondoo.webp');
     background-size: cover;
     background-position: center;
     height: 70vh;
     min-height: 450px;
     position: relative;
     margin: 0 !important;
     padding: 0 !important;
 }

 .hero-overlay-asistente {
     background-color: rgba(10, 10, 10, 0.75);
     position: absolute;
     inset: 0;
 }

 .section-divider {
     display: block;
     width: 100%;
     max-width: 500px;
     height: 3px;
     background: linear-gradient(to right, transparent, #89b837, transparent);
     margin: 1.5rem auto;
 }

 .beneficio-card {
     transition: transform 0.3s ease;
     border-top: 5px solid #89b837;
 }

 .beneficio-card:hover {
     transform: translateY(-8px);
 }


 .last-sections-wrapper {
     display: flex;
     flex-direction: column;
     background-color: #d4d4d4;
 }

 /*contact center estilos*/

 .hero-contact {
     position: relative;
     min-height: 450px;
     height: 60vh;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     background-image: url('../public/images/Mesa\ de\ trabajo\ intercom.webp');
     background-size: cover;
     background-position: center;
     margin: 0 !important;
 }

 .hero-overlay-dark {
     position: absolute;
     inset: 0;
     background-color: rgba(10, 10, 10, 0.75);
     z-index: 1;
 }


 .feature-card {
     border-top: 4px solid #89b837;
     transition: transform 0.3s ease;
 }

 .feature-card:hover {
     transform: translateY(-5px);
 }


 /*smsservices estilos*/



 .hero-sms {
     position: relative;
     min-height: 450px;
     height: 60vh;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     background-image: url('../public/images/mensaje.webp');
     background-size: cover;
     background-position: center;
 }

 .hero-overlay-dark {
     position: absolute;
     inset: 0;
     background-color: rgba(10, 10, 10, 0.75);
     z-index: 1;
 }


 /*odoo section*/

 .hero-odoo {
     position: relative;
     min-height: 450px;
     height: 60vh;
     display: flex;
     align-items: center;
     justify-content: center;
     background-image: url('../public/images/fondoo.webp');
     background-size: cover;
     background-position: center;
 }

 .hero-overlay-dark {
     position: absolute;
     inset: 0;
     background-color: rgba(10, 10, 10, 0.7);
     z-index: 1;
 }


 .feature-card-odoo {
     transition: all 0.3s ease;
 }

 .feature-card-odoo:hover .icon-circle {
     background-color: #89b837;
     color: white;
 }

 .feature-card-odoo:hover .icon-circle i {
     color: white;
 }

 .main-header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     background: linear-gradient(to bottom, #4b4b4b, #111111);
     padding: 5px 0;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
 }

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

 .logo img {
     height: 50px;
     width: auto;
 }


 .main-nav ul {
     display: flex;
     gap: 20px;
     align-items: center;
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .main-nav .nav-link {
     color: #fff;
     font-weight: 500;
     font-size: 13px;
     text-transform: uppercase;
     padding: 10px 5px;
     transition: all 0.3s ease;
     text-decoration: none;
     position: relative;
 }

 @media (min-width: 1025px) {

     .main-nav>ul>li>a.nav-link.active {
         color: rgb(137, 184, 55) !important;
     }

     .main-nav>ul>li>a.nav-link.active::after {
         content: '';
         position: absolute;
         bottom: -5px;
         left: 0;
         width: 100%;
         height: 3px;
         background-color: rgb(137, 184, 55);
         border-radius: 2px;
     }

     .main-nav .has-submenu {
         position: relative;
     }

     .main-nav .submenu {
         display: block;
         position: absolute;
         top: 120%;
         left: 0;
         background-color: #1a1a1a;
         min-width: 230px;
         border-top: 3px solid rgb(137, 184, 55);
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
         z-index: 1000;
         padding: 10px 0;
         opacity: 0;
         visibility: hidden;
         transition: all 0.3s ease;
     }

     .main-nav .has-submenu:hover .submenu {
         opacity: 1;
         visibility: visible;
         top: 100%;
     }

     .main-nav .submenu li a {
         padding: 12px 20px;
         text-transform: none;
         font-size: 14px;
         display: block;
         color: #ccc;
         transition: all 0.2s ease;
         border-bottom: 1px solid #252525;
     }


     .main-nav .submenu .nav-link.active {
         color: rgb(137, 184, 55) !important;
         background-color: rgba(137, 184, 55, 0.1);
         border-left: 4px solid rgb(137, 184, 55);
         padding-left: 25px !important;
     }

     .main-nav .submenu .nav-link.active::after {
         display: none !important;
     }

     .main-nav .submenu li a:hover {
         background-color: #252525;
         color: rgb(137, 184, 55);
         padding-left: 25px;
     }
 }

 @media (max-width: 1024px) {
     .main-nav .nav-link.active {
         border-left: 5px solid rgb(137, 184, 55);
         background-color: rgba(137, 184, 55, 0.05);
         padding-left: 20px !important;
         color: rgb(137, 184, 55) !important;
     }

     .submenu.show-active {
         display: none;
     }
 }

 .social-links a {
     color: #fff;
     margin-left: 15px;
     font-size: 18px;
 }

 .menu-toggle {
     display: none;
     background: none;
     border: none;
     color: #fff;
     font-size: 1.8em;
     cursor: pointer;
 }


 @media (max-width: 992px) {

     header .social-links {
         display: none !important;
     }

     .menu-toggle {
         display: block !important;
         z-index: 2002;
     }

     .main-nav {
         display: block !important;
         position: fixed;
         top: 0;
         right: -280px;
         width: 260px;
         height: 100vh;
         background-color: #000;
         z-index: 2001;
         padding-top: 70px;
         transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
         overflow-y: auto;
     }

     .main-nav.active {
         right: 0;
     }

     .main-nav ul {
         flex-direction: column;
         align-items: flex-start;
         gap: 0;
     }

     .main-nav li {
         width: 100%;
         border-bottom: 1px solid #222;
     }

     .main-nav a {
         display: block;
         padding: 15px 25px;
         width: 100%;
         font-size: 15px;
     }

     /* SUBMENÚS EN MÓVIL */
     .main-nav .submenu {
         display: none;
         position: static;
         width: 100%;
         background-color: #111;
         box-shadow: none;
         border-top: none;
         padding-left: 15px;
     }

     .main-nav .submenu.show {
         display: block !important;
     }

     .main-nav .has-submenu:hover .submenu {
         display: none;
     }

     .main-nav .has-submenu>a {
         display: flex;
         justify-content: space-between;
     }
 }

 @media (max-width: 1024px) {
     .main-nav {
         display: block !important;
         position: fixed;
         top: 0;
         right: -300px;
         width: 280px;
         height: 100vh;
         background-color: #000;
         z-index: 2001;
         padding-top: 80px;
         transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
         overflow-y: auto;
     }

     .menu-toggle {
         display: block !important;
         position: relative;
         z-index: 2002;
         color: #fff;
         font-size: 1.8rem;
         background: none;
         border: none;
         cursor: pointer;
     }

     .main-nav.active {
         right: 0 !important;
     }

     header .social-links {
         display: none !important;
     }

     .main-nav ul {
         flex-direction: column;
         align-items: flex-start;
         width: 100%;
         padding: 0;
     }

     .main-nav li {
         width: 100%;
         border-bottom: 1px solid #222;
     }

     .main-nav a {
         display: block;
         padding: 18px 25px;
         width: 100%;
         font-size: 16px;
         color: #fff;
     }

     .main-nav .submenu {
         display: none;
         position: static;
         background-color: #111;
         width: 100%;
         padding-left: 20px;
     }

     .main-nav .submenu.show {
         display: block !important;
     }
 }

 /*scrool reveal para secciones*/
 .scroll-reveal {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.8s ease-out;
 }

 .scroll-reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }
 