/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:    #193581;
  --blue:    #193581;
  --water:   #00a0e3;
  --sky:     #00a0e3;
  --pool:    #00a0e3;
  --gold:    #fdcf1f;
  --cream:   #f5f1eb;
  --concrete:#e8e4de;
  --white:   #ffffff;
  --text:    #1a1a2e;
  --muted:   #5a6a7a;
  --radius:  12px;
  --shadow:  0 8px 40px rgba(11,31,58,.12);
  --font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: var(--font-body);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.container  { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-alt{ background: var(--cream); }
.label      {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}
h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
}
p { line-height: 1.7; color: var(--muted); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.btn-primary {
  background: #25d366;
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  margin-bottom: 
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-gold {
  background: var(--gold);
  color: #fff;
}

/* =========================
RESET
========================= */

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

body{
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:#f5f7fa;
  overflow-x:hidden;
}

/* =========================
TOP HEADER
========================= */

.top-header{
  width:100%;
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
}

.top-header-container{
  max-width:1400px; 
  margin:auto;
  padding:18px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  height:72px;
}

.header-right{
  text-align:right;
}

.header-right h3{
  color:#0b4fa3;
  font-size:20px;
  font-weight:800;
  margin-bottom:5px;
}

.header-right p{
  color:#64748b;
  font-size:16px;
  line-height:1.25;
}

/* =========================
HERO
========================= */

.hero{
  position:relative;
  overflow:hidden;

  background:
    linear-gradient(
      90deg,
      rgba(4,33,74,.90) 0%,
      rgba(4,33,74,.80) 30%,
      rgba(4,33,74,.35) 65%,
      rgba(4,33,74,.15) 100%
    ),
    url('/images/banner-hero.png') center center/cover no-repeat;
}

.hero-container{ 
  max-width:1400px; 
   max-height:80vh;
  margin:auto;
  padding:80px 40px 70px;

  display:grid;
  grid-template-columns:1fr 540px;
  gap:60px;

  align-items:start;  
 
}@media (max-width:997px){

  .hero-container{
    max-height:none;
    grid-template-columns:1fr;
    padding:60px 24px;
    gap:36px;
  }

}

/* =========================
LEFT CONTENT
========================= */

.hero-content{
  max-width:700px;
}

.hero-badge{
  display:inline-block;
  margin-bottom:24px;
  color:#ffffff;
  font-size:15px;
  font-weight:700;
  letter-spacing:.12em;
}

.hero-title{
  font-size:42px;
  line-height:.95;
  font-weight:800;
  color:#ffffff;
  margin-bottom:10px;
}

.hero-title span{
  color: var(--gold);
  font-style:italic;
}

.hero-description{
  font-size:16px;
  line-height:1.6;
  color:#e7eef9;
  margin-bottom:35px;
  max-width:560px;
}

/* =========================
BENEFITS
========================= */
.hero-benefits{
  display:flex;
  flex-direction:column;
  gap:1px;
}

.hero-benefit-item{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  gap:18px;
  padding: 6px !important;
}

.hero-benefit-icon{
  width:46px;
  height:46px;
  min-width:46px;
  min-height:46px;  
  border-radius:50%; 
margin: 0 !important;
  display:flex;
  align-items:center;
  justify-content:center; background-color: rgba(26,26,46,.7);
}

.hero-benefit-icon img{
  width:40px;
  height:auto;
  object-fit:contain;
  padding: 6px;
}

.hero-benefit-text{
  color:#fff;
  font-size:16px;
  line-height:1.4;
  margin:0;
}/* =========================
FORM HERO
========================= */

.form-wrapper{
  width:100%;
  align-self:start;
  margin-top: 2rem
}

.form-wrapper iframe{
  display:block;
  width:100%;
  height:720px;
  border:none;
  background:transparent;
}

/* tablet */
@media (max-width:1200px){

  .hero-container{
    grid-template-columns:1fr 430px;
    gap:40px;
  }

  .form-wrapper iframe{
    height:690px;
  }
}

/* mobile */
@media (max-width:992px){

  .hero{
    overflow:visible;
  }

  .hero-container{
    grid-template-columns:1fr;
    padding:60px 24px;
    gap:32px;
  }

  .hero-content{
    max-width:100%;
  }

  .form-wrapper{
    width:100%;
    display:block;
  }

  .form-wrapper iframe{
    width:100%;
    height:690px;
    min-height:690px;
    display:block;
  }
}
/* ─── items bajo hero ───────────────────────────────────────────── */
/* =========================
BOTTOM BAR
========================= */

.bottom-bar{
  background:#ffffff;
  padding:28px 20px;
}

.bottom-container{
  max-width:1200px;
  margin:0 auto;

  display:flex;  align-items:flex-start; 
  justify-content:space-between;
  gap:40px;
}

.bottom-item{
  display:flex;
  align-items:center;
  gap:18px;

  flex:1;
  min-width:0;
}

.bottom-icon{
  width:58px;
  height:58px;
  min-width:58px;
 

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;align-items:flex-start; 
}

.bottom-icon img{ 
  object-fit:contain;
}

.bottom-text h4{
  margin:0 0 4px;

  font-size:22px;
  font-weight:700;
  color:var(--text);
  line-height:1.2;
}

.bottom-text p{
  margin:0;

  font-size:16px;
  color:var(--text);
  line-height:1.5;
}

/* TABLET */
@media(max-width:992px){

  .bottom-container{
    gap:24px;
  }

  .bottom-text h4{
    font-size:20px;
  }

  .bottom-text p{
    font-size:16px;
  }
}

/* MOBILE */
@media(max-width:768px){

  .bottom-container{
    flex-direction:column;
    align-items:flex-start;
    gap:22px;
  }

  .bottom-item{
    width:100%;
  }
}


/* ─── PRODUCTOS ───────────────────────── */
#carrusel {
  background: var(--navy);
  padding: 72px 0;
  overflow: hidden;
}

.products-title {
  text-align: center;
  color: #fff;
  margin-bottom:0px !important;
}
#carrusel .bajada {
  text-align: center;
  font-size: 1.2rem;
  padding: 0 20px 40px 20px;
  color: #fff;  
}
/* CONTENEDOR */
.slider-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;

  width: 100%;
  max-width: 1440px;

  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ─── CARD ───────────────────────── */
.slide-card {
  position: relative;

  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;

  padding: 36px; 
}

/* recomendado */
.recommended {
  position: absolute;
  top: -26px;
  left: 40%;

  background:  var(--gold);
  color: #17355d;

  padding: 14px 22px;
  border-radius: 999px;

  font-size: .95rem;
  font-weight: 700;
  line-height: 1;
  z-index: 5;

  display: flex;
  align-items: center;
  gap: 8px;

  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

/* layout interno */
.card-content {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  align-items: center;
}

/* ─── IMAGEN ───────────────────────── */
.card-image {
  display: flex;
  align-items: center;
  justify-content: center;height: 100%;
}

.card-image img {
  height: 100%;
  object-fit: contain;
  display: block;
}

/* tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: rgba(2,150,214,.16);
  color: #66d3ff;

  padding: 10px 18px;
  border-radius: 999px;

  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;

  margin-bottom: 18px;
}

/* título */
.slide-card h4 {
  font-size: clamp(1.8rem, 1.7vw, 2.3rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}

/* descripción */
.slide-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  margin-bottom: 22px;
}

/* lista */
.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;

  color: rgba(255,255,255,.92);
  line-height: 1.4;
}

.product-list li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 1px;

  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: rgba(2,150,214,.18);
  color: #43d0ff;

  font-size: .8rem;
  font-weight: 700;
}

/* precio */
.price-wrap {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.desde {
  display: block;
  margin-bottom: 8px;

  color: rgba(255,255,255,.55);
  font-size: .84rem;
  letter-spacing: .08em;
}

.price {
  color:  var(--gold);
  font-size: clamp(2.2rem, 2.3vw, 3.1rem);
  line-height: 1;
  font-weight: 700;
}

.price small {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
}

/* ─── MOBILE ───────────────────────── */
@media (max-width: 768px) {

  .slider-track {
    display: flex;
    overflow-x: auto;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    gap: 18px;
    padding: 0 20px;

    scrollbar-width: none;
  }

  .slider-track::-webkit-scrollbar {
    display: none;
  }

  .slide-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 28px;
    overflow: visible;
  }

  .card-content {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .card-image img {
    max-width: 140px;
  }

  .tag {
    margin: 0 auto 18px;
  }

  .slide-card h4 {
    font-size: calc(2rem + 2px);
  }

 .product-list {
    text-align: center;
  }

  .product-list li {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;
    padding-left: 0;
    margin-bottom: 14px;

    text-align: center;
  }

  .product-list li::before {
    position: static;
    flex-shrink: 0;
  }
  .price {
    font-size: calc(2.6rem + 2px);
  }

  .recommended {
  position: relative;
  top: -40;
  right: auto;

  width: fit-content;

  z-index: 5;
  }
}
/* ─── BENEFICIOS ─────────────────────────────────────────── */
#beneficios .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--concrete);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--water), var(--pool));
  transform: scaleX(0);
  transition: transform .3s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.benefit-card:hover::after { transform: scaleX(1); }
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--water), var(--pool));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.benefit-card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.benefit-card p { font-size: .92rem; }
/* ─── QUÉ ES ──────────────────────────────────────────────── */
/* ─────────────────────────────
   SECTION
───────────────────────────── */

.aquapool-product{
  background:#193581;
  overflow:hidden;
  color:#fff; padding:  70px ;
}

.product-layout{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(280px,.75fr);
  gap:28px;
  align-items:center;
}

/* ─────────────────────────────
   LEFT CONTENT
───────────────────────────── */

.product-content{
  max-width:760px;
}

.product-label{
  color: var(--gold);
  font-size:.85rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  display:inline-block;
  margin-bottom:14px;
  position:relative;
}

.product-label::after{
  content:"";
  display:block;
  width:48px;
  height:2px;
  background: var(--gold);
  margin-top:10px;
}

.product-content h2{
  font-size:clamp(2.7rem,4vw,4.8rem);
  line-height:.95;
  letter-spacing:-0.03em;
  margin-bottom:18px;
  color:#fff;
}

.product-content h2 span{
  color: var(--gold);
}

.product-subtitle{
  font-size:1.1rem;
  line-height:1.4;
  margin-bottom:20px;
  color:#fff;
}

.product-subtitle strong{
  color: var(--gold);
}

.product-description{ 
  font-size:1rem;
  line-height:1.6;
  color:rgba(255,255,255,.88);
  margin-bottom:28px;
}
/* ─────────────────────────────
   BENEFITS
───────────────────────────── */

.benefits-row{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin-bottom:28px;
}

.benefit-item{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:16px 18px;
  text-align:center;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;

}

.benefit-icon{
  width:58px;
  height:58px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  margin-bottom:6px;
}

.benefit-item h4{
  font-size:1rem;
  line-height:1.3;
  margin-bottom:10px;
  color:#fff;
  max-width:170px;
}

.benefit-item p{
  font-size:.9rem;
  line-height:1.5;
  color:rgba(255,255,255,.78);
  max-width:180px;
}

/* ─────────────────────────────
   PARAGUAY BOX
───────────────────────────── */

.paraguay-box{
  border:1px solid rgba(247,181,0,.55);
  border-radius:14px;
  padding:18px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
}

.paraguay-left{
  display:flex;
  gap:14px;
  align-items:center;
}

.paraguay-icon{
  width:46px;
  height:46px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.35rem;
}

.paraguay-box h5{
  font-size:1rem;
  line-height:1.2;
  margin-bottom:4px;
  color:#fff;
}

.paraguay-box p{
  font-size:.88rem;
  line-height:1.45;
  color:rgba(255,255,255,.8);
}

.paraguay-box img{
  width:46px;
  height:auto;
}

/* ─────────────────────────────
   CTA
───────────────────────────── */

.quote-btn{
  background: var(--gold);
  color:#0d2e6b;
  border-radius:14px;
  padding:18px 22px;
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  width:fit-content;
  transition:.25s ease;
}

.quote-btn:hover{
  transform:translateY(-2px);
}

.quote-icon{
  font-size:1.7rem;
}

.quote-btn strong{
  display:block;
  font-size:1.05rem;
  line-height:1.2;
}

.quote-btn span{
  display:block;
  margin-top:3px;
  font-size:.9rem;
}

/* ─────────────────────────────
   IMAGE
───────────────────────────── */

.product-image{
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
}

.product-image img{
  width:100%;
  max-width:960px;
  object-fit:contain;
  transform:translateX(8px);
}

/* ─────────────────────────────
   MOBILE
───────────────────────────── */

@media(max-width:992px){

  .product-layout{
    grid-template-columns:1fr;
    gap:40px;
    padding:0 40px;
  }

  .product-image{
    justify-content:center;
    order:-1;
  }

  .benefits-row{
    grid-template-columns:repeat(2,1fr);
  }

  .product-image img{
    max-width:260px;
    transform:none;
  }
}

@media(max-width:768px){

  .product-content h2{
    font-size:calc(2.5rem + 2px);
  }

  .product-subtitle{
    font-size:calc(1rem + 2px);
  }

  .product-description{
    font-size:calc(.95rem + 2px);
  }

  .benefits-row{
    grid-template-columns:1fr;
  }

  .paraguay-box{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .quote-btn{
    width:100%;
  }
}
/* ─── COMPARATIVA ─────────────────────────────────────────── */
#comparativa {
  background: var(--navy);
}

#comparativa h2 {
  color: #fff;
}

#comparativa .label {
  color: var(--pool);
}

.table-scroll {
  overflow-x: auto;
}

.comp-table {
  margin-top: 48px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 14px;
}

/* HEADER */
.comp-table thead th {
  padding: 0 24px 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
}

.comp-table thead th:first-child {
  color: var(--pool);
}

.comp-table thead th:last-child {
  color: rgba(255,255,255,.7);
}

/* FILAS */
.comp-table tbody tr {
  transition: transform .2s ease;
}

.comp-table tbody tr:hover {
  transform: translateY(-2px);
}

/* hover azul */
.comp-table tbody tr:hover td {
  background: rgba(2,150,214,.16);
}

/* CELDAS */
.comp-table tbody td {
  background: rgba(255,255,255,.05);
  padding: 22px 24px;
  font-size: 1.2rem;
  line-height: 1.5;
  vertical-align: middle;
  transition: background .25s ease;
  color: rgba(255,255,255,.92);
}

/* pintura más suave */
.comp-table tbody td:last-child {
  color: rgba(255,255,255,.7);
}

/* bordes */
.comp-table tbody td:first-child {
  border-radius: 18px 0 0 18px;
}

.comp-table tbody td:last-child {
  border-radius: 0 18px 18px 0;
}

/* ─── ICONOS ───────────────────────── */
.icon-ok,
.icon-warning {
  width: 22px;
  height: 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  margin-right: 10px;

  font-size: .75rem;
  font-weight: 700;
  vertical-align: middle;

  background: rgba(255,222,89,.12);
  border: 1px solid rgba(255,222,89,.25);
  color:  var(--gold);
}

/* mobile */
@media (max-width: 768px) {
  .comp-table {
    min-width: 650px;
  }

  .comp-table tbody td {
    padding: 18px;
    font-size: calc(.92rem + 2px);
  }
}
 /* ─── MOBILE COMPARATIVA ───────────────────────── */
@media (max-width: 768px) {

  .table-scroll {
    overflow: visible;
  }

  .comp-table,
  .comp-table tbody,
  .comp-table tr,
  .comp-table td {
    display: block;
    width: 100%;
  }

  .comp-table thead {
    display: none;
  }

  /* IMPORTANTE: sacar scroll horizontal */
  .comp-table {
    margin-top: 24px;
    width: 100%;
    min-width: unset;
    border-spacing: 0;
  }

  /* grupo comparativo */
  .comp-table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 6px;              /* menos espacio entre par */
    margin-bottom: 16px;   /* menos espacio entre grupos */
    transform: none !important;
  }

  /* cards */
  .comp-table tbody td {
    border-radius: 18px !important;
    overflow: hidden;

    padding: 14px 16px; /* más compacto */
    font-size: calc(.92rem + 2px);
    line-height: 1.35;

    background: rgba(255,255,255,.06);
  }

  /* barra lateral */
  .comp-table tbody td:first-child {
    border-left: 4px solid #0296D6;
  }

  .comp-table tbody td:last-child {
    border-left: 4px solid  var(--gold);
    color: rgba(255,255,255,.75);
  }

  /* hover mobile */
  .comp-table tbody tr:hover td {
    background: rgba(255,255,255,.08);
  }

  /* iconos más chicos */
  .icon-ok,
  .icon-warning {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    font-size: calc(.65rem + 2px);
  }
}
/* ─── GALERÍA ─────────────────────────────────────────────── */
#galeria .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.gallery-grid .g-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1e6fa8, #7ecfed);
  position: relative;
  cursor: pointer;
}
.gallery-grid .g-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.g-item .g-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: .6;
}
.g-item .g-placeholder span:first-child { font-size: 2.5rem; }
.g-item .g-placeholder span:last-child {
  font-size: .8rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .05em;
}

/* ─── TESTIMONIO ─────────────────────────────────────────── */
#testimonios {
  background: var(--cream);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  position: relative;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--pool);
  line-height: .6;
  margin-bottom: 16px;
}
.testi-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--water), var(--pool));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.testi-author-info strong {
  display: block;
  font-size: .92rem;
  color: var(--navy);
}
.testi-author-info span {
  font-size: .8rem;
  color: var(--muted);
}
.stars { color: var(--gold); font-size: .9rem; margin-bottom: 14px; }

/* ─── FAQ ────────────────────────────────────────────────── */
#faq .faq-list {
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border-bottom: 1px solid var(--concrete);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
}
.faq-q .icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--concrete);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: transform .3s, background .3s;
  color: var(--water);
}
.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
  background: var(--water);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-a p {
  padding-bottom: 20px;
  font-size: .95rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 240px; }

/* ─── CTA FINAL ───────────────────────────────────────────── */
#cta-final {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 120%, rgba(78,168,216,.3) 0%, transparent 70%);
}
#cta-final .container { position: relative; z-index: 1; }
#cta-final h2 { color: #fff; max-width: 640px; margin: 0 auto 16px; }
#cta-final p  { color: rgba(255,255,255,.7); max-width: 500px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btns-hero { display: flex; gap: 16px; justify-content: left; flex-wrap: wrap; padding-top: 20px; }
/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #060f1e;
  color: rgba(255,255,255,.6);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  margin-bottom: 12px;
  width: 76px;
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer-claim {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.45);
}
footer h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li {
  font-size: .9rem;
  line-height: 2;
}
footer ul li a { transition: color .2s; }
footer ul li a:hover { color: var(--pool); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.4); }
.footer-links a:hover { color: var(--pool); }

/* ─── WHATSAPP FLOTANTE ───────────────────────────────────── */
#wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
#wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,.55);
}
#wa-btn svg { width: 22px; height: 22px; fill: #fff; }
.wa-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

/* ─── ANIMACIONES ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  #hero {
    min-height: auto;
    padding: 130px 0 92px;
  }
  .hero-bullets { max-width: 760px; }
  .hero-ctas { justify-content: center; }
  #que-es .inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-item:first-child { grid-column: span 2; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  #hero { padding: 118px 0 82px; }
  #hero h1 { font-size: 2.4rem; }
  .hero-logo { width: 82px; }
  .hero-bullets {
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    padding: 0;
  }
  .hero-bullets li {
    width: 100%;
    min-height: auto;
    padding: 16px 20px;
  }
  .hero-bullets li + li {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.34);
  }
  .comp-table thead th, .comp-table tbody td { padding: 14px 16px; font-size: calc(.88rem + 2px); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .g-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
  #wa-btn .wa-label { display: none; }
  #wa-btn { padding: 14px; border-radius: 50%; }
}

.color-carousel-wrapper{position:relative;margin-top:44px;display:flex;align-items:center;gap:12px}
.color-track{display:flex;gap:16px;overflow-x:auto;scroll-behavior:smooth;scrollbar-width:none;padding:12px 4px;flex:1}
.color-track::-webkit-scrollbar{display:none}
.color-card{flex-shrink:0;display:flex;flex-direction:column;align-items:center;gap:10px;cursor:pointer;transition:transform .25s}
.color-card:hover{transform:translateY(-6px)}
.color-swatch{width:110px;height:110px;border-radius:14px;border:3px solid rgba(0,0,0,.08);position:relative;overflow:hidden;box-shadow:0 4px 18px rgba(0,0,0,.15);transition:box-shadow .25s,border-color .25s}
.color-card:hover .color-swatch{border-color:var(--gold);box-shadow:0 8px 28px rgba(0,0,0,.25)}
.color-card span{font-size:1.1rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--navy);text-align:center;max-width:110px;line-height:1.3}
.color-arrow{flex-shrink:0;width:42px;height:42px;border-radius:50%;border:2px solid var(--concrete);background:var(--white);font-size:1.1rem;cursor:pointer;color:var(--navy);display:flex;align-items:center;justify-content:center;transition:background .2s,border-color .2s,color .2s;box-shadow:0 2px 10px rgba(0,0,0,.08)}
.color-arrow:hover{background:var(--navy);border-color:var(--navy);color:#fff}
@media(max-width:600px){.color-swatch{width:88px;height:88px}.color-card span{font-size:calc(.7rem + 2px);max-width:88px}.color-arrow{display:none}}
/* --- Estilos migrados desde atributos inline --- */
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light-soft { color: #fff; border-color: rgba(255,255,255,.35); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.pool-mockup .pool-mockup-note { font-size: .75rem; opacity: .7; }
.table-scroll { overflow-x: auto; margin-top: 0; }
.small-note { text-align: center; margin-top: 16px; font-size: .85rem; color: var(--muted); }
.small-note-spacious { margin-top: 20px; }
.color-intro { margin-top: 10px; max-width: 560px; }
.label-center { display: block; text-align: center; }
.text-center { text-align: center; }
.label-pool { color: var(--pool); }

.g-item.gallery-gradient-1 { background: linear-gradient(135deg,#1a4a7a,#4fa8d8); }
.g-item.gallery-gradient-2 { background: linear-gradient(135deg,#12345e,#1e6fa8); }
.g-item.gallery-gradient-3 { background: linear-gradient(135deg,#1e6fa8,#7ecfed); }
.g-item.gallery-gradient-4 { background: linear-gradient(135deg,#0b1f3a,#1a4a7a); }
.g-item.gallery-gradient-5 { background: linear-gradient(135deg,#4fa8d8,#a8e4f5); }

/* ─── AJUSTES AQUAPOOL MAYO 2026 ─────────────────────────── */
nav {
  background: var(--white);
  box-shadow: 0 3px 18px rgba(25,53,129,.12);
  backdrop-filter: none;
}
.nav-logo { width: 54px; }
nav .nav-cta {
  background: #25d366;
  color: var(--white);
}

.btn-primary {
  background: var(--water);
  color: var(--white);
}
a[href*="wa.me"].btn,
a[href*="wa.me"].nav-cta {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
}
.btn-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.75);
}
.btn-outline-light:hover,
.btn-outline-light-soft:hover {
  background: var(--white);
  color: var(--navy);
}

#hero {
  background:
    linear-gradient(rgba(25,53,129,.72), rgba(25,53,129,.72)),
    url("../images/02_02.png") center / cover no-repeat;
}
#hero::before { background: transparent; }
.hero-text .label {
  color: var(--white);
  text-transform: uppercase;
}
#hero h1 {
  text-shadow: none;
}
#hero h1 em {
  color: var(--gold);
}
.hero-bullets {
  background: transparent;
  box-shadow: none;
  border: 0;
  backdrop-filter: none;
}
.hero-bullets li {
  flex-direction: column;
  gap: 10px;
  font-size: 1.08rem;
  font-weight: 600;
}
.hero-bullets li::before {
  content: "✓";
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 800;
  line-height: 1;
}
.hero-wave path { fill: var(--navy); }

#carrusel {
  background: var(--navy);
  padding-top: 60px;
}
.products-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 auto 34px;
  text-align: center;
}
.slider-track {
  animation-duration: 34s;
}
.slider-track:hover { animation-play-state: running; }
.slide-card .price {
  color: var(--gold);
}

#beneficios .container > .label,
#beneficios .container > h2 {
  display: block;
  text-align: center;
}
#beneficios .label.reveal,
#colores .label.reveal,
#galeria .label.reveal {
  color: var(--water);
}
.benefit-card {
  text-align: center;
}
.benefit-card::after {
  background: var(--water);
}
.benefit-icon {
  width: auto;
  height: auto;
  margin: 0 auto 18px;
  background: transparent;
  color: var(--water);
  font-size: 2.15rem;
}
.benefit-card h3 {
  color: var(--navy);
}
.benefit-card p {
  max-width: 230px;
  margin: 0 auto;
}

#que-es {
  background: var(--navy);
}
#que-es h2,
#que-es p {
  color: var(--white);
}
#que-es .label {
  color: var(--gold);
}
#que-es .inner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
}
.que-es-visual {
  background: linear-gradient(135deg, var(--water), #63cbf3);
}
.que-es-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comp-table thead tr {
  background: var(--navy);
}
.comp-table thead th:first-child,
.comp-table thead th:last-child {
  color: var(--white);
}
.comp-table tbody tr:hover {
  background: var(--water);
}
.comp-table tbody tr:hover td {
  color: var(--white);
}
.comp-table tbody td:first-child {
  display: table-cell;
}
.comp-table tbody td:first-child::before,
.comp-table tbody td:last-child::before {
  content: none;
}

.gallery-grid .g-item {
  background: var(--navy);
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g-overlay {
  background: rgba(25,53,129,.68);
}
.g-overlay span {
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0,0,0,.82);
}
.lightbox[aria-hidden="false"] {
  display: flex;
}
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

#colores {
  background: var(--white);
}
.color-grid {
  margin-top: 44px;
}
.color-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px 16px;
  overflow: visible;
  padding: 0;
}
.color-card {
  min-width: 0;
}
.color-swatch {
  background-image: none;
}
.color-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.color-arrow {
  display: none;
}

#testimonios {
  background: var(--navy);
}
#testimonios .label {
  color: var(--gold);
}
#testimonios h2 {
  color: var(--white);
}
.stars {
  color: var(--gold);
}

#faq {
  background: var(--water);
}
#faq .label,
#faq h2 {
  color: var(--white);
}
#faq .faq-list {
  background: var(--white);
  border-radius: 16px;
  padding: 10px 28px;
  box-shadow: 0 12px 36px rgba(25,53,129,.18);
}

#wa-btn {
  width: 58px;
  height: 58px;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
}
#wa-btn .wa-pulse {
  position: absolute;
  right: 8px;
  top: 8px;
}

@media (max-width: 900px) {
  .hero-bullets {
    flex-direction: column;
    width: min(100%, 520px);
    padding: 0;
  }
  .hero-bullets li {
    min-height: auto;
    padding: 18px 22px;
  }
  .hero-bullets li + li {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.56);
  }
  #que-es .inner {
    grid-template-columns: 1fr;
  }
  .color-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .hero-bullets li {
    font-size: calc(1rem + 2px);
  }
  .color-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .color-card span {
    max-width: 100%;
  }
  .lightbox {
    padding: 18px;
  }
}

/* LEGALES  */

.legal-page{
  background:#f5f7fb;
  padding:0px 20px;
  font-family:Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}

.legal-container{
  max-width:1000px;
  margin:0 auto;
}

.legal-header{
  text-align:center;
  margin-bottom:70px;
}

.legal-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  background:#eaf1ff;
  color:#193581;
  font-size:14px;
  font-weight:700;
  margin-bottom:22px;
}

.legal-header h1{
  font-size:clamp(42px,5vw,68px);
  line-height:1.05;
  font-weight:800;
  color:#193581;
  margin:0 0 18px;
}

.legal-header p{
  max-width:760px;
  margin:0 auto;
  font-size:20px;
  line-height:1.8;
  color:#5f6978;
}

.legal-card{
  background:#fff;
  border-radius:36px;
  padding:60px;
  border:1px solid #e8edf5;
  box-shadow:0 20px 60px rgba(0,0,0,.06);
}

.legal-section{
  margin-bottom:52px;
}

.legal-section:last-child{
  margin-bottom:0;
}

.legal-section h2{
  font-size:34px;
  line-height:1.2;
  font-weight:800;
  color:#193581;
  margin:0 0 24px;
}

.legal-section h3{
  font-size:28px;
  line-height:1.2;
  font-weight:700;
  color:#193581;
  margin:0 0 18px;
}

.legal-section p{
  font-size:18px;
  line-height:1.95;
  color:#536173;
  margin:0 0 20px;
}

.legal-section strong{
  color:#193581;
  font-weight:700;
}

.legal-section ul{
  margin:16px 0 0 24px;
  padding:0;
}

.legal-section li{
  font-size:18px;
  line-height:1.9;
  color:#536173;
  margin-bottom:12px;
}

.legal-divider{
  width:100%;
  height:1px;
  background:#e8edf5;
  margin:80px 0;
}

.legal-policy-title{
  font-size:48px !important;
}

@media(max-width:768px){

  .legal-page{
    padding:60px 18px;
  }

  .legal-card{
    padding:32px 26px;
    border-radius:28px;
  }

  .legal-header{
    margin-bottom:42px;
  }

  .legal-header p{
    font-size:19px;
  }

  .legal-section h2{
    font-size:30px;
  }

  .legal-section h3{
    font-size:26px;
  }

  .legal-section p,
  .legal-section li{
    font-size:18px;
    line-height:1.8;
  }

  .legal-policy-title{
    font-size:38px !important;
  }
}

@media(max-width:768px){
  body{
    font-size:18px;
  }

  .header-right h3{
    font-size:22px;
  }

  .header-right p,
  .hero-description,
  .hero-benefit-text{
    font-size:18px;
  }

  .header-right p{
    line-height:1.25;
  }

  .hero-badge{
    font-size:17px;
  }

  .btn{
    font-size:calc(.95rem + 2px);
  }

  .label{
    font-size:calc(.72rem + 2px);
  }

  h2,
  .products-title{
    font-size:calc(clamp(2rem, 4vw, 2.8rem) + 2px);
  }

  h3{
    font-size:calc(1.4rem + 2px);
  }

  .slide-card p,
  .price small,
  .testi-card p,
  .faq-q{
    font-size:calc(1rem + 2px);
  }

  #carrusel .bajada{
    font-size:calc(1.2rem + 2px);
  }

  .recommended,
  .faq-a p{
    font-size:calc(.95rem + 2px);
  }

  #wa-btn{
    font-size:calc(.92rem + 2px);
  }

  .tag{
    font-size:calc(.78rem + 2px);
  }

  .product-list li{
    font-size:18px;
  }

  .benefit-card p{
    font-size:calc(.92rem + 2px);
  }

  .footer-claim{
    font-size:calc(.88rem + 2px);
  }

  .product-description{
    font-size:calc(.95rem + 2px);
  }

  .stars{
    font-size:calc(.9rem + 2px);
  }

  .product-label,
  .small-note{
    font-size:calc(.85rem + 2px);
  }

  .desde{
    font-size:calc(.84rem + 2px);
  }

  .footer-bottom{
    font-size:calc(.82rem + 2px);
  }

  .g-overlay span{
    font-size:calc(1.1rem + 2px);
  }

  .benefit-card h3{
    font-size:calc(1.12rem + 2px);
  }

  .faq-q .icon{
    font-size:calc(1.1rem + 2px);
  }

  .benefit-item h4,
  .paraguay-box h5,
  .testi-avatar{
    font-size:calc(1rem + 2px);
  }

  .benefit-item p,
  .quote-btn span,
  footer ul li{
    font-size:calc(.9rem + 2px);
  }

  .paraguay-box p{
    font-size:calc(.88rem + 2px);
  }

  .testi-author-info strong{
    font-size:calc(.92rem + 2px);
  }

  .testi-author-info span{
    font-size:calc(.8rem + 2px);
  }

  footer h4{
    font-size:calc(.72rem + 2px);
  }
}
