:root{
  --azul:#0167D2;
  --verde:#25d366;
  --oscuro:#111;
  --blanco:#fff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Baloo 2';
  background:#f5f7fb;
}

/* HEADER */
.header {
  background: var(--azul);
}

/* Barra de navegación */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

/* Logo */
.logo img {
  height: 100px;   /* Ajusta el tamaño del logo */
  width: auto;
  display: block;
}

/* Redes sociales */
.socials a {
  margin-left: 10px;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
}

.socials a img {
  height: 40px;           /* ajusta la altura según tu barra */
  width: auto;            /* mantiene proporción */
  display: inline-block;
  vertical-align: middle; /* alinea con los otros iconos y texto */
  margin-left: 3px;      /* espacio entre iconos */
}

.container {

  margin: 0 auto;
  padding: 0 10px;
}
/* Ajuste para que el slogan ocupe el espacio central */
.slogan {
  flex: 1;                /* ocupa espacio entre logo y redes */
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}

/* Texto animado */
.slogan span {
  display: inline-block;
  color: #fff;
  font-family:'Baloo 2';
  animation: moverIzquierda 90s linear infinite;
  font-weight: 1000px;
  letter-spacing: 5px;
  font-family:'Baloo 2';
  font-size: 25px;
}

/* Animación */
@keyframes moverIzquierda {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
  

}

/* HERO */
.hero{
  position:relative;
  height:90vh;
  overflow:hidden;
}

.hero-carousel img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}

.hero-carousel img.active{
  display:block;
}

.hero-text{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:40px;
  color:#fff;
  font-family:'Baloo 2';
}

.hero-text h1{
  font-family:'Baloo 2';
  font-size:48px;
}

.hero-text p{
  margin:15px 0;
  font-size:25px;
}

.hero-text a{
  font-size:18px;
  justify-content: center;
}

/* BENEFICIOS */
/* Contenedor dividido en dos */
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Columna izquierda */
.benefits-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo grande */
.benefits-logo {
  width: 90%;
  height: auto;
}

/* Columna derecha */
.benefits-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Tarjetas */
.benefit1 {
  background: #0167D2;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: #fff;
  margin-top: 10px;
  font-size: 20px;
  
}

.benefit2 {
  background: #f5f5f5;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 20px;
}
.benefit3 {
 background: #0167D2;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: #fff;
  font-size: 20px;
}
.benefit4 {
  background: #f5f5f5;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 10px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .benefits {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefits-left {
    margin-bottom: 20px;
  }
}



/* TEXTO DESTACADO */
.highlight{
  background:var(--azul);
  color:#fff;
  text-align:center;
  padding:35px 20px;
}

.highlight h2{
  font-family:'Baloo 2';
  font-size: 35px;
  padding: 10px;
}

.highlight P{
  font-family:'Baloo 2';
  font-size: 20px;
  padding: 1px;
}


/* FORM */
.form-section{
  padding:60px 20px;
  text-align:center;
}

form{
  max-width:400px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

input, select{
  padding:14px;
  border-radius:12px;
  border:1px solid #ccc;
}

.btn{
  background:var(--verde);
  color:#fff;
  padding:14px;
  border:none;
  height: auto;
  width: 215px;
  border-radius:40px;
  cursor:pointer;
}

/* FOOTER */
.footer{
  background:#0b5ed7;
  color:#fff;
  padding:15px;
  text-align:center;
  font-size:14px;
}

/* WHATSAPP BOTÓN FLOTANTE */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366; /* Verde oficial de WhatsApp */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

/* Imagen dentro */
.whatsapp img {
  width: 70px;
  height: 70px;
}

/* Efecto al pasar el mouse */
.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}


/* =========================
   SECCIÓN INFLABLES
========================= */

.inflables-section {
  padding: 80px 20px;
  background: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--azul);
  font-family: 'Baloo 2';
  font-size: 36px;
}

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.price {
  background: #f0f4f9;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.price:hover {
  transform: translateY(-5px);
}

.price h3 {
  margin: 5px;
  font-size: 20px;
}

.price p {
  margin-bottom: 1px;
  font-size: 17px;
  margin-top: 0;
}

/* CAROUSEL */
.carousel {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
}

.carousel img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: none;
}

.carousel img.active {
  display: block;

}
/* =========================
   FOOTER MEJORADO
========================= */

.footer {
  background: #0b5ed7;
  color: #fff;
  padding: 20px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
}

.footer h3 {
  font-family: 'Baloo 2';
  font-size: 22px;
  margin-bottom: 10px;
}

.footer p {
  margin: -2px 0;
  line-height: 1.6;
  font-size: 20px;
}

.footer-info {
  margin: 20px 0;
  font-weight: 500;
}

.footer small {
  display: block;
  margin-top: 20px;
  opacity: 0.9;
}
