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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #2e1f13;
  color: white;
  overflow-x: hidden;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('assets/Portada.png') no-repeat center center;
  background-size: cover;
  padding-top: 120px; /* Añadir padding-top para evitar el solapamiento del header */
  margin-top: 120px;
}

.logo {
  position: absolute;
  top: 60px;
  right: 60px;
  padding-top: 10px;
}

.franja {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 50%;
  height: 40px;
  background: linear-gradient(to right, #d06e1e 35%, transparent 100%);
}

.mensaje {
  position: absolute;
  bottom: 40px;
  left: 50%;
  padding: 15px 25px;
  border-radius: 5px;
}

.mensaje h1 {
  font-size: 2.5em;
  color: #f47920;
  margin: 0;
  text-align: right;
}

.mensaje h2 {
  font-size: 1.5em;
  font-style: italic;
  color: #ffffff;
  margin: 0;
  text-align: right;
}

section {
  padding: 60px 3%;
}

section h3 {
  color: #e7761a;
  font-size: 2em;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li::before {
  content: "\2022";
  color: #e7761a;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.footer {
  background-color: #1a120a;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #ccc;
}

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background-image: url('assets/About us.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.about-text {
  max-width: 50%;
}

.about-franja {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(to right, #d06e1e 35%, transparent 100%);
  font-weight: bold;
  font-size: 1.3em;
  margin-bottom: 20px;
}

.about-title {
  color: #f47920;
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.6em;
}

.about-text span {
  color: #f47920;
  font-weight: bold;
}

.experiences {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background-image: url('assets/Nuestra Experiencia.png');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}

.experiences-text {
  max-width: 55%;
}

.experience-item {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
}

.experience-item .icon {
  font-size: 2em;
  margin-right: 20px;
  color: #f47920;
}

.experience-item .icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.experience-item .content h4 {
  color: white;
  font-size: 1.3em;
  margin-bottom: 5px;
}

.experience-item .content p {
  font-size: 1em;
  line-height: 1.6em;
}

@media screen and (max-width: 768px) {
  .logo {
    right: 20px;
  }

  .logo img {
    height: 70px;
  }

  .mensaje h1 {
    font-size: 1.8em;
  }

  .mensaje h2 {
    font-size: 1.2em;
  }

  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .experiences {
    flex-direction: column;
    background-position: bottom center;
    background-size: cover;
    text-align: center;
    padding: 40px 5%;
  }

  .experiences-text {
    max-width: 100%;
  }

  .experience-item {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .experience-item .icon {
    margin-bottom: 15px;
  }

  .experience-item .icon img {
    width: 60px;
    height: 60px;
  }

  .experience-item .content h4 {
    font-size: 1.2em;
  }

  .experience-item .content p {
    font-size: 1em;
    padding: 0 10px;
  }

  .about-title {
    font-size: 2em !important;
  }
}

.solutions {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 10%;
  background-image: url('assets/Soluciones Diseñadas .png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.solutions-left {
  width: 45%;
}

.solutions-left h2 {
  font-size: 2.5em;
  color: white;
  margin-bottom: 20px;
}

.solutions-left h2 span {
  font-style: italic;
  color: #b3b3b3;
  font-weight: normal;
}

.solutions-left p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #ffffff;
}

.solutions-logo {
  margin-top: 40px;
}

.solutions-logo img {
  /* width: 200px; */
}

.solutions-right {
  width: 50%;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.arrow-icon {
  width: 65px;
  height: 65px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.solution-content h4 {
  color: white;
  font-size: 1em;
  margin: 0;
}

.solution-content h4 span {
  color: #ff4f00;
  font-size: 1.3em;
  font-weight: bold;
  margin-right: 10px;
}

.solution-content p {
  font-size: 1em;
  color: #ccc;
}

@media screen and (max-width: 768px) {
  .solutions {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .solutions-left,
  .solutions-right {
    width: 100%;
  }

  .solution-item {
    flex-direction: column;
    align-items: center;
  }

  .arrow-icon {
    margin-bottom: 10px;
  }
}

.header {
  background: linear-gradient(to bottom, #111111, #000000);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid #222;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.header-left {
  flex: 1;
}

.header-logo {
  height: 80px;
  object-fit: contain;
}

.nav-capsule {
  display: flex;
  background: #1e1e1e;
  border-radius: 30px;
  padding: 10px 30px;
  list-style: none;
  gap: 30px;
  box-shadow: inset 0 0 6px #444;
}

.nav-capsule li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-capsule li a:hover {
  color: #e07b29;
}

.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.btn-contact {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1em;
  padding: 8px 16px;
  transition: color 0.3s ease;
}

.btn-contact:hover {
  color: #e07b29;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 20px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .nav-capsule {
    display: none;
    flex-direction: column;
    background: #1e1e1e;
    position: absolute;
    top: 80px;
    right: 20px;
    width: 200px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
  }

  .nav-capsule.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .header-logo {
    height: 40px;
  }

  .header-right {
    display: none;
  }

  .hero {
    padding-top: 100px;
  }
}

.contacto {
  background: url('assets/Contact .png') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.contacto-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 100px 40px;
  flex-grow: 1;
  flex-wrap: wrap; /* Permite que los elementos dentro del contenedor se ajusten cuando la pantalla sea pequeña */
}

.contacto-left h2 {
  font-size: 60px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #f57c00;
  margin-bottom: 40px;
}

.contacto-info {
  font-size: 20px;
  margin: 10px 0;
  color: white;
}

.contacto-logo {
  max-width: 250px;
}

.franja-inferior {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 20px 100px;
  background: none;
  position: relative;
}

.franja-inferior::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 41%;
  background: linear-gradient(to right, #f57c00, #b76a2c);
}

.franja-inferior span {
  font-weight: 700;
  color: #f57c00;
  font-size: 28px;
  margin-right: 8px;
}

.franja-inferior em {
  color: white;
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .contacto-container {
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center; /* Centra los elementos en pantallas pequeñas */
  }

  .contacto-left h2 {
    font-size: 36px; /* Reducir el tamaño de la fuente para pantallas pequeñas */
  }

  .contacto-info {
    font-size: 18px; /* Reducir el tamaño de la fuente para pantallas pequeñas */
  }

  .contacto-logo {
    max-width: 150px; /* Reducir el tamaño del logo en pantallas pequeñas */
    margin-top: 20px; /* Añadir margen para separación */
  }

  .franja-inferior {
    flex-direction: column; /* Cambiar la dirección de la franja en pantallas pequeñas */
    padding: 20px 0;
    align-items: center;
    justify-content: center;
  }

  .franja-inferior::before {
    width: 80%; /* Reducir el ancho de la franja en pantallas pequeñas */
    top: 0; /* Ajustar la franja para que se alinee correctamente */
  }

  .franja-inferior span {
    font-size: 22px; /* Ajustar el tamaño de la fuente para pantallas pequeñas */
    margin-right: 0; /* Eliminar margen derecho */
  }

  .franja-inferior em {
    font-size: 20px; /* Reducir el tamaño de la fuente en pantallas pequeñas */
  }
}
