/* Ajustes globales para el scroll y accesibilidad con header fijo */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* evita que el header fijo tape la sección anclada */
}
/* Reset y Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #000;
  line-height: 1.6;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section {
  padding: 80px 0;
  background: #fff;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #0056b3;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #000;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* ==================== HERO SECTION - CORREGIDO PARA MÓVILES ==================== */

.hero {
  position: relative;
  min-height: 100vh;     /* Ocupa toda la altura del dispositivo */
  height: 100vh;         /* Fuerza a que ocupe toda la pantalla */
  max-height: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* Cubre todo el contenedor */
  object-position: center;     /* Centra la imagen */
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    height: 100vh;
    /* Asegura que no haya scroll extra */
    overflow: hidden;
  }

  .hero-media img {
    object-position: center; /* Ajusta si fondo2.jpg tiene el sujeto centrado */
  }

  /* Opcional: si fondo2.jpg es muy clara, ajusta el overlay */
  .overlay {
    background: rgba(0, 0, 0, 0.6);
  }
}

/* About */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: left;
  }
}
.about-text {
  text-align: left;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.values li {
  margin: 10px 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background: #f9f9f9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  color: #0056b3;
  margin-bottom: 20px;
}

/* Why Choose Us */
.why-us {
  background: #f4f8fc;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature {
  text-align: center;
  padding: 20px;
}

.feature i {
  color: #0056b3;
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Contact */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: #0056b3;
}

.contact-info p {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  color: #0056b3;
  margin-right: 15px;
  font-size: 1.5rem;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

.contact-form button {
  width: 100%;
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 0 30px;
}

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

.footer-logo img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin: 10px 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #0056b3;
}

.footer-social a {
  color: #ccc;
  font-size: 1.5rem;
  margin-right: 15px;
}

.footer-social a:hover {
  color: #0056b3;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  /* Mostrar el botón hamburguesa en móviles */
  .hamburger {
    display: block;
  }

  /* Hace que todas las imágenes se adapten */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Ajuste para la imagen de fondo principal */
  .hero img.hero-bg {
    width: 100%;
    height: 250px; /* Ajusta la altura en móviles */
    object-fit: cover;
  }

  /* Ajusta el texto de la sección hero */
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }

  /* Asegura que columnas se apilen en móviles */
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    margin-top: 20px;
  }

  /* Menú en móviles */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Ajusta el título hero para pantallas pequeñas */
  .hero-content h1 {
    font-size: 2.5rem;
  }

  /* Ajuste en contacto y about */
  .contact-content,
  .about-content {
    flex-direction: column;
  }

  /* Centrar el logo en el footer en móviles */
  .footer-logo-section {
    text-align: center;
  }
}

/* About Us estilos */
.about-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a3d6d; /* azul profesional */
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ff6600; /* línea naranja llamativa */
  margin-top: 8px;
  border-radius: 2px;
}

.about-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.about-text em {
  font-style: normal;
  color: #ff6600;
  font-weight: 600;
}

/* Footer estilos */
.footer-logo-section {
  background-color: #000;
  padding: 20px 0;
  text-align: center; /* Centra horizontalmente */
}

.footer-logo {
  filter: grayscale(100%);
  max-width: 120px;
  height: auto;
  display: block;       /* Necesario para que margin funcione */
  margin: 0 auto;       /* Centra horizontalmente */
}

.footer-text {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 10px;
  text-align: center;   /* Centra el texto */
}

/* Logo texto */
.site-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a3d6d;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.logo {
  text-decoration: none;
}
/* ====== Responsive: Ajuste de logo y texto en móviles ====== */
@media (max-width: 768px) {
  .site-title {
    font-size: 1.5rem;   /* De 1.8rem → 1.5rem en móviles */
    letter-spacing: 1.5px; /* Un poco menos de espacio entre letras */
  }
}
/* HERO: imagen responsive por dispositivo */
.hero {
  position: relative;
  overflow: hidden;
  height: auto;          /* evita ocupar toda la pantalla */
  min-height: 60vh;      /* alto cómodo en desktop */
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;              /* top/right/bottom/left: 0 */
  z-index: -2;           /* detrás de overlay y contenido */
}

.hero-media img.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* llena el contenedor sin deformar */
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); /* oscurece la imagen */
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;            /* por encima de la imagen/overlay */
  text-align: center;
  padding: 80px 20px;    /* espacio vertical */
}

/* Altura específica en móviles para evitar cortes/grises */
@media (max-width: 768px) {
  .hero {
    min-height: 320px;   /* alto fijo cómodo para móvil */
  }
}
.services h2,
.why-us h2 {
  text-align: center;
  margin-bottom: 30px;
}
/* Contact Section centrado */
.contact-title,
.contact-subtitle {
  text-align: center;
  margin-bottom: 10px;
}

.contact-form {
  max-width: 500px;
  margin: 30px auto 0 auto;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

.contact-form button {
  background: #0056b3;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #003f82;
}
/* Banner negro debajo del formulario */
.contact-email-banner {
  background-color: #000;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}

.contact-email-banner p {
  color: #fff;
  font-size: 1.1rem;
  margin: 0;
}

.contact-email-banner a {
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
}

.contact-email-banner a:hover {
  color: #fff;
  text-decoration: underline;
}

