@font-face{
    font-family: avenir_black;
	src: url(../fuentes/avenir_black.ttf)
}

@font-face{
    font-family: bahnschrift;
	src: url(../fuentes/bahnschrift.ttf)
}

@font-face{
    font-family: avenir_ltstd;
	src: url(../fuentes/avenir_ltstd.ttf)
}

@font-face{
    font-family: myriadpro;
	src: url(../fuentes/myriadpro.ttf)
}

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

*:focus {outline: none;}

body{overflow-x: hidden;}

img {display: block; 
    width: 100%;
}

h4{
    font-family: avenir_black;
}

/*--------- ---------*/
.contenedor{
    margin: auto;
    width: 100%;
    padding: 0 15px; 
}

@media(min-width:1200px){
    .contenedor{
        width: 1185px;
    }
}

/*------- componentes -------*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    width: fit-content;
    font-family: bahnschrift;
    padding: 0.2rem 0.3rem 0.2rem 1.4rem;  
    font-size: 0.9rem;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn_naranja { 
    background-color: #EA5400;
    color: #fff;
}

.btn_voscuro { 
    background-color: #007e38;
    color: #fff;
}

.btn_center{
    margin: 0 auto;
}

.btn:hover {
  background-color: #000;
}

.ico-right{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.tit_seccion{
    font-family: bahnschrift;
    background-color: #FDC700;
    padding: 6px 15px;  
    font-size: 1.4rem;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    position: relative;
    width: 80%;
    max-width: 500px;
    margin: 0 auto ;  
}

.barras{
    width: 14px;
    height: 25px;
    background: #000;
    border-radius: 3px;
    transform: skewX(30deg);
    transform-origin:top;
    box-shadow: -22px 0 0 #000, -44px 0 0 #000;
    position: absolute;    
    right: 30px;    
    bottom: -10px;
}

.t_descripcion{
    font-family: bahnschrift;
    font-weight: lighter;
    text-align: justify;
    padding-top: 30px;
}


/*------------ Barra Menu ------------*/
.barra_menu{
    width: 100%;
    padding: 6px 0; 
    position: relative;
    background-color: #fff;
}

.conte_menu{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.logo_chacraraju{
    max-width: 132px;
}

.cont_br{
    display: flex; 
}

/*-------------- Iconos --------------*/
.cont_leng_sociales{
    display: flex; 
    align-items:center;
}

.redes_sociales{
    display: flex;    
}

.redes_sociales [class^="ico-"]{
    text-decoration: none;
    color: #000;
    line-height: 0px;
    font-size: 24px;
    margin-left: 8px;
}

/*----------  Menu - Icono -----------*/  
    .menu-toggle {
        position: relative;        
        width: 26px;
        height: 24px;        
        display: flex;
        align-items: center;
        cursor: pointer;
        margin-left: 8px;
    }
    .menu-toggle-bar {
        width: 100%;
        height: 3px;
        border-radius: 4px;
        position: absolute;
        transition: all 0.3s ease;
        background-color: #000;
    }
    .menu-toggle-bar--top {
        transform: translate(0, -8px);
    }
    .menu-toggle-bar--bottom {
        transform: translate(0, 8px); 
        width: 60%;
    }
    .nav-open .menu-toggle-bar--top {
        transform: translate(0, 0) rotate(45deg);
    }
    .nav-open .menu-toggle-bar--middle {
        opacity: 0;
    }
    .nav-open .menu-toggle-bar--bottom {
        transform: translate(0, 0) rotate(-45deg);
        width: 100%;
    }

/*--------------Menu Movil--------------*/
.menu{
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    transition: all 0.4s;
    z-index: 900;
}

.menu-lista{
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #FDC700;
}

.menu_link{
    display: block;
    padding: 15px 20px;
    color: #000;
    text-decoration: none;
    font-family: avenir_black;
    font-size: 0.9em;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    
}

.menu_link:hover{
    background-color: #f6a714;
    color:;
}

.mostrar {
    left: 0;  
}

.fixed{
    position: fixed;
    top: 0;
    z-index: 1000; 
}

@media(min-width:1024px){ 
    .cont_br{
        width: 92%;
    }
    
    .menu-toggle{
        display: none;
    }
    
    .menu{
        position: static;
        width: 100%;
        padding-left: 10px;
        margin: auto;  
    }
    
    .menu-lista{
        display: flex;
        background: none;
       /* justify-content: center; */
    }
    
    .menu_link{
        border-bottom: none;
        color: #000;
        font-size: 0.9em;
        padding: 15px;
    }
    
    .menu_link:hover{
        background: none;        
    }    
}

/*----------Banner----------*/
.banner_cr{
    margin-top: 70px;
}

.banner_chacraraju{
    position: relative;
}

.inicio{
    width: 100%;
    height: 650px;
    /*height: 55vh;*/
    object-fit: cover;
    /*object-position: center;*/
}

.banner_contenido{
    position: absolute;
    top: 0;
    width: 100%;
}

/*.banner_contenido .contenedor{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}*/

.info_baner{
    margin-top: 60px;
    background-color:#FDC700;
    padding: 30px;
    border-radius: 14px;
    z-index: 100;
}

.banner_titulo{
    font-family: bahnschrift;
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.banner_descripcion{
    font-family: bahnschrift;
    font-size: 1rem;
    font-weight: lighter;
    color: #000;
    text-align: justify;
    margin-bottom: 20px;
}

.banner_vehiculos{
    z-index: 200;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.transporte_baner{
    width: 100%; 
    margin-left: auto;
}

@media(min-width:800px){
    .transporte_baner{
        max-width: 800px;
    }
}

@media(min-width:1024px){
    .info_baner{
        width: 60%;
    }
    
    .banner_titulo{
       font-size: 2rem; 
    }
    
}

/*-----Tipos Transporte----*/

/*------ Opciones de Unidades ------*/
.cont_turistico{
    position: relative;
    border: 0.22em solid #FDC700;
    border-radius: 12px;
    padding: 1rem 2rem;
    margin: 1.5rem 0px;   
    width: 100%;    
}

.ico_unidades{
    width: 150px;
    margin-bottom: 10px;
}

.btn_pos{
    position: absolute;
    bottom: -15px;
    right: 15px;
    
}

@media(min-width:768px){
    .transporte_cards{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .cont_turistico{
        width: 48.5%;
    }
}

@media(min-width:1024px){
    .cont_turistico{
        width: 22.5%;
    }
    
}
/*----------- Empresa ----------*/

.empresa_contenido{
    padding: 40px 0;
}

.empresa_identidad{
    display: flex;
    flex-wrap: ;
    justify-content:space-between;
    
}

.empresa_identidad .empresa_mv{
    width: 48.5%;
}

@media(min-width:768px){
    .empresa_contenido{
        display: flex;
        justify-content: space-between
    }
    
    .empresa_col{
        width: 48%;
    }
    
    
    
    
}



/*------ Empresa Identidad ------*/
.empresa_mv{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    border: 0.15em solid #FDC700;
    border-radius: 10px;
    padding: 0.5rem  1rem 1rem;
    margin: 1rem 0px;    
    width: 100%;    
}

legend {
    background-color: #FDC700; 
    padding: 6px 8%;
    border-radius: 8px; 
    margin: auto;
    font-family: bahnschrift;
    color: #093146;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9em;
}

.empresa_eslogan { 
    text-align: center;
    padding: 30px 0;
    
}


/* ============================
   SECCIÓN VALORES INSTITUCIONALES
   ============================ */

.empresa_valores {
    background-color: #000;
    /*padding: 3rem 0 0;*/
    color: #fff;
}

.valores_lista {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    text-align: center;
}

.valor_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.valor_icono {
    background-color: #FDC700;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.valor_icono img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.valor_titulo {
    font-family: bahnschrift;
    color: #FDC700;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.valor_texto {
    font-family: bahnschrift;
    font-weight: lighter;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 260px;
    margin: 0 auto;
}

/* Grid en escritorio */
@media(min-width:768px){
    .valores_lista {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(min-width:1024px){
    .valores_lista {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ----- Franja inferior amarilla ----- */
.franja_texto {
    background-color: #FDC700;
    text-align: center;
    padding: 1.2rem 0;
    position: relative;
}

.franja_texto p {
    font-family: bahnschrift;
    color: #000;
    font-size: 1.05rem;
    font-weight: 500;
}



.encabezado_seccion {
    position: relative;
}

.tit_seccion-pos {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

/*------- Servicios ---------*/
.servicios_chacraraju {
    margin-top: 60px;
}

.servicios_desc {
    padding-top: 10px;
    padding-bottom: 40px;
}

.t_style {
    width: 100%;
    max-width: 650px;
    text-align: center;
    margin: auto;
    padding: 0 0 30px;
}

/*------- Unidades ---------*/

.unidades_header{
    background-color: #000;
    padding: 50px 0 30px;
}

.unidades_iconos{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.und_ico{
    width: 80px;
    filter: invert(72%) sepia(100%) saturate(1080%) hue-rotate(5deg) brightness(103%) contrast(101%);
}



.unidades_lista {
    /*display: flex;*/
    padding: 2rem 0;
}

.unidades_item{
    margin-bottom: 30px
}

.unidades_name {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.unidades_icono {
    background-color: #FDC700;
    border-radius: 12px;
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    padding-left: 10px;
    margin-right: 40px;
}

.unidades_icono img {
    width: 90px;
    height: auto;
    position: absolute; 
}

.unidades_name h4 {
    font-family: bahnschrift;
    color: #000;
    font-size: 1.5rem;
}

/**/

/* Tarjeta */

.unidades_cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.u_card{
    width: 49%;
    position: relative;
    background: #fff;
    border: 0.2em solid #FDC700;
    border-radius: 16px;
    padding: 15px 0px 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Badge superior redondeado */
.u_badge{
    position: absolute;
    right: 15px;
    background: #FDC700;
    color: #000;
    font-family: bahnschrift;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.80rem;
    letter-spacing: .3px;
}

.u_title{
    font-family: bahnschrift;
    font-weight: 800;
    color: #000;
    font-size: 1.05rem;
    margin-top: 30px;
}

.u_media img{
    width: 100%;
    object-fit: contain;
    display: block;
}


.btn_dark{
  background:#000;
  color:#fff;
  border-radius: 20px;
  padding: .40rem 1rem;
  font-family: bahnschrift;
  font-weight: 700;
  transition: background-color 0.3s;
}

.btn_dark:hover {
    background-color: #EA5400;
}

.btn_dark .ico-right{ color:#FDC700; font-size: 20px; }

.card_p{
    margin-bottom: 2%;
}

/* Tarjeta informativa amarilla (Maquinaria Pesada) */
.u_card_info {
    background-color: #FDC700;
    border-color: #FDC700;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 20px 24px;
    /* en móvil ocupa el ancho completo */
    width: 100%;
}

.u_info_ico {
    width: 90px;
    margin: 0 0 14px 0;
}

.u_info_ico img {
    width: 100%;
}

.u_info_texto {
    font-family: bahnschrift;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #000;
}


@media(min-width:1024px){
    .unidades_lista{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .unidades_item{
        width: 49.5%;
    }

    /* Semipesados y Maquinaria ocupan ancho completo */
    .unidades_semipesados,
    .unidades_maquinaria_pesada {
        width: 100%;
    }

    .card_p{
        width: 24.2%;
    }

    /* La tarjeta info amarilla ocupa el espacio restante */
    .u_card_info {
        width: 49%;
    }
}





/*-----*/

/* =========================================
   SECCIÓN UBÍCANOS
   ========================================= */

.ubicacion_chacraraju {
    margin-top: 60px;
}


.ubicacion_header {
    background-color: #000;
    padding: 40px 0 20px;
    color: #fff;
}

.ubicacion_direcciones {
    text-align: center;
    font-family: bahnschrift;
    font-weight: lighter;
    font-size: 0.9rem;
    line-height: 2;
    letter-spacing: 0.4px;
    color: #fff;
    
}

.ubicacion_mapa {
    position: relative;
}

.ubicacion_mapa iframe {
    width: 100%;
    height: 360px;
    border: none;
    display: block;
}

.ubicacion_btns {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 0 30px;
}

.ubicacion_btns .btn_dark {
    min-width: 145px;
    justify-content: space-between;
    font-size: 0.95rem;
    padding: 0.55rem 1.2rem;
}

@media(min-width: 768px) {
    .ubicacion_btns .btn_dark {
        min-width: 200px;
        font-size: 1.05rem;
        padding: 0.65rem 2rem;
    }
}

/* =========================================
   SECCIÓN CONTÁCTANOS
   ========================================= */

.contacto_chacraraju {
    padding: 60px 0 40px;
    background: #fff;
}

.contacto_tit_wrap {
    padding-bottom: 20px;
}

.contacto_imagen {
    max-width: 650px;
    margin: 30px auto 40px;
}

.contacto_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-bottom: 40px;
}

.contacto_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contacto_ico {
    font-size: 40px;
    margin-bottom: 8px;
    color: #000;
    line-height: 1;
}

.contacto_texto {
    font-family: bahnschrift;
    font-weight: lighter;
    line-height: 1.9;
    color: #000;
}

.contacto_web {
    text-align: center;
}

.btn_web {
    display: block;
    background-color: #FDC700;
    color: #000;
    font-family: bahnschrift;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    max-width: 460px;
    margin: 0 auto;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, color 0.3s;
}

.btn_web:hover {
    background-color: #000;
    color: #FDC700;
}

/* =========================================
   FOOTER
   ========================================= */

.footer_chacraraju {
    background-color: #000;
    padding: 18px 0;
}

.footer_contenido {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_contenido p {
    font-family: bahnschrift;
    font-weight: lighter;
    font-size: 0.72rem;
    color: #fff;
    text-align: center;
    line-height: 1.7;
}













