/* theme.json */
:root {
    /* Default */
    
    /* Colors */
    --brand-primary: #f8550f;
    --color-base: #3b4ec7;
    --white: #ffffff;
    --black: #000000;
  
    /* Global Colors */
    --global25: #f9fafd;
    --global50: #eeeffa;
    --global100: #c6cbef;
    --global200: #9ea7e3;
    --global300: #7783d8;
    --global400: var(--color-base);
    --global500: #3445b5;
    --global600: #2e3da1;
    --global700: #28368d;
    --global800: #232e79;
    --global900: #171f52;
  
    /* Grays */
    --gray-base: #888888;
    --gray25: #fbfbfb;
    --gray50: #f6f6f6;
    --gray100: #eeeeee;
    --gray200: #d5d5d5;
    --gray300: #bbbbbb;
    --gray400: var(--gray-base);
    --gray500: #7c7c7c;
    --gray600: #6f6f6f;
    --gray700: #626262;
    --gray800: #555555;
    --gray900: #3c3c3c;
  
    /* Neutral */
    --neutral: var(--gray200);
    --neutral-weak: var(--gray50);
    --neutral-weaker: var(--gray25);
    --neutral-strong: var(--gray400);
    --neutral-stronger: var(--gray800);
  
    /* Accents */
    --accent: var(--global400);
    --accent-weak: var(--global200);
    --accent-weaker: var(--global50);
    --accent-strong: var(--global600);
    --accent-stronger: var(--global800);
  
    /* Background Colors */
    --bg-color-page: var(--neutral-weaker);
    --bg-color-nav: var(--white);
    --bg-color-footer: var(--neutral-weaker);
    --bg-color-side-pannel: #495057;
  
    /* Status Colors */
    --status-critical: #ff0000;
    --status-critical-dark: #8b0000;
    --status-critical-light: #ffd1d1;
    --status-info: #1e90ff;
    --status-info-dark: #00008b;
    --status-info-light: #add8e6;
    --status-normal: #2ecc71;
    --status-normal-dark: #006400;
    --status-normal-light: #ccffcc;
    --status-serious: #ffd700;
    --status-serious-dark: #b8860b;
    --status-serious-light: #fff8dc;
    --status-caution: #ffa500;
    --status-caution-dark: #ff8c00;
    --status-caution-light: #ffe5b4;
  
    /* State Colors */
    --state-color-default: var(--accent);
    --state-color-hover: var(--accent-strong);
    --state-color-active: var(--accent-strong);
    --state-color-selected: var(--status-info);
    --state-color-disabled: var(--neutral-weak);
    --state-color-error: var(--status-critical);
    --state-color-warning: var(--status-serious);
    --state-color-success: var(--status-normal);
  
    /* Borders & Surfaces */
    --stroke-color-dark: var(--neutral-strong);
    --stroke-color-light: var(--neutral);
    --stroke-color-disabled: var(--neutral);
    --surface-color-dark: var(--black);
    --surface-color-disabled: var(--neutral);
    --surface-color-subtle-neutral: var(--neutral-weak);
    --surface-color-subtle-primary: var(--accent-weaker);
  
    /* Text & Icons */
    --text-icon-color-body: var(--neutral-stronger);
    --text-icon-color-accent: var(--accent);
    --text-icon-color-active: var(--state-color-active);
    --text-icon-color-brand-primary: var(--brand-primary);
    --text-icon-color-disabled: var(--neutral);
    --text-icon-color-error: var(--status-critical-dark);
    --text-icon-color-info: var(--status-info-dark);
    --text-icon-color-inverse: var(--white);
    --text-icon-color-link: var(--status-info);
    --text-icon-color-link-hover: var(--status-info-dark);
    --text-icon-color-subtle: var(--neutral);
    --text-icon-color-success: var(--status-normal-dark);
    --text-icon-color-warning: var(--status-caution-dark);
  
    /* Spacing & Sizing */
    --lineal-scale-0: 0rem;
    --lineal-scale-2: 0.125rem;
    --lineal-scale-4: 0.25rem;
    --lineal-scale-6: 0.375rem;
    --lineal-scale-8: 0.5rem;
    --lineal-scale-10: 0.625rem;
    --lineal-scale-12: 0.75rem;
    --lineal-scale-14: 0.875rem;
    --lineal-scale-16: 1rem;
    --lineal-scale-18: 1.125rem;
    --lineal-scale-20: 1.25rem;
    --lineal-scale-22: 1.375rem;
    --lineal-scale-24: 1.5rem;
    --lineal-scale-26: 1.625rem;
    --lineal-scale-28: 1.75rem;
    --lineal-scale-30: 1.875rem;
    --lineal-scale-32: 2rem;
    --lineal-scale-34: 2.125rem;
    --lineal-scale-36: 2.25rem;
    --lineal-scale-38: 2.375rem;
    --lineal-scale-40: 2.5rem;
    --lineal-scale-48: 3rem;
    
    --corner-box: var(--lineal-scale-4);
    --margin-section: var(--lineal-scale-48);
    --space-sm: var(--lineal-scale-16);
    --space-md: var(--lineal-scale-24);
    --space-lg: var(--lineal-scale-48);
  
    /* Z-Index */
    --z-index-base: 0;
    --z-index-dropdown: 9;
    --z-index-tooltip: 99;
    --z-index-overlay: 99;
    --z-index-modal: 999;
  
  
    /* Typography */
   /* Typography */
   --font-family-primary: Roboto;
   --font-family-number: Roboto Mono;
   
   --font-size-caption: 0.6944rem;
   --font-size-body-small: 0.8333rem;
   --font-size-base: 1rem;
   --font-size-body-large: 1.2rem;
   --font-size-headline-small: 1.44rem;
   --font-size-headline-medium: 1.728rem;
   --font-size-headline-large: 2.0736rem;
   --font-size-display-small: 2.4883rem;
   --font-size-display-medium: 2.986rem;
   --font-size-display-large: 3.5832rem;
     /* Font Weights */
    --fontweight-light: 300;
    --fontweight-regular: 400;
    --fontweight-medium: 500;
    --fontweight-bold: 700;
    --fontweight-black: 900;
  
    /* Font Sizes */
    --text-xs: var(--font-size-caption);
    --p-sm: var(--font-size-body-small);
    --p-md: var(--font-size-body);
    --p-lg: var(--font-size-body-large);
    --h6: var(--font-size-headline-small);
    --h5: var(--font-size-headline-medium);
    --h4: var(--font-size-headline-large);
    --h3: var(--font-size-headline-medium);
    --h2: var(--font-size-headline-large);
    --h1: var(--font-size-display-medium);
  
    /* Breakpoints */
    --breakpoint-xs: 320px;
    --breakpoint-sm: 481px;
    --breakpoint-md: 769px;
    --breakpoint-lg: 1025px;
    --breakpoint-xl: 1441px;
  }
  
  
  * {
    margin: 0;
    padding: 0;
  }
@media (max-width: 780px) {
    html {
        font-size: 16px
    }
}

@font-face {
    font-family: 'Mona Sans';
    src: url("../font/Mona-Sans.woff2") format("woff2 supports variations"), url("../font/Mona-Sans.woff2") format("woff2-variations");
    font-weight: 200 900;
    font-stretch: 75% 125%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Mona Sans'
}

body,
p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 155%
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color-page);
    color: var(--text-icon-color-body);
}



@media (max-width: 780px) {
    .text-padding-right {
        padding: 20px !important
    }
}


main{
    display: flex;
    flex-direction: column;
    gap:var(--margin-section)

}

/* HERO SECTION */


.hero-section {
    width: 100%;
    max-width: 1440px;
    height: 542px;
    background: url(../img/vtn_hero.png);
    background-repeat: no-repeat;
    background-size: auto;
    text-align: center;
    position: relative;
    margin: 0 auto 
}

.hero-section__textBlock {
    width: 700px;
    height: auto;
    margin: 0 0 0 8%;
    float: left
}

@media (max-width: 780px) {
    .hero-section__textBlock {
        float: left;
        width: 90%;
        margin: 20px
    }
}

.hero-section__buttonBlock {
    margin: 32px auto;
    float: left;
    margin: 0
}

@media (max-width: 780px) {
    .hero-section {
        height: auto;
        padding-bottom: 96px
    }
}

.hero-section h1 {
    font-size: 48px;
    text-align: left;
    color: var(--primary-900);
    width: 100%;
    margin: 48px auto 0;
    position: relative;
    z-index: 2;
    float: left;
    line-height: 52px
}

@media (max-width: 1440px) {
    .hero-section h1 {
        width: 90%
    }
}

@media (max-width: 780px) {
    .hero-section h1 {
        font-size: 2.027rem;
        line-height: 125%;
        font-weight: bold;
        width: 90%;
        font-size: 32px;
        margin: 16px auto 0
    }
}

.hero-section p {
    font-size: 24px;
    text-align: left;
    color: #0B0E28;
    width: 100%;
    margin: 32px auto;
    position: relative;
    z-index: 2;
    float: left
}

@media (max-width: 780px) {
    .hero-section p {
        width: 90%
    }
}

@media (max-width: 780px) {
    .hero-section p {
        font-size: 18px
    }
}

.hero-section span {
    color: #ff8133 !important
}

.hero-section button {
    position: relative;
    z-index: 2
}





.paterns-section {
    width: 100%;
    float: left;
    height: 100px;
    background-color: #22252a;
    color: #d5d8dd;
    margin-bottom: 10px;
    position: relative;
    margin-top:-48px!important;
}

@media (max-width: 780px) {
    .paterns-section {
        height: auto;
        padding-bottom: 20px;
        margin-bottom: 24px
    }
}

.paterns-section__cont {
    width: 980px;
    height: auto;
    margin: 0 auto
}

@media (max-width: 980px) {
    .paterns-section__cont {
        width: 100%
    }
}

.paterns-section__title {
    float: left;
    font-size: 1.424rem;
    line-height: 125%;
    font-weight: bold;
    margin-top: 32px
}

@media (max-width: 1200px) {
    .paterns-section__title {
        display: none
    }
}

@media (max-width: 780px) {
    .paterns-section__title {
        font-size: 1.125rem;
        line-height: 125%;
        font-weight: bold;
        margin-top: 12px
    }
}

.paterns-section__logos {
    float: left
}

.paterns-section__logos img {
    margin: 0 32px
}

@media (max-width: 780px) {
    .paterns-section__logos img {
        width: 40%;
        margin: 0 8px
    }
}

.title-section {
    width: 100%;
    float: left;
    height: auto;
    color: var(--textColor-primary) !important;
    margin: 0!important;
    text-align: center
}



.title-section__title {
    transform: translate(0, 0);
    font-size: 2.281rem;
    line-height: 125%;
    font-weight: bold
}

@media (max-width: 780px) {
    .title-section__title {
        font-size: 1.802rem;
        line-height: 125%;
        font-weight: bold;
        padding: 16px
    }
}

.title-section__icon {
    margin: 0 auto
}



.row-section {
    width: 100%;
    margin: 0 auto;
    height: auto;
    float: left;
    box-sizing: border-box
}

@media (max-width: 780px) {
    .row-section {
        margin: 0 auto 32px auto
    }
}

.row-section h2 {
    color: var(--primary-900);
    font-size: 38px;
    line-height: 125%;
    font-weight: 800;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    float: left
}

@media (max-width: 780px) {
    .row-section h2 {
        padding: 0 2%
    }
}

.row-section li {
    color: var(--textColor-medium);
    margin: 16px 0;
    text-align: left
}

.row-section p {
    color: var(--textColor-medium);
    text-align: left
}

@media (max-width: 780px) {
    .row-section p {
        margin: 4px
    }
}

.row-section button {
    text-align: center;
    margin: auto
}

@media (max-width: 1200px) {
    .row-section button {
        margin: 12px 0;
        width: 100%;
        float: left
    }
}

.row-section__image-cont {
    position: absolute;
    border: solid 8px var(--primary-800);
    width: 60%;
    height: 398px;
    top: -8px;
    left: 83px;
    border-radius: 16px
}

@media (max-width: 1440px) {
    .row-section__image-cont {
        display: none
    }
}

.row-section__cont {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: auto;
    text-align: center
}

.row-section__cont video {
    width: 80%;
    margin: 0 auto
}

@media (max-width: 1440px) {
    .row-section__cont {
        width: 100%
    }
}

.row-section__cont--left {
    width: 50%;
    float: left;
    padding: 24px 24px 24px 48px;
    box-sizing: border-box;
    position: relative;
    font-size: 1.125rem;
    line-height: 125%;
    font-weight: 400;
    color: var(--primary-800)
}

.row-section__cont--left img {
    width: 100%
}

@media (max-width: 780px) {
    .row-section__cont--left {
        width: 100%;
        padding: 0 24px
    }
}

.row-section__cont--right {
    width: 50%;
    float: left;
    padding: 24px;
    box-sizing: border-box;
    position: relative
}

.row-section__cont--right img {
    width: 80%
}

@media (max-width: 1440px) {
    .row-section__cont--right img {
        position: relative;
        width: 100%
    }
}

@media (max-width: 780px) {
    .row-section__cont--right {
        width: 100%
    }
}

.row-section__cont__cont-button {
    width: 100%;
    margin-top: 48px
}

.row-section h2 {
    color: var(--text-icon-color-body);
    font-size: 38px;
    line-height: 125%;
    font-weight: 800;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    float: left;
}

.row-section p {
    color: var(--textColor-medium);
    text-align: left;
}

.box-service {
    max-width: 1440px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin: auto;
    padding: 20px 8px;
    box-sizing: border-box;

}

@media (max-width: 780px) {
    .box-service {
        grid-template-columns: repeat(1, 1fr)
    }
}

.box-service div {
    padding: 0 30px
}

.box-service img {
    width: 100%;
    float: left;
    margin: 0 0 20px 0
}
.text-padding-right {
    padding: 100px 200px 0 0 !important;
}

@media (max-width: 1024px) {
    .text-padding-right {
        padding: 20px !important;
    }
}


.slider {
    background: white;
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg)
}

.slider::before {
    left: 0;
    top: 0
}


.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 12)
}

.slide {
    height: 100px;
    width: 250px;
    margin: 10px
}

.slide img {
    width: auto
}
@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(calc(-250px * 6))
    }
}

.row-prefooter {
    width: 100%;
    background-color: #151C51;
    height: 252px;
    float: left;
    text-align: center;
    padding-top: 48px;
    box-sizing: border-box;
    font-size: 1.602rem;
    line-height: 125%;
    font-weight: bold;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    }
   


.row-prefooter button {
    display: block
}

footer {
    width: 100%;
    background-color: #0B0E28;
    height: 39px;
    float: left;
    text-align: center;
    padding-top: 13px;
    box-sizing: border-box;
    font-size: 0.79rem;
    line-height: 125%;
    font-weight: normal;
    color: white;
    margin-top: -48px !important;
}
.float-center {
    margin: 0 auto !important;
}




.header-nosotros {
    text-align: center;
    padding: 100px 15%;
    box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    max-width: 1440px;
    height: 500px;
    /* flex-shrink: 0; */
    background-image: url(../img/bg_nosotros3.png) !important;
    margin: auto;

   
}




@media (max-width: 1280px) {
    .header-nosotros {
        padding: 20px;
        height: auto;
    }
    
    }




    .header-nosotros h1 {
        font-size: 48px;
        color: var(--primary-900);
        line-height: 52px;
        color: #fff;
        width: 100%;
      
}





.header-nosotros h2 {
    font-size: var(--h1);
    line-height: 110%;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #fff;
}


.header-nosotros p {
    color: #fff;
}

@media (max-width: 1280px) {
    .header-nosotros h1 {
        font-size: 16px;
        font-weight: 400;
    }
 
    .header-nosotros h2 {
        font-size: 28px
    }
    
    }



    .full-banner-nosotros {
        background: #E63946;
        color: white;
        padding: 50px 20px;
        text-align: center;
    }


    .full-banner-nosotros h1 {
        font-size: 48px;
        color: var(--primary-900);
        line-height: 52px;
        color: #fff;
        width: 100%;
      
}





.full-banner-nosotros h2 {
    font-size: var(--h1);
    line-height: 110%;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #fff;
}


.full-banner-nosotros p {
    color: #fff;
}



    .section-split {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 25px;
        box-sizing: border-box;
    }
    
    .section-split .content {
        display: flex;
        flex-wrap: wrap; /* Permite ajuste en pantallas pequeñas */
        max-width: 1440px;
        width: 100%;
        align-items: center;
        gap: 20px; /* Espaciado entre elementos */
    }
    
    .section-split .text {
        flex: 1;
        padding: 0 20px;
        min-width: 300px; /* Evita que el texto sea demasiado pequeño */
    }
    
    .section-split .text h2 {
        color: var(--text-icon-color-body);
        font-size: 38px;
        line-height: 125%;
        font-weight: 800;
    }

    .section-split .text p {
        font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 155%;
    }

    .section-split .image {
        flex: 1;
        display: flex;
        justify-content: center;
        min-width: 300px; /* Asegura que la imagen no se haga demasiado pequeña */
    }
    
    .section-split .image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    .reverse {
        flex-direction: row-reverse;
    }
    
    /* 📱 Responsive */
    @media (max-width: 768px) {
        .section-split .content {
            flex-direction: column; /* Apila los elementos en pantallas pequeñas */
            text-align: center;
            padding: 8px;
        }
    

        .section-split .text h2 {
            font-size: 1.802rem;
            line-height: 125%;
            font-weight: bold;
            text-align: left;
        }

        .section-split .text p {
            text-align: left;
        }
      


        .reverse {
            flex-direction: column !important; /* Evita que se invierta en móviles */
        }
    }

    .highlight {
        background: #f8560f;
        padding: 4px 8px;
        border-radius: 4px;
        display: inline-block; /* Ajusta el fondo solo al tamaño del texto */
    }