@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root{

    /* TIPOGRAFIAS */

    --font-1: "Raleway", serif;

    /* COLORES */
    --color1:#B97928;
    --color2:#734A16;
    --color3:#040408;

    --bg-1: #B97928;
    --bg-2: #734A16;
    --bg-3: #040408;

    --bg-black: #000000;
    --bg-white: #FFFFFF;
    --bg-transparent: transparent;

    /* SIZE */
    --font-s-60: 60px;
    --font-s-48: 48px;
    --font-s-41: 41px;
    --font-s-40: 40px;
    --font-s-32: 32px;
    --font-s-36: 36px;
    --font-s-30: 30px;
    --font-s-26: 26px;
    --font-s-24: 24px;
    --font-s-22: 22px;
    --font-s-20: 20px;
    --font-s-18: 18px;
    --font-s-16: 16px;
    --font-s-14: 14px;
    --font-s-12: 12px;
    --font-s-10: 10px;

    /* LINE HEIGHT */

    --lh-auto: normal;
    --lh-100: 100%;
    --lh-110: 110%;
    --lh-120: 120%;
    --lh-140: 140%;
}

body {
    margin: 0;
    overflow-x: hidden;
    background-color:var(--bg-black);
}

.font-1 {
    font-family: var(--font-1);
}

.color1 {
    color: var(--color1);
}

.color2 {
    color: var(--color2);
}

.color3 {
    color: var(--color3);
}

.bg-1 {
    background-color: var(--bg-1);
}

.bg-2 {
    background-color: var(--bg-2);
}

.bg-3 {
    background-color: var(--bg-3);
}

.bg-Black {
    background-color: var(--bg-black);
}

.bg-White {
    background-color: var(--bg-white);
}

.bg-transparent {
    background-color: var(--bg-transparent);
}

.fs-60 {
    font-size: var(--font-s-60);
}

.fs-48 {
    font-size: var(--font-s-48);
}

.fs-41 {
    font-size: var(--font-s-41);
}

.fs-40 {
    font-size: var(--font-s-40);
}

.fs-36 {
    font-size: var(--font-s-36);
}

.fs-32 {
    font-size: var(--font-s-32);
}

.fs-30 {
    font-size: var(--font-s-30);
}

.fs-24 {
    font-size: var(--font-s-24);
}

.fs-22 {
    font-size: var(--font-s-22);
}

.fs-20 {
    font-size: var(--font-s-20);
}

.fs-18 {
    font-size: var(--font-s-18);
}

.fs-16 {
    font-size: var(--font-s-16);
}

.fs-14 {
    font-size: var(--font-s-14);
}

.fs-12 {
    font-size: var(--font-s-12);
}

.fs-10 {
    font-size: var(--font-s-10);
}

.lh-auto {
    line-height: normal;
}

.lh-100 {
    line-height: var(--lh-100);
}

.lh-110 {
    line-height: var(--lh-110);
}

.lh-120 {
    line-height: var(--lh-120);
}

.lh-140 {
    line-height: var(--lh-140);
}

.px-50{
    padding-right: 100px;
    padding-left: 100px;
}
/* BOTONES */

.boton_1 {
    padding: 15px;
    background: rgb(115,74,22);
    background: linear-gradient(90deg, rgba(115,74,22,1) 0%, rgba(217,140,42,1) 100%);
    color: var(--color3);
    border:none;
    border-radius:10px 0px 10px 0px ;
    text-decoration: none;
    width: fit-content;
}

.boton_1:hover {
    background: none;
    color: var(--color1);
    border: 1px solid var(--color1);
}

/* COLORES */

.text-gris{
    color: rgba(255, 255, 255, 0.589);

}

.bg-gris{
background-color: rgba(255, 255, 255, 0.089);

}
/* BANNER */

.banner-home {
    position: relative;
    background-image: url(../img/banner-1.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
}

.banner-home::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0);
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0, 0, 0) 100%, rgb(0, 0, 0) 100%);
    z-index: 1;
}

.banner-home-2 {
    position: relative;
    background-image: url(../img/banner-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 538px;
    margin-bottom: 600px;
}

.banner-home-2::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgb(0 0 0);
    background: linear-gradient(0deg, rgb(0 0 0 / 0%) 0%, rgb(0, 0, 0) 80%, rgb(0, 0, 0) 100%);
    z-index: 2;
}

.banner-home-3 {
    position: relative;
    background-image: url(../img/banner-3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 538px;
    margin-top: 50px;
}

.banner-home-3::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgb(0 0 0);
    background: linear-gradient(0deg, rgb(0 0 0 / 0%) 0%, rgb(0, 0, 0) 80%, rgb(0, 0, 0) 100%);
    z-index: 2;
}

/* NAV */

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color:transparent;
    background-color: transparent;
    border:none;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}


.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image:url(../img/desplegable.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.enlaces {
    display: inline-block;
    position: relative;
}

.enlaces::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

.enlaces:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}



/* HOME */

.fase_inical{
    width: 165px;
}

.proyecto_tecnico{
    width: 220px;
}

.entrega{
    width: 134px;
}

.contenedor-alto{
    height: 100vh;
}

.img-recurso{
    width: 613px;
    height: 693px;
    overflow: hidden;
    object-fit: cover;
}

.counter {
    visibility: hidden; /* Inicialmente oculto */
}

.linea-experiencia {
    height: 245px;
    width: 100%;
    background-color: #ffffff1e;
    position: absolute;
    margin-top: 61px;
}

.form-control {
    color: #ffffff;
    background-color: #0000006e;
    border-color: 1px solid #ffffff;
    outline: 0;
    box-shadow: none;
    border-radius: 10px 0px 10px 0px;
    padding: 10px;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bg-2);
    border-color:transparent;
    outline: 0;
    box-shadow: none;
}

.color-formulario input::placeholder,
.color-formulario textarea::placeholder {
    color: rgb(255, 255, 255);
}

.color-formulario input::-webkit-input-placeholder,
.color-formulario textarea::-webkit-input-placeholder {
    color: rgb(255, 255, 255);
}

.color-formulario input::-moz-placeholder,
.color-formulario textarea::-moz-placeholder {
    color: rgb(255, 255, 255);
}

.color-formulario input:-ms-input-placeholder,
.color-formulario textarea:-ms-input-placeholder {
    color: rgb(255, 255, 255);
}

.color-formulario input::-ms-input-placeholder,
.color-formulario textarea::-ms-input-placeholder {
    color: rgb(255, 255, 255);
}



.btn-close {
    --bs-btn-close-color: #ffffff;
    --bs-btn-close-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e);
    --bs-btn-close-opacity: 0.5;
    --bs-btn-close-hover-opacity: 0.75;
    --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgb(255 255 255);
    --bs-btn-close-focus-opacity: 1;
    --bs-btn-close-disabled-opacity: 0.25;
    --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: var(--bs-btn-close-color);
    background: #ffffff2e var(--bs-btn-close-bg) center / 1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    opacity: var(--bs-btn-close-opacity);
}

.legals a{
    color: white;
}
@media (max-width: 767px) {
    :root{
        --font-s-40: 30px;
        --font-s-24: 18px;
        --font-s-22: 16px;
    }

    .px-50{
        padding-right:10px;
        padding-left: 10px;
    }

    /* nav */
    .logo-movil{
        width: 165px;
    }

    .banner-home {
        position: relative;
        background-image: url(../img/banner-1.png);
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        height: 512px;
    }

    .banner-home-2 {
        position: relative;
        background-image: url(../img/banner-2.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 325px;
        margin-bottom: 282px;
        margin-top: 501px;
    }

    /* home */

    .fase_inical {
        width: 129px;
    }
    .proyecto_tecnico {
        width: 178px;
    }

    .contenedor-fases{
        margin-top: 261px;
    }

    .flecha{
        transform: rotate(90deg);
    }

    .linea-experiencia {
        height: 201px;
        width: 100%;
        background-color: #ffffff1e;
        position: absolute;
        margin-top: 97px;
    }
}