/* ================================
   HERO / SLIDER
================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Logo */
.hero-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px; /* alto de la cintilla */
  background: #ffffff; /* color blanco */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-logo img {
  /* max-height: 120px; */
  width: 200px;
}
.hero-logo {
  height: 120px;
  transition:
    height 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-logo img {
  width: 200px;
  transition: width 0.3s ease;
}

.hero-logo.shrink {
  height: 80px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-logo.shrink img {
  width: 145px;
}

.main-menu {
  position: absolute;
  top: 0px; /* justo debajo de la cintilla */
  left: 0;
  width: 100%;
  z-index: 4;
  transition: all 0.3s ease;
}

.main-menu.fixed {
  position: fixed;
  top: 0px; /* cuando la cintilla está reducida */
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
/* =========================
   SLIDER
========================= */
.hero-slide {
  padding-top: 90px;
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}

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

/* =========================
   TEXTO HERO (IZQUIERDA)
========================= */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;

  /* IMPORTANTE */
  align-items: flex-start;
  text-align: left;

  padding-left: 8%;
  padding-right: 40%; /* espacio para que NO choque con el formulario */
  color: #ffffff;
  top: 15%;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  max-width: 600px;
}

.hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 520px;
}

/* =========================
   FORMULARIO (DERECHA)
========================= */
.hero-form {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 400px;

  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  padding: 28px 26px;
  border-radius: 16px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.hero-form h4 {
  font-weight: 700;
  margin-bottom: 4px;
  color: #0f3f46;
}

.hero-form p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 18px;
}

/* Inputs */
.hero-form .form-control {
  border-radius: 12px;
  padding: 12px;
  font-size: 0.95rem;
}

/* Botón */
.hero-form .btn-primary {
  background: linear-gradient(135deg, #2596be, #179e98);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  padding: 12px;
}

.hero-form .btn-primary:hover {
  opacity: 0.95;
}
/* =========================
   BOTÓN WHATSAPP HERO
========================= */
.btn-whatsapp-hero {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 26px;
  border-radius: 50px;

  background: linear-gradient(135deg, #2596be, #179e98);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.btn-whatsapp-hero i {
  font-size: 1.25rem;
}

@media (max-width: 991px) {
  .btn-whatsapp-hero {
    margin-top: 16px;
    padding: 12px 22px;
    font-size: 0.95rem;
  }
}
/* Hover */
.btn-whatsapp-hero:hover {
  background: linear-gradient(135deg, #7eccd9, #2596be);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  color: #ffffff;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  /* Texto vuelve al centro */
  .hero-content {
    align-items: center;
    text-align: center;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  /* OCULTAMOS FORMULARIO */
  .hero-form {
    display: none;
  }

  .hero-logo img {
    max-width: 150px;
  }
}
@media (min-width: 1201px) {
  .hero-form {
    top: 60%;
  }
}
/* ================================
SECCION QUIENES SOMOS
================================ */

.quienes-bg {
  background-color: #7eccd9;
}

.quienes-title {
  color: #2596be;
}

.quienes-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #0f3f46;
  font-weight: 500;
}

.quienes-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #179e98;
  font-weight: bold;
}

.mvv-section {
  background: linear-gradient(180deg, #f4fbfd 0%, #ffffff 100%);
}

.mvv-title {
  color: #2596be;
  font-weight: 700;
  font-size: 2.4rem;
}

.mvv-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2596be, #179e98);
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2596be, #179e98);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 34px;
  box-shadow: 0 10px 25px rgba(37, 150, 190, 0.35);
}

.mvv-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f3f46;
}

.mvv-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === LISTA DE VALORES === */

.mvv-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.mvv-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #0f3f46;
  font-weight: 500;
}

.mvv-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #179e98;
  font-weight: bold;
}

/* === RESPONSIVE AJUSTES === */

@media (max-width: 768px) {
  .mvv-title {
    font-size: 2rem;
  }

  .mvv-card {
    padding: 30px 22px;
  }
}

/* ================================
VENTAJAS
================================ */

.ventajas-lean-bg {
  background-color: #f4fbfd;
}

.ventajas-title {
  color: #2596be;
}

.ventaja-card {
  border: none;
  border-radius: 16px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
}

.ventaja-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #2596be, #179e98);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
}

/* ================================
PRODUCTOS
================================ */

.productos-section {
  background-color: #f4fbfd;
}

.productos-title {
  color: #2596be;
  font-weight: 700;
  font-size: 2.4rem;
}

/* Card */
.producto-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.producto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

/* Imagen */
.producto-img {
  overflow: hidden;
}

.producto-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.producto-card:hover img {
  transform: scale(1.08);
}

/* Body */
.producto-body {
  padding: 25px 22px 30px;
}

.producto-body h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f3f46;
}

.producto-body p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Botón */
.btn-producto {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-weight: 600;
  color: #179e98;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-producto i {
  transition: transform 0.3s ease;
}

.btn-producto:hover {
  color: #2596be;
}

.btn-producto:hover i {
  transform: translateX(6px);
}

/* Responsive */
@media (max-width: 768px) {
  .productos-title {
    font-size: 2rem;
  }

  .producto-img img {
    height: 200px;
  }
}

/* ================================
FORMULARIO
================================ */
.contacto-lean {
  background: linear-gradient(135deg, #f4fbfd, #ffffff);
}

.contacto-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #2596be;
}

/* Header */
.contacto-header h3 {
  font-weight: 700;
  color: #0f3f46;
  margin-bottom: 8px;
}

.contacto-header p {
  color: #555;
  font-size: 0.95rem;
}

/* Inputs */
.contacto-card .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #0f3f46;
}

.contacto-card .form-control {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #dfeef2;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contacto-card .form-control:focus {
  border-color: #179e98;
  box-shadow: 0 0 0 0.15rem rgba(23, 158, 152, 0.15);
}

/* Botón */
.btn-lean {
  background: linear-gradient(135deg, #2596be, #179e98);
  color: #ffffff;
  font-weight: 600;
  padding: 13px;
  border-radius: 14px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s ease;
}

.btn-lean:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 576px) {
  .contacto-card {
    padding: 30px 22px;
  }
}

/* ================================
GALERIA
================================ */
.galeria-section {
  background: #ffffff;
}

.galeria-title {
  color: #2596be;
  font-weight: 700;
  font-size: 2.4rem;
}

/* Card */
.galeria-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.galeria-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Overlay */
.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 63, 70, 0.15),
    rgba(15, 63, 70, 0.75)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.galeria-overlay h5 {
  font-weight: 700;
  margin-bottom: 4px;
}

.galeria-overlay span {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Hover */
.galeria-card:hover img {
  transform: scale(1.08);
}

.galeria-card:hover .galeria-overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .galeria-title {
    font-size: 2rem;
  }

  .galeria-card img {
    height: 220px;
  }
}

/* ================================
FOOTER
================================ */
.footer-lean {
  background: linear-gradient(135deg, #2596be, #179e98);
  color: #ffffff;
  padding: 50px 0 25px;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.footer-text {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Contacto */
.footer-contact {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-contact i {
  margin-right: 6px;
  color: #7eccd9;
}

/* Divider */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.25);
  margin: 25px 0 15px;
}

/* Bottom */
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-lean {
    text-align: center;
  }
}

.footer-phone {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.footer-phone:hover {
  text-decoration: underline;
  opacity: 1;
}

.footer-email {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

.footer-email:hover {
  text-decoration: underline;
  opacity: 1;
}
