/* =====================
   RESET + BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #0a2540;
  line-height: 1.6;
  background: #ffffff;
}

/* =====================
   HERO / CAROUSEL
===================== */
.hero {
  width: 100%;
}

.carousel {
  height: 60vh; /* 60% visual real */
  position: relative;
  overflow: hidden;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Overlay azulado */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10, 37, 64, 0.75),
    rgba(10, 37, 64, 0.55)
  );
}

/* Texto */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.slide-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.6px;
}

.slide-content p {
  font-size: 19px;
  font-weight: 300;
  max-width: 680px;
}

/* =====================
   CAROUSEL CONTROLS (MINIMAL)
===================== */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.08);
}

.prev { left: 30px; }
.next { right: 30px; }
.slide-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 26px;
  border-radius: 30px;
  background: #6299b9;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: transform .3s ease, box-shadow .3s ease;
}

.prod-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
}

/* =====================
   VALUES
===================== */
.values {
  background: #f8fafc;
  padding: 120px 0;
}

.values-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.value-card {
  text-align: center;
  padding: 45px 35px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.1);
}

.value-card img {
  height: 80px;
  margin-bottom: 24px;
}

.value-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
}

.value-card p {
  font-size: 16px;
  font-weight: 400;
  color: #4a5d73;
  max-width: 320px;
  margin: auto;
}

/* =====================
   CTA
===================== */
.home-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #68b3d3, #4699c9);
  color: #313131;
  text-align: center;
  padding: 110px 20px;
}

/* Luces decorativas */
.home-cta::before,
.home-cta::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  z-index: 0;
}

.home-cta::before {
  background: #ffffff;
  top: -120px;
  left: -120px;
}

.home-cta::after {
  background: #1f9bd1;
  bottom: -140px;
  right: -140px;
}

/* Contenido por encima de las luces */
.home-cta h2,
.home-cta p,
.home-cta .cta-btn {
  position: relative;
  z-index: 1;
}

.home-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}

.home-cta p {
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Botón */
.home-cta .cta-btn {
  background: #ffffff;
  color: #147bb8;
  padding: 15px 38px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-cta .cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .home-cta {
    padding: 90px 20px;
  }

  .home-cta h2 {
    font-size: 28px;
  }

  .home-cta p {
    font-size: 16px;
  }
}
/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;

  width: 64px;
  height: 64px;

  background-color: #25d366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 28px rgba(0,0,0,.3);
  z-index: 9999;

  transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}

/* 🔥 CLAVE */
.whatsapp-float img {
  width: 32px;
  height: 32px;
  display: block;
}
  