/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* Section Quienes Somos */
.section-quienes {
  background: #e4dcda;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.left-content {
  padding: 60px;
}

.logo-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 40px;
}

.logo-box .fa-mountain {
  font-size: 2.8rem;
  color: #1e40af;
}

.logo-text {
  color: #1e40af;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.section-title {
  color: #1e40af;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.section-desc {
  color: #000;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.lightbulbs-row {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.lightbulb {
  width: 65px;
  height: 65px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbulb i {
  font-size: 1.8rem;
  color: #000;
}

.lightbulb.active {
  background: #fb923c;
}

.lightbulb.active i {
  color: white;
}

.lightbulb:hover {
  transform: translateY(-5px);
}

.btn-consulta {
  background: #000;
  color: white;
  border: none;
  padding: 12px 35px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.btn-consulta:hover {
  background: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.pill i {
  color: #1e40af;
  font-size: 0.9rem;
}

.right-image {
  position: relative;
  height: 100vh;
}

.image-container-main {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-container-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mountain-top-right {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3.5rem;
  color: #1e40af;
  opacity: 0.3;
  z-index: 10;
}

/* Section Que Hacemos */
.section-hacemos {
  background: white;
  padding: 80px 0;
  position: relative;
}

.text-content {
  padding: 0 60px;
  position: relative;
}

.mountain-left {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #1e40af;
  opacity: 0.2;
}

.section-title-blue {
  color: #1e40af;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.section-text {
  color: #000;
  font-size: 1.05rem;
  line-height: 1.7;
}

.image-content {
  padding: 0 60px;
}

.image-wrapper-hacemos {
  position: relative;
}

.image-wrapper-hacemos img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.arrow-button {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.arrow-button:hover {
  background: #2563eb;
  transform: translateY(-50%) scale(1.1);
}

.arrow-button i {
  color: white;
  font-size: 1.3rem;
}

/* Section Servicios */
.section-servicios {
  background: #e4dcda;
  padding: 80px 0;
  position: relative;
}

.servicios-title {
  color: #1e40af;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.mountain-services {
  color: #1e40af;
  font-size: 3rem;
  opacity: 0.3;
}

.service-box {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-items {
  list-style: none;
  padding: 25px 30px;
  margin: 0;
}

.service-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #1e40af;
  font-weight: 500;
  font-size: 0.95rem;
}

.service-items li:last-child {
  border-bottom: none;
}

.service-items li i {
  color: #1e40af;
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Section Ayudamos */
.section-ayudamos {
  background: white;
  padding: 80px 0;
  position: relative;
}

.bordered-title {
  border: 4px solid #1e40af;
  display: inline-block;
  padding: 18px 45px;
  border-radius: 8px;
  color: #1e40af;
  font-weight: 700;
  font-size: 2rem;
}

.img-ayuda {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blue-box {
  background: #1e40af;
  color: white;
  padding: 45px 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blue-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

.mountain-bottom-left {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 3rem;
  color: #1e40af;
  opacity: 0.2;
}

/* Section 5: Contacto */
.section-contacto {
  background: #e4dcda;
  padding: 80px 0;
  position: relative;
}

.img-contacto {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-box {
  padding: 45px;
}

.contact-box h2 {
  color: #1e40af;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item h5 {
  color: #1e40af;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-item p {
  color: #000;
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item i {
  color: #1e40af;
}

.btn-reserva {
  background: #1e40af;
  color: white;
  border: none;
  padding: 14px 38px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.btn-reserva:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mountain-bottom-right {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 3.5rem;
  color: #1e40af;
  opacity: 0.2;
}

/* Messenger Bubble */
.messenger-bubble {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #0084ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.messenger-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.messenger-bubble i {
  color: white;
  font-size: 1.7rem;
}

/* Responsive */
@media (max-width: 991px) {
  .left-content {
    padding: 40px 30px;
  }

  .right-image {
    height: 50vh;
  }

  .text-content,
  .image-content {
    padding: 20px 30px;
  }

  .mountain-left {
    display: none;
  }

  .section-title,
  .section-title-blue,
  .servicios-title {
    font-size: 2rem;
  }

  .bordered-title {
    font-size: 1.5rem;
    padding: 15px 30px;
  }

  .contact-box {
    padding: 35px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .lightbulbs-row {
    justify-content: center;
  }

  .pills-row {
    justify-content: center;
  }

  .right-image {
    height: 40vh;
  }

  .mountain-top-right,
  .mountain-bottom-left,
  .mountain-bottom-right {
    display: none;
  }

  .arrow-button {
    right: 10px;
  }
}
