/* Global Variables */
:root {
    --green-color: #7CB342;
    --blue-color: #0D3B66;
    --white-color: #FCFCFC;
    --black-color: #1F1F1F;
    --gray-color: #606060;
    --brown-color: #706C61;
}

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

body {
    font-family: "Instrument Sans", sans-serif;
}

body.no-scroll {
    overflow: hidden;
}

h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white-color);
}

h2 {
    font-size: 32px;
    font-weight: 500;
    color: var(--black-color);
    margin-top: 10px;
}

h2.large {
    font-size: 40px;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    h2 {
        font-size: 24px;
    }

    h2.large {
        font-size: 32px;
        font-weight: 500;
    }
}

h3 {
    font-size: 22px;
    color: var(--black-color);
    font-weight: 500;
    margin-top: 10px;
}

h3.small {
    font-size: 20px;
}

p {
    color: var(--gray-color);
    font-size: 18px;
    margin: 10px 0;
}

p.small {
    font-size: 16px;
}

a.link {
    display: flex;
    font-size: 14px;
    margin-top: 20px;
    color: var(--green-color);
    font-weight: 500;
    text-decoration: none;
    align-items: center;
    gap: 5px;
}

a.link:hover {
    text-decoration: underline;
}

a.cta,
button.cta {
    background-color: var(--green-color);
    color: var(--white-color);
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

a.cta:hover,
button.cta:hover {
    background-color: #6ba83a;
}

.green {
    color: var(--green-color);
}

.white {
    color: var(--white-color);
}

.blue {
    color: var(--blue-color);
}

.brown {
    color: var(--brown-color);
}

.container-flex {
    display: flex;
    gap: 10px;
}

.container-flex-column {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.flex-item-3c {
    width: 30%;
    margin-top: 30px;
}

@media only screen and (max-width: 768px) {
    .flex-item-3c {
        width: 100%;
    }
}

.f-1 {
    flex: 1;
}

.f-2 {
    flex: 2;
}

@media only screen and (max-width: 768px) {

    .f-1,
    .f-2 {
        flex: auto;
    }
}

.gap-30 {
    gap: 30px;
}

.f-jc-sb {
    justify-content: space-between;
}

.f-jc-c {
    justify-content: center;
}

.f-ai-fe {
    align-items: flex-end;
}

.center {
    text-align: center;
    margin: 0 auto;
}

.right {
    text-align: right;
}

.section-container {
    padding: 60px 80px;
}


.section-container-small {
    padding: 20px 80px 0;
}

@media only screen and (max-width: 768px) {

    .section-container {
        padding: 40px 20px;
    }

    .section-container-small {
        padding: 20px 20px;
    }
}

.section-label span {
    font-size: 16px;
    color: var(--brown-color);
    margin-bottom: 8px;
    font-weight: 500;
    border-bottom: 1px solid var(--green-color);
}

/* Loader */
#loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--green-color);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 90002;
    color: var(--white-color);
}

#loader.hidden {
    display: none;
}

.text-wrapper {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bouncing-text {
    font-size: 72px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    position: absolute;
    display: flex;
    gap: 4px;
}

@media only screen and (max-width: 768px) {
    .bouncing-text {
        font-size: 36px;
    }
}

.letter {
    display: inline-block;
    animation: bounceLetter 1.5s ease-in-out forwards;
    opacity: 0;
}

/* Delays individuales para cada letra de CONTACT */
.text-1 .letter:nth-child(1) {
    animation-delay: 0s;
}

.text-1 .letter:nth-child(2) {
    animation-delay: 0.04s;
}

.text-1 .letter:nth-child(3) {
    animation-delay: 0.08s;
}

.text-1 .letter:nth-child(4) {
    animation-delay: 0.12s;
}

.text-1 .letter:nth-child(5) {
    animation-delay: 0.16s;
}

.text-1 .letter:nth-child(6) {
    animation-delay: 0.20s;
}

.text-1 .letter:nth-child(7) {
    animation-delay: 0.24s;
}

/* Delays individuales para cada letra de SOLUTIONS */
.text-2 .letter:nth-child(1) {
    animation-delay: 1.6s;
}

.text-2 .letter:nth-child(2) {
    animation-delay: 1.64s;
}

.text-2 .letter:nth-child(3) {
    animation-delay: 1.68s;
}

.text-2 .letter:nth-child(4) {
    animation-delay: 1.72s;
}

.text-2 .letter:nth-child(5) {
    animation-delay: 1.76s;
}

.text-2 .letter:nth-child(6) {
    animation-delay: 1.80s;
}

.text-2 .letter:nth-child(7) {
    animation-delay: 1.84s;
}

.text-2 .letter:nth-child(8) {
    animation-delay: 1.88s;
}

.text-2 .letter:nth-child(9) {
    animation-delay: 1.92s;
}

@keyframes bounceLetter {
    0% {
        transform: translateY(-600px);
        opacity: 0;
    }

    50% {
        transform: translateY(0);
        opacity: 1;
    }

    60% {
        transform: translateY(-30px);
    }

    70% {
        transform: translateY(0);
    }

    78% {
        transform: translateY(-15px);
    }

    84% {
        transform: translateY(0);
    }

    90% {
        transform: translateY(-8px);
    }

    98% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

/* Top bar */
.topbar {
    background-color: var(--green-color);
    color: var(--white-color);
    text-align: center;
    padding: 6px 40px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
}

.topbar a {
    text-decoration: none;
    color: var(--white-color);
}

@media only screen and (max-width: 768px) {
    #navbar .topbar {
        padding: 6px 20px;
    }
}

.language-selector {
    position: relative;
    color: var(--white-color);
}

.selected-language {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    gap: 10px;
}

.language-options {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    list-style: none;
    overflow: hidden;
    z-index: 10;
}

.language-selector.open .language-options {
    display: block;
}

.language-selector.open i {
    transform: rotate(180deg);
}

.language-options li {
    border-bottom: 1px solid #e0e0e0;
}

.language-options li:last-child {
    border-bottom: none;
}

.language-options a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--black-color);
}

.language-options a:hover {
    background: #f5f5f5;
}

/* Navbar Container */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 70px;
}

.navbar-container.scrolled {
    background-color: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#navbar.show-menu .navbar-container.scrolled {
    box-shadow: unset;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 110px;
}

@media only screen and (max-width: 1600px) {
    .nav-links {
        gap: 50px;
    }
}

@media only screen and (max-width: 1260px) {
    .desktop-menu {
        display: none !important;
    }

    .navbar-container .hamburger {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .navbar-container {
        padding: 0px 20px;
    }
}

.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--white-color);
    font-weight: normal;
}

.navbar-container.scrolled .nav-links a {
    color: var(--blue-color);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown:hover i {
    transform: rotate(180deg);
}

.navbar-container.scrolled .dropdown i {
    color: var(--green-color);
}

.dropbtn {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 30px 15px;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: fixed;
    transform: translate(-50%);
    left: 50%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding: 20px 30px;
    width: fit-content;
    justify-content: space-between;
    z-index: 999;
}

.dropdown:hover .dropdown-content {
    display: flex;
    gap: 15px;
}

.dropdown-content ul {
    list-style: none;
    margin: 0 5px;
    min-width: 200px;
    border-right: 1px solid #d1d1d15e;
    padding-right: 30px;
}

.dropdown-content ul:last-child {
    border-right: none;
    padding-right: 0;
}

@media only screen and (max-width: 1450px) {

    .dropdown-content ul {
        min-width: 150px;
        padding-right: 0;
    }
}


.dropdown-content li {
    margin: 10px 0;
}

.dropdown-content li strong {
    display: block;
    color: #7EB64C;
    margin-bottom: 5px;
}

.dropdown-content li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    margin: 0;
}

.dropdown-content li a:hover {
    font-weight: bold;
}

.contact-btn {
    background-color: #7EB64C;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
}

/* Menú móvil */
.hamburger {
    color: var(--white-color);
    padding: 20px 0;
    font-size: 22px;
    cursor: pointer;
    display: none;
}

.close-menu {
    color: var(--green-color);
    font-size: 22px;
    cursor: pointer;
    display: none;
}

.navbar-container.scrolled .hamburger {
    color: var(--blue-color);
}

#navbar.show-menu .navbar-container {
    position: relative;
    height: 70px;
}

#navbar.show-menu .navbar-container .hamburger {
    display: none;
}

#navbar.show-menu .navbar-container .close-menu {
    display: block;
}

.mobile-menu {
    display: none;
}

.mobile-menu.show {
    display: flex;
    flex-direction: column;
    max-height: calc(100dvh - 100px);
    height: calc(100dvh - 100px);
    padding: 20px;
}

.mobile-menu .nav-links-mobile {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    gap: 15px;
    overflow: auto;
    scrollbar-width: thin;
}

.mobile-menu a,
.mobile-menu span {
    font-size: 24px;
    color: var(--blue-color);
    text-decoration: none;
    cursor: pointer;
}

.dropdown-mobile.show i {
    transform: rotate(180deg);
}

.mobile-menu .mobile-dropdown {
    display: none;
    padding: 10px;
}

.mobile-menu .mobile-dropdown.show {
    display: inline;
}

.mobile-menu .mobile-dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
}

.mobile-menu .mobile-dropdown li {
    list-style-type: none;
}

.mobile-menu .mobile-dropdown a {
    color: var(--black-color);
    font-size: 16px;
}

.mobile-menu .mobile-dropdown strong {
    color: var(--green-color);
}

/* Modals */

.close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

/* Chat Button */

.chat-button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    border-radius: 10px 10px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    background-color: var(--green-color);
    padding: 15px;
    color: var(--white-color);
}

.chat-button::after {
    width: 0;
    position: absolute;
    content: '';
    display: block;
    border-width: 10px 15px 0 0;
    border-style: solid;
    border-color: var(--green-color) transparent;
    bottom: -10px;
    left: 0;
}

@media only screen and (max-width: 768px) {

    .chat-button {
        display: none;
    }
}

/* Fixed CTA */
.fixed-cta {
    display: none;
}

@media only screen and (max-width: 768px) {

    .fixed-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        justify-content: space-around;
        gap: 10px;
        padding: 10px;
        width: 100%;
        background-color: var(--white-color);
        border-top: 1px solid lightgray;
        text-align: center;
        z-index: 3;
    }

    .fixed-cta .cta {
        display: block;
        background-color: var(--white-color);
        color: var(--green-color);
        border: 1px solid var(--green-color);
        width: 100%;
    }

    .fixed-cta .call {
        background-color: var(--green-color);
        color: var(--white-color);
        padding: 12px 24px;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        cursor: pointer;
        text-decoration: none;
        width: 100%;
    }
}

/* Modal Contact */
#modal-contact-overlay {
    background-color: #000;
    height: 100%;
    left: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: opacity .5s ease;
    width: 100%;
    z-index: 9999;
}

#modal-contact.open+#modal-contact-overlay {
    opacity: .75;
    pointer-events: auto;
}

#modal-contact {
    display: none;
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translate(-50%);
    max-width: 625px;
    padding: 30px;
    border-radius: 32px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: var(--white-color);
    z-index: 99999999;
}

#modal-contact.open {
    display: block;
}

#modal-contact .contact-info p {
    font-size: 15px;
}

#modal-contact .contact-info a {
    text-decoration: none;
}

#modal-contact .contact-info .container-flex {
    justify-content: space-evenly;
    margin: 15px 0;
}

@media only screen and (max-width: 768px) {
    #modal-contact {
        width: 95%;
        height: calc(100dvh - 50px);
        max-height: calc(100dvh - 50px);
        overflow: hidden;
        padding: 15px;
    }

    #modal-contact .close {
        top: 20px;
        right: 15px;
    }

    #modal-contact h2 {
        margin-top: 0;
        font-size: 22px;
    }

    #modal-contact p {
        display: none;
    }

    #modal-contact .contact-form {
        overflow: auto;
        margin: 20px auto;
        height: calc(100dvh - 130px);
    }

    #modal-contact .contact-form textarea {
        min-height: 0;
        height: 44px;
    }

    #modal-contact .contact-info {
        display: none;
    }
}


/* Bloques */
.main-banner {
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    z-index: 4;
}

.main-banner.small {
    height: 400px;
}

.main-banner.gracias {
    height: 800px;
    align-items: center;
    justify-content: center;
}

.main-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

@media only screen and (max-width: 768px) {
    .main-image {
        object-position: 80%;
    }
}

.main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.main-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 750px;
}

/* Breadcumbs */

.breadcumbs {
    font-size: 14px;
}

.breadcumbs a,
.breadcumbs a span {
    text-decoration: none;
    color: var(--blue-color);
}

.breadcumbs span {
    color: var(--gray-color)
}

/* Cards Simple*/
.cards-simple img {
    width: 32px;
    height: 32px;
}

@media only screen and (max-width: 768px) {
    .cards-simple .container-flex {
        flex-direction: column;
    }
}

/* Clientes */
.clients h2 {
    font-size: 22px;
}

.clients .splide__list {
    justify-content: center;
    gap: 80px;
}

.carrusel-clients {
    margin-top: 40px;
}

.clients img {
    height: 40px;
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}

.clients img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@media only screen and (max-width: 950px) {
    .clients .splide__list {
        justify-content: unset;
        gap: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .clients h2 {
        text-align: left;
    }
}

/* Carrusel */

.carrusel-cards {
    margin-top: 40px;
}

.carrusel img {
    border-radius: 15px;
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    color: var(--white-color);
}

.carousel-content p {
    border: 1px solid var(--white-color);
    padding: 10px;
    border-radius: 35px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.splide__pagination {
    bottom: unset;
}

.splide__pagination__page.is-active {
    background: var(--green-color);
}

/* Features */
.features-list {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.5;
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.features img {

    border-radius: 12px;
    object-fit: cover;
}

@media only screen and (max-width: 1100px) {
    .features img {
        display: none;
    }
}


/* CTA Image */

.cta-image-container {
    position: relative;
    height: 600px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 15px;
    object-position: top left;
}

.cta-image-content {
    position: absolute;
    z-index: ;
    max-width: 500px;
    bottom: 30px;
    left: 30px;
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

@media only screen and (max-width: 768px) {
    .cta-image img {
        object-position: 55%;
    }
}

/* FAQ */
@media only screen and (max-width: 768px) {
    .faq .section-label {
        text-align: left;
    }
}

.faq-container {
    max-width: 800px;
    margin: 20px auto;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0;
}

.faq-item h3 {
    color: inherit;
    font-weight: 400;
    line-height: 1.4;
    font-size: 16px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: var(--gray-color);
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--blue-color);
}

.faq-question.active {
    color: var(--blue-color);
}

.faq-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer.active {
    max-height: 200px;
}

.faq-answer-content {
    padding: 0 0 24px 0;
    color: var(--gray-color);
    font-size: 14px;
    line-height: 1.6;
}

/* Blog */

@media only screen and (max-width: 768px) {
    .blog .articles {
        flex-direction: column;
    }
}

.articles article {
    background: var(--white-color);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #EEEEEC;
    border-radius: 8px;
}

.articles article:hover {
    transform: translateY(-5px);
}

.articles a {
    text-decoration: none;
}

.articles img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.article-content {
    padding: 10px;
}

.article-content span {
    display: flex;
    gap: 5px;
    color: var(--green-color);
    align-items: center;
}

.article-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Form Contact */

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-label {
    display: block;
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 8px;
    font-weight: 400;
}

.form-input {
    font-family: "Instrument Sans", FontAwesome, sans-serif;
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    color: var(--gray-color);
    background-color: var(--white-color);
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #7CB342;
}

.form-input::placeholder {
    color: #999;
}

input:user-invalid {
    border: 2px solid red;
}

input.invalid, textarea.invalid {
    border: 2px solid red;
}

input[name='name'] {
    display: none;
}

.form-textarea {
    font-family: "Instrument Sans", FontAwesome, sans-serif;
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background-color: white;
    transition: border-color 0.3s ease;
    min-height: 120px;
    resize: vertical;
}

.form-textarea:focus {
    outline: none;
    border-color: #7CB342;
}

.form-textarea::placeholder {
    color: #999;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.privacy-text {
    font-size: 12px;
    color: #666;
    max-width: 400px;
}

.privacy-link {
    color: #7CB342;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-button {
    background-color: #7CB342;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.submit-button:hover {
    background-color: #6ba83a;
}

.submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.contact-form .error {
    display: none;
    text-align: left;
    color: red;
    font-size: 12px;
    margin-top: 17px;
}

@media only screen and (max-width: 768px) {
    .contact .section-container {
        text-align: left;
    }

    .form-row {
        flex-direction: column;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .submit-button {
        width: 100%;
    }
}

/* Footer */

.footer {
    background-color: var(--green-color);
    z-index: 4;
    color: var(--white-color);
    padding: 50px 80px 80px 80px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.footer-column.badge img {
    width: 40px;
}

.footer-column p.header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 0.8;
}

.company-info {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
}

.company-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.company-info p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    margin-bottom: 8px;
    font-weight: 400;
    color: var(--white-color);
}

.company-info a {
    font-size: 14px;
    text-decoration: none;
    color: var(--white-color);
    margin-top: 20px;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 4px;
}

.footer-logo {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
}

.footer-extra {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--green-color);
    left: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    height: 20px;
}

.footer-extra a {
    text-decoration: none;
    color: var(--white-color);
}

@media only screen and (max-width: 768px) {
    .footer {
        padding: 50px 25px;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0;
    }

    .footer-column {
        width: 45%;
    }

    .company-info {
        order: 1;
    }

    .badge {
        position: absolute;
        bottom: 10px;
        right: 10px;
        text-align: right;
    }

    .footer-extra {
        position: relative;
        background: none;
        display: flex;
        justify-content: center;
        gap: 10px;
        height: auto;
        flex-direction: column;
        margin-top: 15px;
    }

    .footer-logo {
        bottom: 0;
    }
}

/* Text Triple */

.text-triple .container-flex {
    gap: 20px;
}

.text-triple h2,
.text-triple p {
    flex: 1;
}

@media only screen and (max-width: 768px) {
    .text-triple .container-flex {
        flex-direction: column;
    }
}

/* Cards */
.cards-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
    margin-top: 30px;
}

.card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.card-image {
    width: 256px;
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.card-text {
    position: absolute;
    bottom: 0;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
}

@media only screen and (max-width: 768px) {
    .cards-container {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .card {
        width: 45%;
    }
}

/* Multi Text Images */
.multi-text-images .second {
    text-align: center;
}

.multi-text-images img {
    width: 70%;
}

.multi-text-images .third a {
    margin-top: 20px;
}

@media only screen and (max-width: 768px) {
    .multi-text-images .container-flex {
        flex-direction: column;
    }

    .multi-text-images img {
        width: 100%;
    }

    .multi-text-images .third img {
        display: none;
    }
}

/* CTA Text */
.cta-text p {
    color: #7cb342;
    font-size: 40px;
    max-width: 1000px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 auto;
    letter-spacing: -0.25px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .cta-text .section-container {
        padding: 60px 20px 0;
    }

    .cta-text h2 {
        font-size: 32px;
        line-height: normal;
    }
}

/* Map */
.map-items {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.map-item {
    flex-basis: calc(50% - 20px);
}

.map iframe {
    width: 100%;
    height: 100%;
}

@media only screen and (min-width: 1280px) {
    .map iframe {
        width: 80%;
    }
}

@media only screen and (min-width: 1600px) {
    .map iframe {
        width: 70%;
    }
}

@media only screen and (max-width: 768px) {
    .map .container-flex {
        flex-direction: column;
    }

    .map .map-items {
        flex-direction: column;
    }

    .map iframe {
        width: 100%;
    }
}

/* Text Double */
.text-double .container-flex {
    gap: 20px;
}

@media only screen and (max-width: 768px) {
    .text-double .container-flex {
        flex-direction: column;
    }
}

/* Image Triple */
@media only screen and (max-width: 768px) {
    .image-triple .container-flex {
        flex-wrap: nowrap;
        overflow: auto;
        scrollbar-width: thin;
    }

    .image-triple img {
        width: 250px;
    }
}

/* Cards Extra */
.cards-extra .container-flex {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.cards-extra .card-extra {
    width: 30%;
    padding: 10px;
}

.cards-extra .card-extra:hover {
    background-color: #F8F7F7;
    border-radius: 15px;
}

.cards-extra .card-extra a {
    text-decoration: none;
    color: var(--black-color);
}

.cards-extra .icon i {
    color: #4D702E;
    background-color: #7EB64C80;
    padding: 20px;
    display: flex;
    justify-content: center;
    border-radius: 20px;
}


@media only screen and (max-width: 768px) {
    .cards-extra .container-flex {
        flex-direction: column;
    }

    .cards-extra .card-extra {
        width: 100%;
    }
}

/* Clients Extra */
.clients-extra .container-flex {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}

.clients-extra .client-extra {
    width: 20%;
}

.clients-extra .client-extra img {
    width: 60%;
}

@media only screen and (max-width: 768px) {

    .clients-extra .client-extra {
        width: 40%;
    }
}

/* Servicios Avanzados */
.llamadas-salientes .container-flex,
.llamadas-entrantes .container-flex,
.servicios-avanzados .container-flex {
    flex-wrap: nowrap;
}