/* Reset and font settings */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

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

.site-header {
  background-color: #000;
  padding: 15px 20px;
  color: white;
  position: relative;
}

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

.logo img {
  height: 50px;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navigation a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.cta-button a {
  background-color: gold;
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

#menu-toggle {
  display: none;
}

/* Hero section */
.hero {
  position: relative;
  width: 100%;
  height: 720px; /* Tamaño base en desktop */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 👈 asegura que el video llene sin deformar */
  object-position: center center;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  color: white;
}


.about-section {
  background-color: #000; /* Fondo negro */
  color: #fff;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.mission-vision-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 20px;
  background-color: white;
  flex-wrap: wrap;
}
.card {
  background-color: #000;
  color: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  max-width: 400px;
  flex: 1;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* transiciones suaves */
}

.card:hover {
  transform: scale(1.05); /* efecto ampliado */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* sombra más pronunciada */
}


.card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.hero-human-centered {
  background-color: gold;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: flex-start; 
  align-items: center;
  padding-left: 13%;             
  padding-right: 20px;
  color: #000;
}

.hero-text {
  max-width: 700px;
  text-align: center;           
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 400;
}

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

.services-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  color: #000;
}

.services-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.services-intro p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background-color: #000;
  color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* 👈 transición suave */
}
.service-card:hover {
  transform: scale(1.05); /* 👈 efecto de ampliación */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* 👈 sombra más notoria */
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.5;
}


.security-section {
  background-color: black;
  background-position: center right;
  background-repeat: no-repeat;
  height: 70vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 8%;
  color: #fff;
}

.security-text {
  max-width: 500px;
  text-align: left;
}

.security-text h2 {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 400;
}

.why-choose-us {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
  color: #000;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #0c1b4d; /* azul oscuro como en la imagen */
}

.choose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.choose-card {
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
  transform: scale(1.05); /* 👈 se amplía al pasar el mouse */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* 👈 sombra más pronunciada */
}


.choose-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.ezee-partner-section {
  background-color: #d59f24;
  padding: 80px 20px;
  color: #000;
}

.ezee-partner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.ezee-image {
  flex: 1;
  min-width: 300px;
}

.ezee-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.ezee-text {
  flex: 1;
  min-width: 300px;
  font-size: 1.9rem;
  line-height: 2.4rem;
  text-align: center;
}

.core-values {
  padding: 60px 20px;
  background-color: white;
  text-align: center;
  color: #000;
}

.core-values h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

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

.value-card {
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* 👈 transición suave */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.value-card:hover {
  transform: scale(1.05); /* 👈 efecto de ampliación */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); /* 👈 sombra más fuerte */
}

.value-card img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}


.gallery-section {
  background-color: #dcdcdc; /* gris claro */
  padding: 40px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas fijas */
  gap: 20px;
  justify-items: center;
}

.gallery-grid img {
  width: 400px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}


.prom-cont {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
}

.cta-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
}

.cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;    
  margin: 0 auto;          
  gap: 40px;
}

.cta-text {
  flex: 1;
  min-width: 300px;
  font-size: 2.2rem;
  line-height: 2.8rem;
}

.cta-image {
  flex: 1;
  min-width: 300px;
  text-align: right;
}

.cta-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  object-fit: cover;
}


@media (max-width: 768px) {
  .navigation ul {
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #000;
    display: none;
    z-index: 1000;
    padding: 20px 0;
  }

  #menu-toggle:checked ~ .navigation ul {
    display: flex;
  }

  .cta-button {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .menu-icon {
    display: block;
  }

  .navigation {
    width: 100%;
    text-align: center;
  }

  .hero {
    height: 150px; /* Puedes ajustar este valor si quieres más o menos alto */
  }
  .hero-human-centered {
    justify-content: center;
    padding: 0 20px;
  }
  

  .hero-text {
    text-align: center;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}

.ezee-footer {
  background-color: #d59f24;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  flex-wrap: wrap;
}

.footer-left img {
  max-height: 100px;
}

.footer-right {
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.social-icons a {
  background-color: #000;
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  font-size: 1.2rem;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.social-icons a:hover {
  transform: scale(1.1);
}
.slides {
  flex-direction: column;
  align-items: center;
}

.slides img {
  max-width: 90%;
  margin: 0 auto;
}