@font-face {
    font-family: 'Monstserrat-Regular';
    src: url('../fonts/Montserrat-Regular_2.otf') format('woff2');
}

@font-face {
    font-family: 'MyriadPro-Regular';
    src: url('../fonts/MyriadPro-Regular_2.otf') format('woff2');
}

body {
    font-family: 'MyriadPro-Regular', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
    overflow-x: hidden;
}


html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

:root {
  --transition-2: all 0.6s ease; /* define la variable */
}

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal].revealed { opacity: 1; }

[data-reveal="bottom"] { transform: translateY(50px); }
[data-reveal="bottom"].revealed { transform: translateY(0); }

[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="left"].revealed { transform: translateX(0); }

[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="right"].revealed { transform: translateX(0); }


:root {

  /**
   * coloress
   */

  --white: hsl(0, 0%, 100%);
  --black: #1d1d1d;
  --blue: #3357B1;

  /**
   * tipografia
   */

  --ff-Monstserrat: 'Monstserrat-Regular', sans-serif;
  --ff-MyriadPro: 'MyriadPro-Regular', sans-serif;

  
  --headline-lg: 5rem;
  --headline-md: 3rem;
  --headline-sm: 2rem;
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.4rem;
  
  --fw-500: 500;
  --fw-700: 700;

  --section-padding: 120px;

  --shadow-1: 0px 2px 20px hsla(209, 36%, 72%, 0.2);
  --shadow-2: 0 4px 16px hsla(0, 0%, 0%, 0.06);

  --radius-circle: 50%;
  --radius-12: 12px;
  --radius-6: 6px;
  --radius-4: 4px;

  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a,
img,
span,
time,
input,
button,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-size: 10px;
  font-family: var(--ff-rubik);
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  font-size: 1.6rem;
  color: var(--independece);
  line-height: 1.8;
  overflow: hidden;
}

body.loaded { overflow-y: visible; }

body.nav-active { overflow: hidden; }

.container { padding-inline: 16px; }

.headline-lg {
  font-size: var(--headline-lg);
  color: var(--white);
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.headline-md {
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
}

.headline-lg,
.headline-md { font-family: var(--ff-oswald); }

.headline-md,
.headline-sm { line-height: 1.3; }

.headline-md,
.headline-sm { color: var(--midnight-green); }

.headline-sm { font-size: var(--headline-sm); }

.title-lg { font-size: var(--title-lg); }

.title-md { font-size: var(--title-md); }

.title-sm { font-size: var(--title-sm); }

.social-list { display: flex; }

.section { padding-block: var(--section-padding); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.btn {
  background-color: var(--verdigris);
  color: var(--white);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--eerie-black);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::before { transform: translateX(100%); }

.w-100 { width: 100%; }

.grid-list {
  display: grid;
  gap: 40px 28px;
}

.text-center { text-align: center; }



/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0vh;
  background-color: var(--verdigris);
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}


@keyframes rotate360 {
  0% { transform: rotate(0); }
  100% { transform: rotate(1turn); }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/



/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  color: var(--white);
}

.footer-top {
  display: grid;
  gap: 40px;
  padding-block-end: 60px;
}

.footer-brand {
  background-color: var(--ming);
  padding: 32px;
  border-radius: var(--radius-6);
}

.footer .logo { margin-block-end: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-block-start: 12px;
}

.contact-item .item-icon { font-size: 4rem; }

.contact-link {
  display: inline;
  transition: var(--transition-1);
}

.contact-link:is(:hover, :focus-visible) { color: var(--verdigris); }

.footer-list-title {
  color: var(--white);
  font-weight: var(--fw-700);
  margin-block-end: 20px;
}

.footer .text { opacity: 0.7; }

.footer .address {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-start: 20px;
}

.footer .address ion-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.footer-link {
  margin-block-start: 8px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) { color: var(--verdigris); }

.footer-form .input-field {
  color: var(--white);
  border: 1px solid var(--white_a20);
  border-radius: var(--radius-4);
  padding: 8px 20px;
}

.footer-form .input-field::placeholder { color: inherit; }

.footer-form .btn {
  width: 100%;
  justify-content: center;
  margin-block: 12px 28px;
}

.footer-bottom {
  padding-block: 32px;
  border-block-start: 1px solid var(--white_a20);
}

.footer-bottom .social-list {
  justify-content: flex-start;
  gap: 8px;
  margin-block-start: 16px;
}

.footer-bottom .social-link {
  font-size: 1.4rem;
  padding: 12px;
  background-color: var(--white_a10);
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.footer-bottom .social-link:is(:hover, :focus-visible) { background-color: var(--verdigris); }





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--verdigris);
  color: var(--white);
  padding: 16px;
  font-size: 2rem;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
  z-index: 3;
}

.back-top-btn:is(:hover, :focus-visible) { background-color: var(--eerie-black); }

.back-top-btn.active {
  transform: translateY(-10px);
  opacity: 1;
}

/*********************************************?*/



/*INICIO HEADER*/

header {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -10%);
    z-index: 1000;

    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);

    padding: 1px 20px;

    transition: all 0.3s ease;

    font-family: 'MyriadPro-Regular', sans-serif;
}

header:hover {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.3);
}

header ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 5px 0;
    padding: 0 10px;
}

header li {
    display: flex;
    align-items: center;
}

header li:first-child {
    margin-right: 0px;
}

header li a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

header li img {
    width: 100px;
    height: 30px;
    transition: transform 0.3s ease;
}

header li a:hover img {
    /*transform: scale(1.001);*/
}

header li p {
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    padding: 0px 0;
    transition: all 0.3s ease;
    text-transform: capitalize;
    margin: 10px 0px;
}

header li p:hover {
    color: #000000;
    transform: translateY(-2px);
}

header li p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: width 0.3s ease;
}

header li p:hover::after {
    width: 100%;
}

@media (max-width: 568px){

    header li p {
        font-size: 1.3rem;
    }

    header ul{
        gap: 10px;
    }

    header li img{
        width: 50px;
        height: 30px;
    }   
    
}

/*FIN HEADER*/

/*SECTION FORTALEZAS */

.container-fortalezas{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5%;
    padding: 5% 5% 3% 5%;
    width: 100%;
    height: 100vh;
}

@media (max-width: 768px){
    .container-fortalezas{
        flex-direction: column;
        height: fit-content;
    }

    .fortalezas-col{
        margin-bottom: 7%;
    }

    .container-fortaleza1{
        gap: 50px;
        text-align: center;
    }

}

.container-fortalezas .fortalezas-col{
    width: 100%;
    height: 100%;
}

.container-fortaleza1{
    background-color: #3357B1;
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15%;
    color: #fff;
}

.fortaleza-asj{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fortaleza-asj svg{
    width: 150px;
    height: auto;
    object-fit: contain;
}

.container-fortaleza1 h1{
    font-size: clamp(4rem, 5vw, 3rem);
    line-height: clamp(4rem, 5vw, 3rem);
    font-weight: bolder;
}

.container-fortaleza1 p{
    font-size: clamp(1.5rem, 1vw, 2rem);
    line-height: 2rem;
    font-weight: lighter;
}

.container-fortaleza2{
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 50px;
    padding: 0 5%;
}

.ventajas{
    background-color: white;
    padding: 35px 20px 20px 20px;
    border-radius: 15px;
    border: 1px solid royalblue;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ventajas .ventaja-icon{
    display: flex;
    align-items: center;
    justify-content: right;
    width: 100%;
}

.ventajas img{
    width: 140px;
    height: 60px;
    object-fit: contain;
}

.ventajas h3{
    font-size: clamp(2.5rem, 1.5vw, 2.5rem);
    line-height: clamp(2.5rem, 1.5vw, 2.5rem);
    font-weight: lighter;
    text-align: left;
}

/*FIN SECTION FORTALEZAS*/


/*SECTION CONATCTO*/

    .container-contacto {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 3%;
        width: 100vw;
        height: 100vh;
        background-size: cover;
        background-image: url(../imagenes/Assets_Index/PNG/fondo_contacto.png);
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        padding: 5%;
    }

    .contacto-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        background-color:#1d1d1d;
        max-width: 500px;
        width: 100%;
        height: 400px;
        border-radius: 20px;
        padding: 5%;
        margin: 0 5%;
    }

    .cotizacion,.datos-personales{
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        gap: 10px;
        width: 100%;
    }

    .cotizacion h2, .datos-personales h2{
        font-size: 2.5rem;
        line-height: 1.5rem;
        text-align: left;
    }

    .flex-dp{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .dp-column1, .dp-column2 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .dp-column2{
        align-items: end;
        justify-content: space-between;
    }

    .dp-column1 input, 
    .dp-column2 textarea, 
    .csc-column1 input, 
    .csc-column2 input{
        padding: 5px;
        border-radius: 10px;
        border: none;
        font-size: 1rem;
        border: #ffffff solid 1px;
        background-color: #1d1d1d;
        color: #ffffff;
        width: 100%;
        transition: all .3s ease;
    }

    .dp-column1 input:hover, 
    .dp-column2 textarea:hover, 
    .csc-column1 input:hover, 
    .csc-column2 input:hover{
        background-color: rgba(65, 105, 225, 0.516);
    }

    .dp-column1 input:hover::placeholder,
    .dp-column2 textarea:hover::placeholder,
    .csc-column1 input:hover::placeholder,
    .csc-column2 input:hover::placeholder{
        color: white;
    }

    .dp-column1 input:focus, 
    .dp-column2 textarea:focus, 
    .csc-column1 input:focus, 
    .csc-column2 input:focus {
        border: 2px solid royalblue;
    }

    .dp-column2 textarea{
        padding: 10px;
    }

    .dp-column2 a {
        background-color: royalblue;
        color: #fff;
        text-decoration: none;
        padding: 5px 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
        width: fit-content;
        text-align: end;
        font-size: 1rem;
        border: white 1px solid;
    }

    .dp-column2 a:hover {
        color: royalblue;
        background-color: white;
        border-color: royalblue;
    } 


    .contacto-texto {
        text-align: center;
        color: #fff;
        width: 30%;
        align-items: center;
        display: flex;
        flex-flow: column;
    }

    .contacto-texto img {
        width: 150px;
        height: auto;
        margin-bottom: 20px;
    }

    .contacto-texto p {
        font-size: 3rem;
        line-height: 3rem;
        letter-spacing: 1px;
    }

    .csc-column1, .csc-column2 {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    @media (max-width: 668px){

        .container-contacto{
            flex-direction: column;
            gap: 5%;
            padding: 10% 3%;
        }

        .contacto-texto p{
            font-size: 2rem;
            line-height: 2rem;
        }

        .contacto-texto{
            width: 100%;
            padding: 0 10%;
            
        }
    }

/*FIN SECTION CONATCTO*/

/*SECTION DATOS DE CONTACTO*/
.img-footer{
    width: 100vw;
    height: 55vh;
}

.img-footer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.powered-by{
    height: 10vh;
    width: 100%;
    display: flex;
    background-color: #1d1d1d;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: 'MyriadPro-Regular', sans-serif;
    font-weight: 100;
}

.info{
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #ffffff;
    justify-content: space-around;
    padding: 3%;
    font-size: 1rem;
}

.info-title{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: royalblue; 
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 100;
    font-family: 'MyriadPro-Regular', sans-serif;
}

.columna-info{
    font-family: 'MyriadPro-Regular', sans-serif;
    width: 100%;
    font-size: 1.6rem;
    line-height: 2rem;
}

.separador-info{
    width: 1px;
    padding: 1% 0;
    border-right: #0049b7 2px solid;
    margin: 0px 20px;

}

@media (max-width: 468px){
    .info{
        flex-direction: column;
        align-items: center;
        
    }

    .columna-info{
        text-align: center;
    }

    .separador-info{
        border-top: #0049b7 2px solid;
        width: 300px;
        border-right: #0049b7 0px solid;
        margin-bottom: 10px;
        margin-top: 10px;
    }

}

/*FIN SECTION DATOS DE CONTACTO*/

/*SECTION GOOGLE*/
    .google_maps{
        width: 100vw;
        height: 100vh;
        padding: 3%;
        background-color: #1d1d1d;
    }
/*FIN SECTION GOOGLE*/

/*SECTION ASOCIACIONES*/

    .container-asociaciones{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 5% 0;
        background-color: #232323;
        white-space: wrap;
    }

    .asociaciones-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap; 
    width: 100%;
    padding: 0 15%;
    }

    .img-asociaciones {
    flex: 0 0 auto;      
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .img-asociaciones img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    }


    .asociaciones-title{
        color: #fff;
        font-size: 4.5rem;
        line-height: 2rem;
        font-weight: lighter;
        padding: 20px;
    }

/*FIN SECTION ASOCIACIONES*/