*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
:root{
    --header-height: 10px;
}
body{
  font-family:Arial, sans-serif;
  color:white;
  background:#000;

    font-family: 'Montserrat', sans-serif;

}

/* HEADER */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:var(--header-height);
    z-index:1000;
	padding-bottom:200px;
}

.container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 20px;
}

/* LOGO */
.logo{
  height:70px;
}

/* NAV */
nav{
  display:flex;
  gap:25px;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  color:#facc15;
}
/*agregue para el menu */
#nav{
    background: rgba(0, 0, 0, 0.6); /* 👈 negro transparente */
    padding: 10px 25px;
    border-radius: 12px; /* 👈 esquinas redondeadas */

    display: flex;
    gap: 25px;

    backdrop-filter: blur(10px); /* 👈 efecto vidrio (pro) */
}

#nav a{
    font-size:18px;           /* 👈 más grande */
    font-weight:700;          /* 👈 negrita */
    font-family:'Montserrat', sans-serif; /* 👈 más elegante */
    letter-spacing:1px;       /* 👈 estilo más profesional */
    text-transform:uppercase; /* 👈 opcional (queda muy bien) */

    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

#nav a:hover{
    color:#facc15; /* amarillo minería 🔥 */
}

/* MENU MOBILE */
.menu-toggle{
  display:none;
  font-size:30px;
  cursor:pointer;
}

/* SECCIONES */
.section{
    width:100%;
  
    min-height:calc(100vh - var(--header-height));
    
    padding:10px 0;
    
   
    
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* OVERLAY */
.overlay{
  background:rgba(0,0,0,0.6);
  padding:30px;
  border-radius:10px;
  text-align:center;
  max-width:800px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:15px;
  margin-top:20px;
}


/* HERO TEXTO PERSONALIZADO */
.hero-text{
	padding-top:300px ; 
	padding-bottom:500px ; 
    position:absolute;
    left:0.5%;   /* 👈 lo mueve a la izquierda */
    top:60%;
    transform:translateY(-50%);
    text-align:left;
    background:rgba(0,0,0,0.5);
    padding:30px 40px;
    border-radius:10px;
}

/* TITULO GRANDE */
.hero-text h1{
    font-size:60px; /* 👈 más grande */
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
}

/* COLOR DIFERENTE PARA 2025 */
.hero-text h1 span{
    color:#facc15; /* amarillo minería */
}

/* SUBTEXTO */
.hero-text p{
    font-size:20px;
    opacity:0.9;
}
@media(max-width:768px){

    .hero-text{
        left:5%;
        right:5%;
        top:55%;
        padding:20px;
    }

    .hero-text h1{
        font-size:35px;
    }

    .hero-text p{
        font-size:16px;
    }
}
.quienes-somos-container {
    color: #ffffff;
    font-family: 'Arial', sans-serif; /* Puedes usar Roboto o Montserrat para mayor parecido */
    max-width: 800px;
    padding-left: 70px;
}

/* Título principal */
.title-main {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.title-main span {
    display: block;
    color: #ffcc00; /* Amarillo característico */
}

/* Cuerpo de texto */
.text-description p {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 400;
}

.text-description .highlight-text {
    font-weight: bold;
    font-size: 20px;
}

.text-description strong {
    font-weight: 700;
}

.text-description .history-text {
    margin-top: 30px;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .title-main {
        font-size: 45px;
    }
    .text-description p {
        font-size: 16px;
    }
}
.servicios-geologicos {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    padding: 40px;
    max-width: 1200px;
}

.servicios-header {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.servicios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.servicio-item {
    flex: 1 1 45%; /* Dos columnas */
    min-width: 300px;
    margin-bottom: 30px;
}

/* El tercer item (Logueo) lo alineamos a la izquierda */
.servicio-item:nth-child(3) {
    flex: 1 1 50%;
}

.servicio-titulo {
    color: #ffcc00; /* Amarillo DakarDriller */
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    /* Efecto de sombra sutil para lectura sobre imagen */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.servicio-textox {
    font-size: 18px;
    line-height: 1.5;
    text-align: justify;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .servicios-header {
        font-size: 32px;
    }
    .servicio-item {
        flex: 1 1 100%;
    }
    .servicio-titulo {
        font-size: 22px;
        text-align: center;
    }
    .servicio-texto {
        text-align: center;
    }
}
.trabajos-container {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    padding: 40px;
    max-width: 1000px;
}

.trabajos-header {
    color: #ffcc00; /* Amarillo del título */
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.trabajos-lista {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trabajo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3); /* Fondo sutil para legibilidad */
    padding: 15px;
    border-radius: 8px;
}

.trabajo-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

/* El check verde puedes usarlo como imagen de fondo aquí */
.check-icon {
    width: 40px;
    height: 40px;
    background: url('../img/check-verde.png') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}

.trabajo-texto {
    font-size: 20px;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: bold;
}

.linea-empresa span, 
.linea-trabajo span {
    font-weight: normal;
}

.trabajo-logo {
    width: 180px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}

.trabajo-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .trabajo-item {
        flex-direction: column;
        text-align: center;
    }
    .trabajo-info {
        flex-direction: column;
        align-items: center;
    }
    .trabajo-logo {
        margin-left: 0;
        margin-top: 15px;
    }
    .trabajos-header {
        font-size: 28px;
    }
}
.contacto-container {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    padding: 40px;
    max-width: 700px;
    
    /* ESTO ASEGURA QUE SE PEGUE A LA IZQUIERDA */
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

/* Si el contenedor padre usa Flexbox, añade esto al padre: */
.padre-del-container {
    display: flex;
    justify-content: flex-start; /* Alinea los hijos al inicio (izquierda) */
    align-items: flex-start;
}
.contacto-header {
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.contacto-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contacto-row {
    display: flex;
    gap: 40px;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Estilo de los Iconos Amarillos */
.icon {
    width: 40px;
    height: 40px;
    background-color: #ffcc00; /* Fondo amarillo circular */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    /* Aquí podrías poner el icono como mask o background-image */
}
/* El dibujo (la i de FontAwesome) en negro */
.icon i {
    color: #000000 !important; /* Fuerza el color negro */
    font-size: 20px; /* Tamaño del icono dentro del círculo */
}

.label {
    color: #ffcc00; /* Amarillo para las etiquetas */
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.dato {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
}

/* Ajustes para móviles */
@media (max-width: 600px) {
    .contacto-header {
        font-size: 45px;
    }
    .contacto-row {
        flex-direction: column;
        gap: 25px;
    }
    .dato {
        font-size: 17px;
    }
}
.seguridad-container {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    padding: 40px;
    max-width: 900px;
    margin-left: 0; /* Asegura pegado a la izquierda */
    margin-right: auto;
}

.seguridad-titulo {
    color: #ffcc00; /* Amarillo característico */
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: left;
}

.seguridad-contenido {
    font-size: 18px;
    line-height: 1.5;
    text-align: justify; /* Mantiene el bloque de texto limpio */
}

.parrafo-principal, 
.parrafo-secundario, 
.descripcion-empresa, 
.compromisos-intro {
    margin-bottom: 20px;
}

.descripcion-empresa {
    font-weight: bold;
}

.lista-compromisos {
    margin-top: 15px;
}

.compromiso-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.punto {
    color: #ffcc00;
    font-weight: bold;
}

/* Responsivo */
@media (max-width: 768px) {
    .seguridad-titulo {
        font-size: 32px;
    }
    .seguridad-contenido {
        font-size: 16px;
        text-align: left;
    }
}
/* Contenedor principal de la sección */
.mision-vision-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 60px 40px;
    max-width: 900px;
    margin-left: 0; /* Alineado a la izquierda */
    margin-right: auto;
    font-family: 'Arial', sans-serif;
}

/* Bloque individual (Misión o Visión) */
.mision-vision-bloque {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Estilo para los Títulos (Misión / Visión) */
.mv-titulo {
    color: #ffcc00; /* Amarillo corporativo */
    font-size: 65px; /* Tamaño grande e imponente */
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -1px;
}

/* Estilo para el cuerpo de texto */
.mv-texto {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.6;
    text-align: left;
    max-width: 850px;
}

/* Resalte para el nombre de la empresa dentro del texto */
.mv-texto strong {
    color: #ffcc00;
    font-weight: bold;
}

/* Ajuste para dispositivos móviles */
@media (max-width: 768px) {
    .mv-titulo {
        font-size: 45px;
    }
    .mv-texto {
        font-size: 18px;
    }
    .mision-vision-section {
        padding: 20px;
    }
}
.valores-section {
    padding: 60px 40px;
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin-left: 0; /* Alineado a la izquierda */
    margin-right: auto;
}

.valores-header {
    color: #ffcc00; /* Amarillo corporativo */
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.valores-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.valor-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* El círculo amarillo al lado de cada valor */
.punto-amarillo {
    width: 24px;
    height: 24px;
    background-color: #ffcc00;
    border-radius: 50%;
    flex-shrink: 0;
}

.valor-texto {
    color: #ffffff;
    font-size: 38px; /* Tamaño grande como en el brochure */
    font-weight: bold;
    line-height: 1;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
    .valores-header {
        font-size: 35px;
    }
    .valor-texto {
        font-size: 24px;
    }
    .punto-amarillo {
        width: 18px;
        height: 18px;
    }
}
.servicios-section {
    padding: 60px 40px 0px 300px;
    font-family: 'Arial Narrow', Arial, sans-serif;
    max-width: 1000px;
    
    /* CAMBIO CLAVE: Cambia margin-left a 'auto' */
    margin-left: auto; 
    margin-right: auto;
    
    /* Asegura que el texto interno también se alinee al centro si lo deseas */
    text-align: center; 
}

.servicios-header {
    color: #ffffff;
    font-size: 70px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 70px;
    line-height: 0.9;
    letter-spacing: -2px;
}

.servicios-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.servicio-itemx {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* El punto blanco de la lista */
.punto-blanco {
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.servicio-texto {
    color: #ffcc00; /* Texto en amarillo según la imagen */
    font-size: 26px;
    font-weight: bold;
    line-height: 1.1;
    text-transform: none; /* Mantiene mayúsculas/minúsculas originales */
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
    .servicios-header {
        font-size: 45px;
    }
    .servicio-texto {
        font-size: 20px;
    }
    .punto-blanco {
        width: 14px;
        height: 14px;
    }
}
#menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
}

/* Estilo base nav */
#nav {
  display: flex;
  gap: 20px;
}

/* MODO MÓVIL */
@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }

  #nav {
    position: fixed;
    top: 0;
    right: -100%; /* oculto */
    width: 70%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    padding: 20px;
    transition: 0.3s;
  }

  #nav.active {
    right: 0; /* se muestra */
  }
}