/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* Texto general */
body,
p,
span,
a,
li,
input,
textarea,
select,
button {
    font-family: 'Open Sans', sans-serif;
}

/* Títulos */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;

}

h1 {
    font-size: clamp(1.75rem, 5vw, 3.8125rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.375rem, 4vw, 3rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.375rem, 3vw, 2.4375rem);
    line-height: 1.2;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.9375rem);
    line-height: 1.2;
}

.title-white h1,
.title-white h2,
.title-white h3,
.title-white h4 {
    color: #ffffff;
}

.p-white {
    color: #ffffff;
    line-height: 30px;
}

/* ============================================
   Container
   ============================================ */
.site-main,
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* ============================================
   Header Layout: Logo left, Content right
   ============================================ */


.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;

    background-color: transparent;
    transition: background-color .4s ease, box-shadow .4s ease;
}

@media(max-width:768px) {
    .site-header.toggled {
        background-color: #000000;
    }
}

.site-header.scrolled {
    background-color: #000000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
}

.header-layout {
    display: flex;
    align-items: stretch;
    min-height: 100px;
}

/* --- Left: Logo Column --- */
.header-logo-col {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px 20px 10px 0;
}

.header-logo-col .custom-logo-link {
    display: flex;
    align-items: center;
}

.header-logo-col .custom-logo-link img {
    max-height: 80px;
    width: auto;
}

/* --- Right: Content Column --- */
.header-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 0 0 20px;
}

/* --- Top Row: Widget --- */
.header-top-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 0 8px 0;
    height: 50px;
}

.header-top-row .widget {
    margin: 0;
}

.header-top-row p {
    color: #ffffff;
}

.header-top-row p a{
    color: #cccccc;
	text-decoration: none;
	
}

.header-top-row p a:hover
 {
    color: #00d8bc;
}

.header-top-row p img{
    margin-right: 5px;
	
}


.header-top-row .widget-title {
    display: none;
}

/* --- Separator --- */
.header-separator {
    height: 1px;
    background: #e0e0e0;
    width: 100%;
    opacity: 0.5;
}

/* --- Bottom Row: Navigation --- */
.header-bottom-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    padding: 8px 0;
}

/* --- Menu Toggle (Hamburger) --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}


.menu-toggle .menu-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
}

.menu-toggle .menu-toggle-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-toggle-text {
    font-weight: 600;
}

/* --- Main Navigation --- */
.site-header .main-navigation {
    display: block;
    width: 100%;
}

.site-header .main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 0;
}

.site-header .main-navigation ul li {
    position: relative;
    margin: 0;
}

.site-header .main-navigation ul li a {
    display: block;
    padding: 5px 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s, color 0.3s;

    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* .site-header .main-navigation ul li a:hover,
.site-header .main-navigation ul li.current-menu-item>a,
.site-header .main-navigation ul li.current_page_item>a {
    color: #00d8bc;
    border-radius: 4px;

} */



/* Línea */
.site-header .main-navigation ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #00D8BC;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
}

/* Triángulo */
.site-header .main-navigation ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid #00D8BC;
    opacity: 0;
    transition: opacity .3s ease;
}

/* Hover y activo */
.site-header .main-navigation ul li a:hover::before,
.site-header .main-navigation ul li.current-menu-item>a::before,
.site-header .main-navigation ul li.current_page_item>a::before {
    transform: scaleX(1);
}

.site-header .main-navigation ul li a:hover::after,
.site-header .main-navigation ul li.current-menu-item>a::after,
.site-header .main-navigation ul li.current_page_item>a::after {
    opacity: 1;
}










/* Submenus */
.site-header .main-navigation ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    min-width: 200px;
    flex-direction: column;
}

.site-header .main-navigation ul li:hover>ul,
.site-header .main-navigation ul li.focus>ul {
    display: flex;
}

.site-header .main-navigation ul ul li a {
    padding: 12px 20px;
    white-space: nowrap;
    border-radius: 0;
}

.site-header .main-navigation ul ul ul {
    left: 100%;
    top: 0;
}

.site-header .main-navigation ul ul li:hover>ul,
.site-header .main-navigation ul ul li.focus>ul {
    display: flex;
}

/* ============================================
   Hero Home
   ============================================ */
.hero-home {
    position: relative;
    margin-top: -170px;
    padding-top: 160px !important;
    overflow: visible !important;
    max-height: 894px;

}

@media(max-width:768px) {
    .hero-home {
        margin-top: -190px;
    }
}

.hero-home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0) 0%,
            rgb(0, 0, 0) 50%);
    opacity: 0.8;
    width: 100%;
    height: 50%;
    z-index: 1;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to left,
            rgba(0, 216, 188, 0) 0%,
            rgba(0, 216, 188, 1) 50%,
            rgba(0, 216, 188, 0) 100%);
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 1;
}

.hero-home h1 {
    color: #ffffff;
    max-width: 1053px;
    margin: 0 auto;
    font-weight: 700 !important;
    padding-top: 50px;
}

.hero-home h1 img {
    position: absolute;
}

.hero-home h1 img:nth-of-type(1) {
    bottom: 55px;
    left: 40px;
}

.hero-home h1 img:nth-of-type(2) {
    bottom: 55px;
    right: 40px;
}

@media(max-width:930px) {
    .hero-home h1 img {
        display: none;
    }
}




.container-hero {
    position: relative;
    z-index: 2;

}

.rec-exp-ing {
    border-radius: 20px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    padding: 10px;
    top: 50px;
    height: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);

}

@media(min-width: 960px) {
    .rec-exp-ing {
        max-width: 902px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.rec-exp-ing.home {
    max-width: 100%;
}

.rec-exp-ing img {
    border-radius: 20px 0 0 20px;
}

@media(max-width: 767px) {
    .rec-exp-ing img {
        border-radius: 20px;
    }
}

.rec-exp-ing .vc_column_container .vc_column-inner {
    padding: 0 !important;
}


.rec-exp-ing .vc_column_container .vc_column-inner .wpb_wrapper .wpb_single_image {
    margin-bottom: 0 !important;
}


.title-exp-ing {
    margin-bottom: 0 !important;
}

.title-exp-ing h2 {
    margin-bottom: 0 !important;
    font-weight: 400;
    padding-left: 10px;
    margin-top: 10px;

}

.title-exp-ing h2 strong {
    font-weight: 700;
}

.rec-exp-ing p {
    padding-left: 10px;
    line-height: 30px;
    padding-right: 10px;
    padding-top: 20px;
}

@media(min-width: 768px) {
    .rec-exp-ing p {
        padding-right: 50px;
    }

    .rec-exp-ing h2 {
        padding-right: 50px;
    }

}


.rec-exp-ing .btn-green p {
    padding-top: 0;
}


/*Boton Verde*/
.btn-green a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 55px;
    border-radius: 5px;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    text-transform: uppercase;
}

@media(max-width: 768px) {
    .btn-green a {
        padding: 15px 20px;
    }

}

.btn-green a::before,
.btn-green a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5px;
    z-index: -1;
    transition: opacity .4s ease;
}

.btn-green a::before {
    background: linear-gradient(to left bottom, #00D8BC, #00D8BC, #088070);
}

.btn-green a::after {
    background: linear-gradient(to left, #00D8BC, #000000);
    opacity: 0;
}

.btn-green a:hover::after {
    opacity: 1;
}


/*SEPARADORES H2*/

.line-separator h2 {
    position: relative;

}

.line-separator h2::before {
    content: "";
    position: absolute;
    left: 5px;
    bottom: -16px;
    width: 9px;
    height: 9px;
    background: #049A86;
    border-radius: 50%;
    z-index: 1;
}

.line-separator h2::after {
    content: "";
    position: absolute;
    left: 9px;
    bottom: -14px;
    width: 160px;
    height: 3px;
    background: linear-gradient(to right,
            #00D8BC 0%,
            #00D8BC 70%,
            rgba(0, 216, 188, 0) 100%);
}


/*SEPARADORES H3*/

.line-separator h3 {
    position: relative;

}

.line-separator h3::before {
    content: "";
    position: absolute;
    left: 5px;
    bottom: -16px;
    width: 9px;
    height: 9px;
    background: #00D8BC;
    border-radius: 50%;
    z-index: 1;
    filter: blur(2px);
}

.line-separator h3::after {
    content: "";
    position: absolute;
    left: 9px;
    bottom: -14px;
    width: 160px;
    height: 3px;
    background: linear-gradient(to right,
            #00D8BC 0%,
            #00D8BC 70%,
            rgba(0, 216, 188, 0) 100%);
    filter: blur(1px);
}



.sec-sol-home {
    margin-top: 100px;
}

@media(max-width: 767px) {
    .sec-sol-home {
        margin-top: 540px;
    }
}


@media(max-width: 481px) {
    .sec-sol-home {
        margin-top: 580px;
    }
}

@media(max-width: 467px) {
    .sec-sol-home {
        margin-top: 620px;
    }
}

@media(max-width: 417px) {
    .sec-sol-home {
        margin-top: 680px;
    }
}

@media(max-width: 383px) {
    .sec-sol-home {
        margin-top: 730px;
    }
}

@media(max-width: 332px) {
    .sec-sol-home {
        margin-top: 760px;
    }
}

.sec-sol-home h3 {
    font-weight: 400;
    position: relative;
    max-width: 691px;
    margin: 0 auto;


}

.container-title-sol {
    padding-bottom: 30px;
    ;
}

.sec-sol-home h3 strong {
    font-weight: 600 !important;
}

.sec-sol-home h3 img {
    position: absolute;

}

.sec-sol-home h3 img:nth-of-type(1) {
    top: 70px;
    left: -20px;
}

.sec-sol-home h3 img:nth-of-type(2) {
    bottom: 15px;
    right: -20px;
}

@media(max-width: 1220px) {
    .sec-sol-home h3 img:nth-of-type(1) {
        top: 60px;
        left: -20px;
    }

}

@media(max-width: 1024px) {
    .sec-sol-home h3 img:nth-of-type(1) {
        top: 50px;
        left: -20px;
    }

}

@media(max-width: 910px) {
    .sec-sol-home h3 img:nth-of-type(1) {
        top: 40px;
        left: -20px;
    }

}

@media(max-width: 780px) {
    .sec-sol-home h3 img:nth-of-type(1) {
        top: 35px;
        left: -20px;
    }

}

@media(max-width: 497px) {
    .sec-sol-home h3 img {
        display: none;
    }

}


.sec-sol-home .card-sol {
    padding: 25px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    min-height: 143px;

}

.sec-sol-home .card-sol ul {
    margin: 0;
    padding: 0;
}


.sec-sol-home .card-sol ul li {
    position: relative;
    padding-left: 80px;
    list-style: none;
    line-height: 30px;
}


.sec-sol-home .card-sol img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}


.line-separator-green-btn p {
    position: relative;
}

.line-separator-green-btn img {
    position: absolute;
}

.line-separator-green-btn img:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%);
    left: 80px;
}

.line-separator-green-btn img:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    right: 80px;
}

.line-separator-green-btn.interna img:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}

.line-separator-green-btn.interna img:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}



@media(max-width: 1024px) {
    .line-separator-green-btn img:nth-of-type(1) {
        left: 0;
    }

    .line-separator-green-btn img:nth-of-type(2) {
        right: 0;
    }
}


@media(max-width:920px) {
    .line-separator-green-btn img {
        display: none;
    }
}


.rec-sec-comp-home {
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    max-width: 572px;
    margin-bottom: 50px;
    margin-top: 20px;
    padding: 48px;
}

.rec-sec-comp-home h3 {
    margin-top: 0;
    color: #ffffff;
}

.rec-sec-comp-home p {
    color: #ffffff;
}

.rec-sec-comp-home .vc_column_container>.vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.rec-sec-comp-home .vc_column_container>.vc_column-inner .wpb_wrapper .wpb_text_column:nth-of-type(2) {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

@media(max-width: 500px) {
    .sec-cober h3 {
        margin-top: 0;
    }
}

.sec-cober .line-separator h3::before {
    filter: blur(0);
}

.sec-cober .line-separator h3::after {
    filter: blur(0);
}

.sec-comp {
    position: relative;
}

.sec-comp::before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 70%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 216, 188, 0), rgba(0, 216, 188, 1));

}

.banner-final-home h4 {
    color: #ffffff;
    font-weight: 700 !important;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.banner-final-home h4 img {
    position: absolute;
}

.banner-final-home h4 img:nth-of-type(1) {
    bottom: 10px;
    left: -20px;
}

.banner-final-home h4 img:nth-of-type(2) {
    bottom: 10px;
    right: -20px;
}


@media(max-width:600px) {
    .banner-final-home h4 img:nth-of-type(1) {
        bottom: 5px;
        left: -40px;
    }

    .banner-final-home h4 img:nth-of-type(2) {
        bottom: 5px;
        right: -40px;
    }
}

.banner-final-home p {
    color: #ffffff;
    font-weight: 600;
    max-width: 937px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
}




/*Boton Blanco*/
.btn-white a {
    position: relative;
    display: inline-block;
    border: 1px solid 00D8BC;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 65px;
    border-radius: 5px;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
}

.btn-white a::before,
.btn-white a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5px;
    z-index: -1;
    transition: opacity .4s ease;
}

.btn-white a::before {
    background: #ffffff;
}

.btn-white a::after {
    background: linear-gradient(to right, #000000, #545454);
    opacity: 0;
}

.btn-white a:hover::after {
    color: #ffffff;
    opacity: 1;
}

.btn-white a:hover {
    color: #ffffff;
}





@media(max-width: 600px) {
    h1 br {
        display: none;
        font-weight: 600 !important;
    }

    h2 br {
        display: none;
    }

    h3 br {
        display: none;
    }

}


/*#########SERVICIOS Y SOLUCIONES#########*/

@media(min-width: 768px) {
    .hero-home.interna {
        padding-top: 250px !important;
    }
}

.hero-home.interna::after {
    content: '';
    background: transparent !important;
}

.hero-home.interna::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to left bottom,
            rgba(0, 0, 0, 0) 25%,
            rgba(0, 216, 188, 1) 60%,
            rgba(0, 216, 188, 0) 100%);
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 1;
}

.hero-home.interna.horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to top,
            rgba(0, 216, 188, 0) 0%,
            rgba(0, 216, 188, 1) 50%,
            rgba(0, 216, 188, 0) 100%);
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 1;
}

.title-hero-interna h1 {
    max-width: 877px;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 500 !important;
    position: relative;
}



.title-hero-interna h1 strong {
    font-weight: 700 !important;
}


.rec-exp-ing.interna img {
    border-radius: 16px;
}

@media(max-width: 768px) {
    .rec-exp-ing.interna img {
        width: 100% !important;
        border-radius: 16px 16px 0 0;
    }

    .img-rec-exp-ing>.wpb_wrapper {
        width: 100% !important;
    }

    .img-rec-exp-ing>.wpb_wrapper>.vc_single_image-wrapper {
        width: 100% !important;
    }
}

.rec-exp-ing.interna>.vc_column_container:nth-of-type(2)>.vc_column-inner>.wpb_wrapper>.wpb_text_column {
    margin-bottom: 0 !important;
}

.rec-exp-ing.interna>.vc_column_container:nth-of-type(2)>.vc_column-inner>.wpb_wrapper>.wpb_text_column>.wpb_wrapper>p {
    margin-top: 0 !important;
}

.sec2-interna {
    margin-top: 70px;
}


@media(max-width: 768px) {
    .sec2-interna .vc_row .wpb_column:nth-of-type(2) {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sec2-interna.nosotros {
        margin-top: -40px;
        padding-left: 25px;
        padding-right: 25px;
    }

}

.sec2-interna p {
    line-height: 30px;
}

.sec2-interna .title-nuestra-tra p strong {
    font-size: 25px;
    font-weight: 500;
    line-height: 35px;
    font-family: 'Poppins', sans-serif;

}

@media(max-width: 768px) {
    .sec2-interna {
        margin-top: 150px;
    }

    .sec2-interna .title-nuestra-tra p strong {
        font-size: 20px;
        line-height: 30px;
    }

}

.sec2-interna img {
    border-radius: 15px;

}

.sec2-interna h2 {
    max-width: 877px;
    font-size: clamp(1.375rem, 3vw, 2.4375rem);
    font-weight: 500 !important;
    margin-top: 0;
}

.sec2-interna h2 strong {
    font-weight: 700 !important;
}

.title-hero-interna img:nth-of-type(1) {
    top: 70px !important;
}

.title-hero-interna img:nth-of-type(2) {
    top: 70px !important;
}

@media(min-width: 768px) {
    .sec3-interna {
        margin-top: 70px;
    }
}

.list-sec3-interna ul {
    margin: 0;
    padding: 0;
}

.list-sec3-interna ul li {
    position: relative;
    padding-left: 90px;
    list-style: none;
    margin-bottom: 50px;
    line-height: 30px;
}

.list-sec3-interna img {
    position: absolute;
    top: 0;
    left: 0;
}

.sec3-img-interna img {
    border-radius: 15px;
}

@media(max-width: 768px) {
    .list-sec3-interna ul li {
        margin-bottom: 10px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .list-sec3-interna ul li img {
        position: relative;
        display: block;
        margin-top: 20px;
        margin-bottom: 10px !important;
    }

    .sec3-img-interna img {
        border-radius: 0;
    }
}



.sec4-interna {
    margin-top: 70px;
}

.sec4-interna p {
    max-width: 965px;
    margin: 0 auto;
}

@media(max-width: 768px) {
    .sec4-interna p {
        padding-left: 20px;
        padding-right: 20px;
        text-align: start !important;
    }
}

.title-sec4-interna h2 {

    max-width: 877px;
    font-size: clamp(1.375rem, 3vw, 2.4375rem);
    font-weight: 500 !important;
    margin: 0 auto;
}

.title-sec4-interna h2 strong {
    font-weight: 700 !important;
}

.title-sec4-interna img:nth-of-type(1) {
    position: relative;
    top: -10px;
    margin-right: 15px;

}

.title-sec4-interna img:nth-of-type(2) {
    position: relative;
    top: -10px;
    margin-left: 15px;
}

@media(max-width: 768px) {
    .title-sec4-interna h2 {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: -50px;
        position: relative;
        text-align: start !important;
    }

    .title-sec4-interna h2 img {
        display: none;

    }

    .title-sec4-interna h2::after {
        content: "";
        position: absolute;
        left: 19px;
        bottom: -14px;
        width: 160px;
        height: 3px;
        background: linear-gradient(to right, #00D8BC 0%, #00D8BC 70%, rgba(0, 216, 188, 0) 100%);
    }

    .title-sec4-interna h2::before {
        content: "";
        position: absolute;
        left: 15px;
        bottom: -16px;
        width: 9px;
        height: 9px;
        background: #049A86;
        border-radius: 50%;
        z-index: 1;
    }
}

.card-serv {
    border-radius: 15px;
    max-width: 376px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.card-serv img {
    border-radius: 9px;
}

.card-serv p {
    flex-grow: 1;
}

.card-serv p strong {
    display: block;
    padding-top: 10px;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 30px;
}


/* Forzar que los items del carrusel ocupen todo el alto */
.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
    padding-bottom: 100px;

}


@media(min-width:768px) {
    .sec6-interna {
        margin-top: -120px;
        margin-bottom: 40px;
    }
}

.sec6-interna {
    margin-top: -30px;
    margin-bottom: 0;

}


.sec4-interna .line-separator-green-btn img:nth-of-type(1) {
    left: -40px !important;
}

.sec4-interna .line-separator-green-btn img:nth-of-type(2) {
    right: -40px !important;
}



.banner-final-home.interna h4 {
    max-width: 880px !important;
}

.banner-final-home.interna h4 img:nth-of-type(1) {
    left: 40px !important;
}

.banner-final-home.interna h4 img:nth-of-type(2) {
    right: 40px !important;
}


.sec7-interna {
    max-height: 745px;
    overflow: visible !important;
}

@media(max-width: 1024px) {
    .sec7-interna {
        max-height: 100%;
    }
}

.sec7-interna h3 {
    margin-top: 70px;
    font-weight: 400;
}



.sec7-interna h2 strong {
    font-weight: 700;
}

.container-card-gestion-int {
    margin-top: 70px;
}

@media(max-width:768px) {
    .sec7-interna h3 {
        margin-top: 0;
    }

    .container-card-gestion-int {
        margin-top: 0;
    }
}

.container-card-gestion-int .vc_column_container:nth-of-type(2) {
    position: relative;
    top: 50px;
}


.card-gestion-int {
    flex: 1;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    padding: 23px;
    height: 320px;

}

@media(max-width: 1024px) {

    .card-gestion-int {
        height: 100%;
    }
}

@media(max-width: 768px) {
    .container-card-gestion-int .vc_column_container:nth-of-type(2) {
        top: 0;
    }
}



@media (min-width: 820px) {
    .img-infra-int img {
        position: relative;
        top: -120px;
        border-radius: 15px;
    }
}

.container-infra-int p {
    font-size: 25px;
    font-weight: 500;
    line-height: 35px;
    color: #555555;
    margin-top: 10px;

}

@media(max-width: 768px) {

    .container-infra-int h4 {
        margin-top: 0 !important;
    }

    .container-infra-int p {
        font-size: 20px;
        line-height: 30px;
    }
}

.container-infra-int h4 {
    max-width: 448px;
    margin-bottom: 15px;
}

.sec8-interna h3 {
    font-weight: 400;
    position: relative;
    margin-top: 0;
}

.sec8-interna h3 strong {
    font-weight: 700;

}

.sec8-interna h3 img {
    position: absolute;
}

.sec8-interna p {
    max-width: 964px;
    margin: 0 auto;
}

@media(max-width: 820px) {
    .sec8-interna h3 img {
        display: none;
    }
}


@media(max-width: 768px) {

    .sec8-interna {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }



    .sec8-interna h3 {
        position: relative;
        text-align: start !important;
    }

    .sec8-interna h3::before {
        content: "";
        position: absolute;
        left: 5px;
        bottom: -16px;
        width: 9px;
        height: 9px;
        background: #049A86;
        border-radius: 50%;
        z-index: 1;
    }

    .sec8-interna h3::after {
        content: "";
        position: absolute;
        left: 9px;
        bottom: -14px;
        width: 160px;
        height: 3px;
        background: linear-gradient(to right, #00D8BC 0%, #00D8BC 70%, rgba(0, 216, 188, 0) 100%);
    }

    .sec8-interna p {
        max-width: 964px;
        margin: 0 10px 0 10px;
        text-align: start !important;
    }

}



.sec8-interna h3 img:nth-of-type(1) {
    bottom: 15px;
    left: 190px;
}

.sec8-interna h3 img:nth-of-type(2) {
    bottom: 15px;
    right: 190px;
}


.sec8-interna ul {
    margin: 0;
    padding: 0;
}

.sec8-interna ul li {
    position: relative;
    padding-left: 80px;
    list-style: none;
    line-height: 30px;
    margin-bottom: 20px;
}


.sec8-interna ul li img {
    position: absolute;
    top: 0;
    left: 20px;
}

@media(max-width: 768px) {
    .sec8-interna ul li {
        margin-bottom: 0;
        padding-left: 60px;
    }

    .sec8-interna ul li img {
        left: 10px;
        width: 26px !important;
        height: 26px !important;
    }

}


.sec8-interna ul li strong {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600 !important;
}

.sec-cober.interna {
    margin-top: -50px;
    margin-bottom: 50px;
}


.sec-cober.interna.nosotros h4 {
    max-width: 100%;
}

.sec-cober.interna.nosotros .banner-final-home h4 img:nth-of-type(1) {
    left: 70px;
}

.sec-cober.interna.nosotros .banner-final-home h4 img:nth-of-type(2) {
    right: 70px;
}

@media(min-width: 769px) {
    .sec-cober.interna .banner-final-home p {
        font-size: 25px !important;
    }

    .sec-cober.interna .banner-final-home p strong {
        font-size: 25px !important;
    }
}




@media (max-width: 767px) {
    .carousel-serv {
        display: block !important;
    }

    .carousel-serv .card-serv {
        width: 100%;
        display: block;
        margin-bottom: 20px;
        margin: 0 auto;
    }

    .container-list-trans-dig {
        margin-top: 360px;
    }

}



.carousel-serv .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: -60px;
}

.carousel-serv .owl-dot {
    display: inline-block !important;
}

.carousel-serv .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #ccc;
    display: block;
    border-radius: 50%;
}

.carousel-serv .owl-dot.active span {
    background: #00D8BC;
}

.title-sec4-interna.nosotros h2 {
    max-width: 100% !important;

}

.title-sec4-interna.nosotros p strong {
    font-size: 25px;
    font-weight: 500;
    line-height: 35px;
    font-family: 'Poppins', sans-serif;

}

@media(max-width:768px) {
    .title-sec4-interna.nosotros p strong {
        display: inline-block;
        padding-top: 20px;
        font-size: 18px;
        line-height: 28px;
        font-family: 'Poppins', sans-serif;

    }
}

/*###### NOSOTROS ######*/
.sec4-interna.nosotros .vc_row.vc_inner {
    display: flex;
    flex-wrap: wrap;
}

.sec4-interna.nosotros .vc_row.vc_inner>.wpb_column {
    display: flex;
}

.sec4-interna.nosotros .vc_row.vc_inner>.wpb_column>.vc_column-inner,
.sec4-interna.nosotros .vc_row.vc_inner>.wpb_column>.vc_column-inner>.wpb_wrapper {
    display: flex;
    width: 100%;
}

.sec4-interna.nosotros .card-valores {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    padding: 25px 25px 0 25px;
}

.sec4-interna.nosotros .card-valores>.wpb_wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.sec4-interna.nosotros .card-valores h3 {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-top: 10px;
    margin-bottom: 5px;
}

.sec4-interna.nosotros .card-valores p {
    color: #555555;
    margin: 0;
    line-height: 30px;
}

.title-sec4-interna.nosotros {
    margin-bottom: 50px !important;
}

.text-pie-valores {
    margin-top: 50px;
}

.sec-cober.nosotros p {
    font-size: 25px;
    max-width: 833px;
}

.sec-cober.nosotros a {
    color: #049A86 !important;
}

.sec-cober.nosotros a:HOVER {
    color: #FFFFFF !important;
}

.sec-final-nosotros {
    overflow: visible !important;
}

@media(min-width: 1100px) {
    .sec-final-nosotros img {
        max-width: 518px !important;
    }

    .sec-final-nosotros h4 {
        margin-top: -50px;
    }

    .sec-final-nosotros .vc_separator {
        margin-top: -90px;

    }
}



@media(min-width: 768px) {
    .sec-final-nosotros {
        margin-top: 130px;
        position: relative;
        top: 30px;
        padding-bottom: 50px;
    }


}

.sec-final-nosotros .vc_separator {
    opacity: 0.5;
}


.sec-final-nosotros h3 {
    margin-top: 0 !important;
}

.sec-final-nosotros p strong {
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-weight: 500;
}

.text2-final-nosotros p {
    font-size: 16px;
    color: #ffffff;
}

.text2-final-nosotros p strong {
    font-size: 16px;
}

.text3-final-nosotros h4 {
    color: #ffffff;
    margin-bottom: 0;
}

.text3-final-nosotros p strong {
    display: inline-block;
    margin-top: -50px;
    color: #ffffff;
}

@media(max-width:960px) {
    .text3-final-nosotros p strong {
        margin-top: 0 !important;
        font-size: 18px;
        line-height: 28px;
    }
}

.text3-final-nosotros a {
    color: #049A86;
}

.text3-final-nosotros a:hover {
    color: #ffffff;
}

.banner-final-home.nosotros p {
    font-size: 18px !important;
}

.banner-final-home.nosotros p strong {
    font-size: 18px !important;
}

@media(max-width: 768px) {
    .btn-white a {
        padding: 15px 35px;
    }
}


@media (max-width: 860px) {
    .sec4-interna.nosotros .vc_row.vc_inner>.wpb_column {
        width: 50% !important;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .sec4-interna.nosotros .vc_row.vc_inner>.wpb_column {
        width: 100% !important;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .text3-final-nosotros h4 {
        margin-top: -10px !important;
        text-align: start !important;
    }

    .text3-final-nosotros p {
        text-align: start !important;
    }

}


/*###### TRAYECTORIA ######*/
.sec-cober.interna.trayectoria H4 {
    max-width: 752px;
}

@media(max-width:767px) {
    .sec2-interna.trayectoria {
        margin-top: 240px;
    }
}


/* ============================================
                 CONTACTO
===============================================*/
.hero-home.contacto {
    max-height: 515px;
    padding-top: 200px !important;
    position: relative;
}


.hero-home.contacto.horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to top,
            rgba(0, 216, 188, 0) 0%,
            rgba(0, 216, 188, 1) 40%,
            rgba(0, 216, 188, 0) 100%);
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 1;
}

.hero-home.interna.horizontal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)) !important;
    height: 50%;
    opacity: 0.8;
    z-index: 1;
}

.custom-form-container {
    background-color: #ffffff;
    box-shadow: 0 25PX 60PX rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    padding: 45px 50px;
    position: relative;
    z-index: 9;
    max-width: 902px;
    margin: 0 auto;
}

@media(max-width: 600px) {
    .custom-form-container {
        padding: 45px 20px;
    }
}

.custom-form-container .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.custom-form-container .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.custom-form-container label {
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.custom-form-container input[type="text"],
.custom-form-container input[type="tel"],
.custom-form-container input[type="email"],
.custom-form-container textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

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

.custom-form-container .btn-send {
    background: linear-gradient(90deg, #00897b, #00bfa5);
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

@media(max-width: 600px) {
    .custom-form-container .btn-send {
        margin-top: 15px;
    }
}

.form-footer label span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #555555;
    font-weight: 400;
}

/* Ajuste para móviles */
@media (max-width: 600px) {
    .custom-form-container .form-row {
        flex-direction: column;
    }
}


.dir-contacto {
    margin-top: 50px;
}

@media(min-width: 768px) {
    .dir-contacto.responsive {
        display: none;
    }
}


@media(max-width: 767px) {
    .dir-contacto.escritorio {
        display: none;
    }

}

.dir-contacto ul {
    margin: -15px 0 0 0;
    padding: 0;
}

.dir-contacto ul li {
    position: relative;
    list-style: none;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 25px;
    color: #555555;
}

.dir-contacto ul li strong {
    font-weight: 400;
    color: #000000;
}

.dir-contacto ul li img {
    position: absolute;
    top: 0;
    left: 0;
}

.dir-contacto p {
    margin-top: 0;
}

.dir-contacto p strong {
    font-size: 20px;
    font-weight: 600;
}

.list-redes-contacto {
    margin-top: 50px;
}

.list-redes-contacto ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.list-redes-contacto ul li {
    list-style: none;
}

.list-redes-contacto ul li a {
    display: inline-block;
    transition: all 0.3s ease;
}

.list-redes-contacto ul li a:hover {
    color: #00897b;
    transform: scale(1.2);
}

.separador-dir-contacto .line-contacto {
    background-color: #000000;
    height: 221px;
    width: 1px !important;
    color: #555555;
    margin: 0 auto;
    opacity: 0.5;
}

.separador-dir-contacto .vc_column-inner{
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.dir-info-contacto .vc_column-inner{
    padding-left: 0 !important;
}

@media(max-width: 767px) {

    .hero-home.contacto{
        max-height: 100%;
        padding-bottom: 30px;
    }
 
    .separador-dir-contacto {
        display: none;
    }

}



@media(max-width: 600px) {
    .custom-form-container .form-footer {
        display: block;
    }

    .hero-home.interna.contacto h1{
        padding-top: 10px !important;
        padding-bottom: 20px !important;
    }
	
}



/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: #1a1a2e;
    color: #ffffff;
    padding-top: 40px;
}

@media(max-width:768px) {
    .site-footer {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* --- Row 1: Logo + Menu --- */
.footer-top-row {
    padding-bottom: 20px;
}

.footer-top-row-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-area {
    flex-shrink: 0;
}

.footer-logo-area .widget {
    margin: 0;
}

.footer-logo-area .custom-logo-link img {
    max-height: 60px;
    width: auto;
}

.footer-menu-area .widget {
    margin: 0;
}

.footer-menu-area ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-menu-area ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-menu-area ul li a:hover {
    color: #00d8bc;
}

/* --- Separator Green --- */
.footer-separator-green {
    height: 1px;
    background: #00d8bc;
    max-width: 1160px;
    opacity: 0.3;
    margin: 0 auto;
}

/* --- Row 2: 3 Columns --- */
.footer-columns-row {
    padding: 40px 0;
}

.footer-columns-row-inner {
    display: flex;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col .widget {
    margin: 0 0 20px;
}



.footer-widget-title {
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px;

}

.footer-columns-row .container .footer-col:nth-of-type(1) .footer-widget-title {
    color: #00d8bc;

}

.footer-columns-row .container .footer-col:nth-of-type(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);

}

.footer-col p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 30px;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 10px 0 0 0;
}

.footer-col ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.footer-col ul li img {
    position: absolute;
    top: 0;
    left: 0;
}

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #00d8bc;
}

/* --- Separator White --- */
.footer-separator-white {
    height: 1px;
    background: #ffffff;
    opacity: 0.3;
    max-width: 1160px;
    margin: 0 auto;
}

/* --- Row 3: Copyright + Logo --- */
.footer-bottom-row {
    padding: 20px 0;
}

.footer-bottom-row-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    width: 70%;
    font-size: 0.9rem;
    color: #cccccc;
}

.footer-bottom-logo {
    width: 30%;
    text-align: right;
}

.footer-bottom-logo .custom-logo-link img {
    max-height: 40px;
    width: auto;
}

/* ============================================
   Responsive
   ============================================ */

/* Tablet (≤ 768px) */
@media screen and (max-width: 768px) {
    .header-layout {
        flex-direction: column;
        min-height: auto;
    }

    .header-logo-col {
        border-right: none;
        padding: 10px 0;
        justify-content: center;
    }

    .header-logo-col .custom-logo-link img {
        max-height: 60px;
        margin-top: 10px;
    }

    .header-right-col {
        padding: 0;
    }

    .header-top-row {
        justify-content: center;
        padding: 6px 0;
    }

    .header-bottom-row {
        position: relative;
        justify-content: flex-start;
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        position: relative;
        top: -20px;
        width: 100%;

    }

    .menu-toggle {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 12px 15px;
    }

    .site-header .main-navigation {
        display: none;
        width: 100%;
    }

    .site-header .main-navigation.toggled {
        display: block;
    }

    .site-header .main-navigation ul {
        flex-direction: column;
        width: 100%;
    }

    .site-header .main-navigation ul li a {
        padding: 14px 20px;
        border-top: 1px solid #f0f0f0;
        border-radius: 0;
    }

    .site-header .main-navigation ul ul {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        min-width: 100%;
        display: none;
    }

    .site-header .main-navigation ul li:hover>ul,
    .site-header .main-navigation ul li.focus>ul {
        display: flex;
    }

    .site-header .main-navigation ul ul li a {
        padding-left: 35px;
    }

    .site-header .main-navigation ul ul ul li a {
        padding-left: 55px;
    }

    /* --- Footer Responsive (Tablet) --- */
    .footer-top-row-inner {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-menu-area ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-columns-row-inner {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom-row-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-copyright {
        width: 100%;
    }

    .footer-bottom-logo {
        width: 100%;
        text-align: center;
    }



    /* 1. Ocultar el correo en móviles */
    .header-top-row #text-2 {
        display: none !important;
    }


    /* 2. Convertir el contenedor padre en flex para alinear el logo y el botón */
    .header-layout {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .header-layout.toggled {
        flex-direction: column !important;

    }


    /* 3. Asegurar que la columna del logo y el botón tengan el espacio necesario */
    .header-logo-col {
        order: 1;
        flex: 0 0 auto;
    }

    .header-layout.toggled .header-right-col {
        width: 100%;
    }

    .header-right-col {
        order: 2;
        flex: 0 0 auto;
        display: flex;
        align-items: center;

    }

    /* 4. Ocultar el separador si ya no tenemos el correo encima */
    .header-separator {
        display: none !important;
    }










}

/* Mobile (≤ 480px) */
@media screen and (max-width: 480px) {
    .header-logo-col .custom-logo-link img {
        max-height: 50px;
    }

    .site-header .main-navigation ul li a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    /* --- Footer Responsive (Mobile) --- */
    .footer-menu-area ul {
        flex-direction: column;

    }

    .footer-columns-row {
        padding: 25px 0;
    }

    .footer-columns-row-inner {
        gap: 20px;
    }
}





@media(min-width: 912px){
	p {
		text-align: justify;
	}
	
	.list-sec3-interna ul li {
		text-align: justify;
	}
	
	.container-title-sol p strong{
		text-align: start ;
	}
	
	.card-gestion-int p{
		text-align: start;
	}
	
	.card-serv p, .card-valores p{
		text-align: start;
	}
}


.hero-home.privacidad{
	max-height: 380px;
}