/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #F7F4EF;
}
 .roboto-bold {
      font-family: "Roboto", serif;
      font-optical-sizing: auto;
      font-weight: 700;
      font-style: normal;
      font-variation-settings: "wdth" 100;
    }
    .roboto-light {
      font-family: "Roboto", serif;
      font-optical-sizing: auto;
      font-weight: 300;
      font-style: normal;
      font-variation-settings: "wdth" 100;
    }
    
.roboto-regular {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/* Header (Hero Section) */
.hero {
  background-image: url(../img/puerto.jpeg);
  background-size: cover; /* Escala para cubrir todo el contenedor */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  text-align: center;
  padding: 50px 20px;
  height: 800px;
}
.hero img {
  position: absolute; /* Permite posicionarlo dentro del contenedor padre */
  top: 20px; /* Espaciado desde la parte superior */
  left: 20px; /* Espaciado desde la derecha */
  width: 180px; /* Ajusta el tamaño del logo según sea necesario */
  height: auto; /* Mantiene la proporción del logo */
}
.hero h1 {
  font-family: "Arial Black";
  margin-top: 60px;
  font-size: 33px;
  text-transform: uppercase;
  line-height: 1.5;
}

@media (max-width: 768px) { /* Pantallas con ancho igual o menor a 768px */
  .hero h1 {
    color: #fff; /* Color para pantallas pequeñas (móviles) */
  }
}

/* Services Section */
.services {
  text-align: center;
  padding: 40px 20px;
}

.certification {
  border: 1px solid #ecab0f;
  background-color: #d09306;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.services h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service {
  background-color: #333;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease; /* Para suavizar el efecto */
}


.service img {
  width: 100%;
  border-radius: 8px;
}

.service h3 {
  font-size: 20px;
  margin: 15px 0 10px;
  color: #fff;
}

.service p {
  margin: 10px 0;
  color: #fff;
}

.service:hover {
  background-color: #555; /* Cambia el color de fondo al pasar el cursor */
  transform: scale(1.05); /* Aumenta ligeramente el tamaño del div */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Agrega un efecto de sombra */
  border-color: #fff; /* Cambia el color del borde */
}
/* Terminos */
.terms {
  text-align: center;
  padding: 20px;
}
/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.footer-info {
  margin-bottom: 10px;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}
