/*

Theme Name: THEME KAYARA PADDLE
Author: PHPPERU
Author URI: https://phpperu.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

*/


/* ====== ROOT BRAND ====== */
:root{
  --kayara-blue: #0D3B66;   /* Azul profundo */
  --kayara-teal: #007EA7;   /* Turquesa */
  --kayara-sand: #C69C3B;   /* Dorado arena */
  --kayara-beige:#F2E7D7;   /* Beige claro */

  --text: #0B1B2B;
  --muted: rgba(11,27,43,.65);

  --border: rgba(13,59,102,.18);
  --card: #ffffff;

  --radius-xl: 18px;
}

/* ====== BASE ====== */
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; /* luego ponemos Elaine Sans */
  color: var(--text);
}

.bg-soft{ background: rgba(242,231,215,.35); } /* beige suave */

.fw-800{ font-weight: 800; }

/* ====== NAVBAR ====== */
.kayara-nav{
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar .nav-link{
  font-weight: 600;
  color: var(--text);
}
.navbar .nav-link:hover{ color: var(--kayara-teal); }

/* ====== BUTTONS ====== */
.btn-kayara{
  background: var(--kayara-blue);
  border: 1px solid var(--kayara-blue);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: .75rem 1.25rem;
}
.btn-kayara:hover{
  background: #0b3359;
  border-color: #0b3359;
  color:#fff;
}

.btn-outline-kayara{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  color: var(--text);
  font-weight: 800;
  border-radius: 999px;
  padding: .75rem 1.25rem;
}
.btn-outline-kayara:hover{
  border-color: var(--kayara-teal);
  color: var(--kayara-teal);
}

/* ====== HERO ====== */
.kayara-hero{
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 64px 0 42px;
  overflow: hidden;
}
.kayara-hero{
  padding-top: 100px;
  padding-bottom: 80px;
}

/* .kayara-hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.80) 0%, rgba(255,255,255,.90) 55%, rgba(255,255,255,1) 100%),
    url("images/hero.jpg") center/cover no-repeat;
  filter: saturate(.95);
} */

/* .kayara-hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      180deg,
      rgba(13,59,102,.25) 0%,
      rgba(13,59,102,.15) 50%,
      rgba(255,255,255,.85) 100%
    ),
    url("images/hero.jpg") center/cover no-repeat;
}  */

.kayara-hero__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(13,59,102,.25) 0%,
      rgba(13,59,102,.15) 50%,
      rgba(255,255,255,.85) 100%
    );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.kayara-hero__tag{
  display:inline-block;
  padding:.35rem .75rem;
  border-radius:999px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  font-weight: 800;
  font-size: .9rem;
}

.kayara-h1{
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

.kayara-lead{
  font-size: 1.1rem;
  color: var(--muted);
}

/* Chips */
.kayara-chips .chip{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  padding: .45rem .75rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: .92rem;
}

/* Anchor buttons */
.kayara-anchors .anchor-btn{
  text-decoration:none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  padding: .55rem .85rem;
  border-radius: 12px;
  font-weight: 800;
  color: var(--text);
}
.kayara-anchors .anchor-btn:hover{
  border-color: var(--kayara-teal);
  color: var(--kayara-teal);
}

/* Wave (opcional) */
.kayara-wave{
  position:absolute;
  left:0; right:0; bottom:-2px;
  height: 90px;
  background: linear-gradient(90deg, rgba(13,59,102,.10), rgba(0,126,167,.10));
  clip-path: path("M0,60 C120,90 240,30 360,60 C480,90 600,30 720,60 C840,90 960,30 1080,60 C1200,90 1320,30 1440,60 L1440,100 L0,100 Z");
  opacity: .35;
}
@media (max-width: 768px){
  .kayara-wave{ height: 60px; }
}


/* ===== HERO WAVE (patrón manual) ===== */
.kayara-hero{
  position: relative;
  overflow: hidden; /* importante */
}

/* la ola siempre full ancho y centrada */
.kayara-hero__wave{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100vw;          /* clave: ocupa toda la pantalla */
  height: 90px;          /* ajusta la altura visible */
  z-index: 3;
  pointer-events: none;
}

/* el svg se estira sin recortarse */
.kayara-hero__wave svg{
  width: 100%;
  height: 100%;
  display: block;
}

/* color del manual (azul profundo) */
.kayara-hero__wave path{
  fill: var(--kayara-blue); /* #0D3B66 */
  opacity: 1;             /* sutil (sube a .35 si quieres más visible) */
}



/* HERO: efecto movimiento (Ken Burns) */
.kayara-hero__bg{
  transform: scale(1);
  animation: heroKenBurns 16s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroKenBurns{
  0%   { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(-1%); }
}

/* Para gente con "reducir movimiento" activado */
@media (prefers-reduced-motion: reduce){
  .kayara-hero__bg{ animation: none; }
}

/* ====== STATS ====== */
.kayara-stats{
  padding: 22px 0 36px;
  background: var(--kayara-blue);
}

.kayara-stats__card{
  background: rgba(255,255,255,.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 40px rgba(13,59,102,.08);
  overflow: hidden;
  position: relative;
}

/* ondas decorativas suaves (opcional) */
.kayara-stats__card::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height: 64px;
  opacity: .25;
  background:
    radial-gradient(80% 80% at 30% 100%, rgba(0,126,167,.25) 0%, rgba(0,126,167,0) 55%),
    radial-gradient(80% 80% at 70% 100%, rgba(198,156,59,.18) 0%, rgba(198,156,59,0) 60%);
  pointer-events:none;
}

.kayara-stat{
  padding: 20px 14px 18px;
  text-align: center;
  position: relative;
}

.kayara-stat--divider{
  border-left: 1px solid rgba(13,59,102,.14);
}

.kayara-stat__icon{
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0,126,167,.08);
  color: var(--kayara-blue);
  font-size: 18px;
}

.kayara-stat__num{
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--kayara-blue);
  line-height: 1.05;
}

.kayara-stat__title{
  font-weight: 850;
  margin-top: 2px;
}

.kayara-stat__sub{
  color: var(--muted);
  font-size: .92rem;
  margin-top: 2px;
}

.kayara-stars{
  letter-spacing: .12em;
  color: rgba(13,59,102,.55);
}

.kayara-stat__line{
  width: 34px;
  height: 3px;
  border-radius: 999px;
  margin: 10px auto 0;
  background: var(--kayara-teal);
  opacity: .85;
}

/* Mobile: que no se vea raro el divider cuando baja a 2 columnas */
@media (max-width: 991.98px){
  .kayara-stat--divider{ border-left: none; }
  .kayara-stat{
    border-top: 1px solid rgba(13,59,102,.12);
  }
  .row > div:nth-child(1) .kayara-stat,
  .row > div:nth-child(2) .kayara-stat{
    border-top: none;
  }
}

.kayara-fa-stack{
  font-size: 18px;          /* tamaño del conjunto */
  position: relative;
}

.kayara-fa-stack .fa-water{
  opacity: .55;
  transform: translateY(4px); /* baja el agua un poco */
}

.kayara-fa-stack .fa-person-walking{
  transform: translateY(-2px); /* sube la persona un poco */
}

/* ====== EXPERIENCE SECTION ====== */
.kayara-experience{
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(0,126,167,.05) 0%,
      rgba(255,255,255,1) 40%,
      rgba(242,231,215,.25) 100%
    );
}

/* patrón muy sutil opcional */
.kayara-experience::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(circle at 20% 30%, rgba(0,126,167,.06), transparent 60%);
  pointer-events:none;
}

.kayara-section-tag{
  display:inline-block;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--kayara-teal);
  margin-bottom: 14px;
}

.kayara-section-title{
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 18px;
}

.kayara-section-text{
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
}

/* Imagen */
.kayara-experience__image-wrapper{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(13,59,102,.15);
}

.kayara-experience__image-wrapper img{
  transition: transform .8s ease;
}

.kayara-experience__image-wrapper:hover img{
  transform: scale(1.05);
}

/* Badges */
.kayara-experience__badges{
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.kayara-experience__badges span{
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kayara-experience__badges i{
  color: var(--kayara-teal);
}

/* ====== STEPS / HOW IT WORKS ====== */
.kayara-steps{
  padding: 90px 0;
  background: linear-gradient(180deg, rgba(0,126,167,.06) 0%, #fff 55%, rgba(242,231,215,.22) 100%);
}

.kayara-steps__head{
  margin-bottom: 34px;
}

.kayara-section-sub{
  color: var(--muted);
  margin: 0;
}

.kayara-step{
  height: 100%;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(13,59,102,.08);
}

.kayara-step__icon{
  width: 84px;
  height: 84px;
  margin: 0 auto 14px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0,126,167,.08);
  border: 1px solid rgba(13,59,102,.12);
  color: var(--kayara-blue);
  font-size: 30px;
}

.kayara-step__title{
  font-weight: 900;
  font-size: 1.15rem;
  margin: 6px 0 6px;
  color: var(--text);
}

.kayara-step__text{
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  font-size: .98rem;
}

/* Flechas entre pasos */
.kayara-step__arrow{
  align-items: center;
  justify-content: center;
  color: rgba(13,59,102,.35);
  font-size: 22px;
}

/* ====== EXPERIENCIAS ====== */
.kayara-exps{
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0D3B66 0%, #0B2F52 100%);
  color: #fff;
}

/* ondas sutiles */
.kayara-exps::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(50% 50% at 20% 20%, rgba(0,126,167,.22), transparent 60%),
    radial-gradient(45% 45% at 80% 35%, rgba(198,156,59,.18), transparent 62%),
    radial-gradient(55% 55% at 55% 90%, rgba(242,231,215,.10), transparent 60%);
  filter: blur(2px);
  pointer-events:none;
}

.kayara-exps__head{
  position: relative;
  margin-bottom: 34px;
}

.kayara-exps__title{
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.kayara-exps__sub{
  color: rgba(255,255,255,.75);
  max-width: 680px;
  margin: 0 auto;
}

/* Cards */
.kayara-exp-card{
  position: relative;
  height: 100%;
  background: rgba(255,255,255,.96);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
  padding: 20px 18px;
  box-shadow: 0 18px 46px rgba(0,0,0,.25);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.kayara-exp-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0,0,0,.30);
}

.kayara-exp-card__icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(0,126,167,.10);
  color: var(--kayara-blue);
  font-size: 22px;
  margin-bottom: 12px;
}

.kayara-exp-card__name{
  font-weight: 950;
  font-size: 1.15rem;
  margin: 0 0 10px;
}

/* Chips */
.kayara-exp-card__chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.kchip{
  font-size: .82rem;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13,59,102,.10);
  border: 1px solid rgba(13,59,102,.12);
  color: var(--kayara-blue);
}

.kchip--soft{
  background: rgba(0,126,167,.10);
  border-color: rgba(0,126,167,.14);
  color: #0B3B4D;
}

.kayara-exp-card__meta{
  font-weight: 900;
  margin: 10px 0 8px;
  color: rgba(11,27,43,.85);
}

.kayara-exp-card__list{
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
}

.kayara-exp-card__list li{
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(11,27,43,.78);
}

.kayara-exp-card__list i{
  color: var(--kayara-teal);
}

/* Featured */
.kayara-exp-card--featured{
  border: 2px solid rgba(0,126,167,.55);
  box-shadow: 0 26px 70px rgba(0,126,167,.18), 0 22px 56px rgba(0,0,0,.28);
}

.kayara-exp-card__badge{
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .78rem;
  background: rgba(198,156,59,.20);
  border: 1px solid rgba(198,156,59,.35);
  color: #6b4b00;
}

/* Ajuste botón outline para fondo oscuro (solo dentro de esta sección) */
.kayara-exps .btn-outline-kayara{
  background: rgba(255,255,255,.88);
}

.kayara-exp-card__icon{
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kayara-exp-card__icon img{
  width: 56px;     /* tamaño visible real */
  height: auto;
  object-fit: contain;
  display: block;
}
/* ====== PRICING ====== */
.kayara-pricing{
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(242,231,215,.55) 0%, #fff 55%, rgba(0,126,167,.06) 100%);
  position: relative;
}

.kayara-pricing__head{
  margin-bottom: 22px;
}

.kayara-pricing__title{
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.kayara-pricing__sub{
  color: var(--muted);
  margin: 0;
}

/* Card */
.kayara-pricing__card{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(13,59,102,.10);
  overflow: hidden;
}

/* Table style */
.kayara-table{
  margin: 0;
}

.kayara-table thead th{
  background: rgba(13,59,102,.04);
  color: rgba(11,27,43,.85);
  font-weight: 900;
  border-bottom: 1px solid rgba(13,59,102,.12);
  padding: 14px 14px;
  font-size: .95rem;
}

.kayara-table tbody td{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(13,59,102,.10);
  color: rgba(11,27,43,.80);
}

.kayara-plan__name{
  font-weight: 950;
  color: var(--text);
}

.kayara-plan__note{
  font-size: .85rem;
  color: var(--muted);
  margin-top: 2px;
}

.kayara-includes{
  line-height: 1.55;
}

/* Highlight row */
.kayara-row-highlight{
  background: rgba(0,126,167,.06);
}

/* Price buttons */
.kayara-price-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(13,59,102,.16);
  background: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 900;
  color: var(--kayara-blue);
}

.kayara-price-btn:hover{
  border-color: rgba(0,126,167,.35);
  color: var(--kayara-teal);
}

.kayara-price-btn--primary{
  background: var(--kayara-blue);
  border-color: var(--kayara-blue);
  color: #fff;
}

.kayara-price-btn--primary:hover{
  color: #fff;
  background: #0b3359;
  border-color: #0b3359;
}

/* Actions */
.kayara-pricing__actions{
  padding: 22px 18px 26px;
}

.kayara-pricing__help{
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
}

.kayara-pricing__help a{
  color: var(--kayara-teal);
  text-decoration: none;
  font-weight: 900;
}

.kayara-pricing__help a:hover{
  text-decoration: underline;
}

/* ====== SHORTS ====== */
.kayara-shorts{
  padding: 96px 0 70px;
  background: linear-gradient(180deg, rgba(0,126,167,.06) 0%, #fff 55%, rgba(242,231,215,.25) 100%);
}

.kayara-shorts__title{
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 950;
  letter-spacing: -0.02em;
}
.kayara-shorts__sub{
  color: var(--muted);
  max-width: 680px;
}

.kayara-shorts__nav .kayara-shorts__btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.85);
  font-weight: 900;
  font-size: 20px;
  color: var(--kayara-blue);
}
.kayara-shorts__nav .kayara-shorts__btn:hover{
  border-color: rgba(0,126,167,.35);
  color: var(--kayara-teal);
}

/* Rail scroll-snap (móvil friendly) */
.kayara-shorts__rail{
  display: grid;
  grid-auto-columns: 25%; /* 4 visibles exactos */
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 22vw, 320px);
  gap: 18px;

  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding: 24px;

  padding: 26px 24px 18px;
  margin-top: 18px;
}

.kayara-shorts__rail::-webkit-scrollbar{ height: 10px; }
.kayara-shorts__rail::-webkit-scrollbar-thumb{
  background: rgba(13,59,102,.18);
  border-radius: 999px;
}

/* Card */
.kayara-short{
  scroll-snap-align: start;
  border: 0;
  padding: 0;
  text-align: left;
  background: transparent;
  position: relative;

  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9 / 16;  /* formato short */
  box-shadow: 0 26px 70px rgba(13,59,102,.15);
  outline: 1px solid rgba(13,59,102,.10);
  cursor: pointer;
}

.kayara-short__thumb{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.kayara-short:hover .kayara-short__thumb{ transform: scale(1.06); }

.kayara-short__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.10) 55%, rgba(0,0,0,.45) 100%);
  display:flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  gap: 10px;
}

.kayara-short__play{
  position:absolute;
  top: 12px;
  left: 12px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(255,255,255,.55);
  font-weight: 900;
  color: var(--kayara-blue);
}

.kayara-short__meta{
  display:inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.55);
  font-weight: 900;
  color: rgba(11,27,43,.88);
  font-size: .9rem;
}

.kayara-shorts__hint{
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
  font-size: .95rem;
}

/* Móvil: cards más grandes para “full experience” */
@media (max-width: 576px){
  .kayara-shorts__rail{
    grid-auto-columns: 78vw; /* casi full ancho */
    padding-left: 16px;
    padding-right: 16px;
    gap: 14px;
  }
}

/* ====== MODAL VIDEO ====== */
.kayara-modal-dialog{
  max-width: min(1100px, 92vw);
}

.kayara-modal{
  background: #0b1220;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.kayara-modal__close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  z-index: 5;
}

.kayara-modal__body{
  padding: 14px;
}

.kayara-video-wrap{
  width: 100%;
  aspect-ratio: 9 / 16; /* Shorts vertical */
  max-height: 82vh;
}

.kayara-iframe,
.kayara-video{
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 14px;
  background: #000;
  display: block;
}

/* En desktop grande, permite un poco más de ancho sin perder vertical */
@media (min-width: 992px){
  .kayara-video-wrap{
    max-width: 520px;  /* estilo "short player" centrado */
    margin: 0 auto;
  }
}

@media (min-width: 1200px){
  .kayara-shorts__rail{ grid-auto-columns: min(25%, 320px); }
}

/* ====== LOCATION ====== */
.kayara-location{
  padding: 96px 0;
  background: #fff;
}

.kayara-location__head{
  margin-bottom: 26px;
}

.kayara-location__title{
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.kayara-location__sub{
  color: var(--muted);
  margin: 0;
}

/* MAP CARD */
.kayara-location__mapcard{
  height: 100%;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(13,59,102,.10);
  overflow: hidden;
}

.kayara-location__maphead{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(13,59,102,.10);
  background: rgba(242,231,215,.35);
}

.kayara-location__label{
  font-weight: 950;
  letter-spacing: .10em;
  font-size: .78rem;
  color: rgba(13,59,102,.75);
}

.kayara-location__hint{
  color: var(--muted);
  font-weight: 650;
  font-size: .92rem;
}

/* Map iframe ratio */
.kayara-map{
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e9eef2;
}

.kayara-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display:block;
}

.kayara-location__actions{
  padding: 14px 16px 18px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* INFO CARD */
.kayara-location__infocard{
  height: 100%;
  background: linear-gradient(180deg, rgba(0,126,167,.06) 0%, rgba(255,255,255,.94) 55%, rgba(242,231,215,.35) 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(13,59,102,.10);
  padding: 18px;
}

/* List */
.kayara-location__list{
  list-style:none;
  padding: 0;
  margin: 0 0 14px;
  display:grid;
  gap: 14px;
}

.kayara-location__list li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.kayara-li__icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(13,59,102,.12);
  color: var(--kayara-blue);
}

.kayara-li__title{
  font-weight: 950;
  margin-bottom: 2px;
}

.kayara-li__text{
  color: var(--muted);
  line-height: 1.5;
}

/* Drive block */
.kayara-drive{
  margin-top: 10px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(13,59,102,.12);
  border-radius: 18px;
  padding: 14px;
}

.kayara-drive__head{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}

.kayara-drive__icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(0,126,167,.10);
  border: 1px solid rgba(0,126,167,.14);
  color: var(--kayara-blue);
  font-size: 18px;
}

.kayara-drive__title{
  font-weight: 950;
  line-height: 1.2;
}

.kayara-drive__sub{
  color: var(--muted);
  font-weight: 650;
  font-size: .92rem;
}

.kayara-drive__points{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 8px;
}

.kayara-drive__pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(242,231,215,.45);
  border: 1px solid rgba(13,59,102,.10);
  font-weight: 800;
  font-size: .88rem;
  color: rgba(11,27,43,.85);
}

.kayara-drive__pill i{
  color: var(--kayara-teal);
}

.kayara-drive__link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-weight: 950;
  text-decoration: none;
  color: var(--kayara-blue);
}

.kayara-drive__link:hover{
  color: var(--kayara-teal);
  text-decoration: underline;
}

/* Mobile tweak */
@media (max-width: 576px){
  .kayara-location__actions .btn{
    width: 100%;
  }
  .kayara-map{
    aspect-ratio: 4 / 3;
  }
}

/* ====== FOOTER ====== */
.kayara-footer{
  position: relative;
  background: #fff;
  border-top: 1px solid rgba(13,59,102,.10);
  overflow: hidden;
}

.kayara-footer__container{
  max-width: 1440px;
}

/* Top brand */
.kayara-footer__top{
  padding: 26px 0 10px;
  display: flex;
  justify-content: center;
}

.kayara-footer__brand img{
  display: block;
}

/* Grid */
.kayara-footer__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(13,59,102,.08);
  border-bottom: 1px solid rgba(13,59,102,.08);
}

.kayara-footer__title{
  font-weight: 950;
  margin: 0 0 10px;
  color: var(--kayara-blue);
}

.kayara-footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.kayara-footer__links a{
  text-decoration: none;
  color: rgba(11,27,43,.75);
  font-weight: 650;
}

.kayara-footer__links a:hover{
  color: var(--kayara-teal);
  text-decoration: underline;
}

/* Social */
.kayara-footer__social{
  display: flex;
  gap: 10px;
  margin: 6px 0 12px;
}

.kayara-footer__social a{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13,59,102,.14);
  background: rgba(255,255,255,.85);
  color: var(--kayara-blue);
  text-decoration: none;
}

.kayara-footer__social a:hover{
  border-color: rgba(0,126,167,.40);
  color: var(--kayara-teal);
}

/* Contact */
.kayara-footer__contact{
  display: grid;
  gap: 8px;
}

.kayara-footer__contact a{
  text-decoration: none;
  color: rgba(11,27,43,.78);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.kayara-footer__contact a i{
  color: var(--kayara-teal);
}

/* Bottom */
.kayara-footer__bottom{
  padding: 16px 0 70px; /* deja espacio para ola */
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(11,27,43,.68);
  font-weight: 650;
}

.kayara-footer__legal{
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.kayara-footer__legal a{
  text-decoration: none;
  color: rgba(11,27,43,.72);
  font-weight: 800;
}

.kayara-footer__legal a:hover{
  color: var(--kayara-teal);
  text-decoration: underline;
}

/* ===== FOOTER WAVE ===== */
.kayara-footer{
  position: relative;
  overflow: hidden;
  padding-bottom: 80px; /* espacio para la onda */
}

/* Full width real */
.kayara-footer__wave{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100vw;   /* clave */
  height: 90px;
  pointer-events: none;
  z-index: 1;
}

.kayara-footer__wave svg{
  width: 100%;
  height: 100%;
  display: block;
}

.kayara-footer__wave path{
  fill: var(--kayara-blue); /* azul profundo del manual */
  opacity: 1; /* sutil elegante */
}

/* Responsive */
@media (max-width: 991.98px){
  .kayara-footer__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px){
  .kayara-footer__grid{
    grid-template-columns: 1fr;
  }
  .kayara-footer__bottom{
    padding-bottom: 86px;
  }
}


/* ===== WHATSAPP FLOAT ===== */
.kayara-whatsapp{
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

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

  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 800;

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

  transition: all .3s ease;
  overflow: hidden;
}



.kayara-whatsapp__text{
  white-space: nowrap;
  transition: opacity .3s ease, transform .3s ease;
}




.kayara-whatsapp:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}

/* Icon */
.kayara-whatsapp__icon{
  font-size: 20px;
  display: flex;
  align-items: center;
}

/* Pulso */
/* ===== WHATSAPP PULSE FIX ===== */
.kayara-whatsapp{
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  overflow: visible; /* importante para que el pulso no se corte */
}

/* Pulso suave externo */
.kayara-whatsapp::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25D366;
  z-index: -1;
  animation: kayaraPulse 2s infinite;
}

@keyframes kayaraPulse{
  0%{
    transform: scale(1);
    opacity: .5;
  }
  70%{
    transform: scale(1.8);
    opacity: 0;
  }
  100%{
    opacity: 0;
  }
}




/* =========================================================
   BASE
========================================================= */
.kayara-entry{
  background:
    linear-gradient(180deg, rgba(242,231,215,.6) 0%, #fff 260px);
  color: var(--text);
  padding-bottom: 72px;
}

.kayara-entry__container{
  width: min(100% - 32px, 1000px);
  margin: 0 auto;
}

/* =========================================================
   HERO
========================================================= */
.kayara-entry__hero{
  padding: 48px 0 28px;
  text-align: center;
}

.kayara-entry__eyebrow{
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0,126,167,.12);
  color: var(--kayara-teal);
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 16px;
}

.kayara-entry__title{
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--kayara-blue);
  line-height: 1.1;
  margin-bottom: 14px;
}

.kayara-entry__excerpt{
  max-width: 680px;
  margin: 0 auto 16px;
  color: var(--muted);
  line-height: 1.7;
}

.kayara-entry__meta{
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.kayara-entry__meta-dot{
  margin: 0 8px;
}

/* =========================================================
   FEATURED IMAGE
========================================================= */
.kayara-entry__featured{
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(13,59,102,.12);
}

.kayara-entry__featured img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* =========================================================
   CONTENT CARD
========================================================= */
.kayara-entry__body{
  margin-top: 34px;
}

.kayara-entry__content{
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(13,59,102,.06);
}

/* =========================================================
   TYPOGRAPHY
========================================================= */
.kayara-entry__content p{
  line-height: 1.85;
  margin-bottom: 1.4em;
}

.kayara-entry__content h2{
  margin: 2em 0 .6em;
  font-size: 1.8rem;
  color: var(--kayara-blue);
}

.kayara-entry__content h3{
  margin: 1.6em 0 .5em;
  color: var(--kayara-blue);
}

.kayara-entry__content strong{
  color: var(--kayara-blue);
}

.kayara-entry__content a{
  color: var(--kayara-teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,126,167,.3);
}

.kayara-entry__content a:hover{
  color: var(--kayara-blue);
}

/* =========================================================
   IMAGES (AUTO ESTILO WORDPRESS)
========================================================= */
.kayara-entry__content img{
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(13,59,102,.08);
}

.kayara-entry__content figure{
  margin: 1.8em 0;
}

.kayara-entry__content figcaption{
  text-align: center;
  font-size: .9rem;
  color: var(--muted);
  margin-top: 8px;
}

/* =========================================================
   GALLERY (WORDPRESS NATIVE)
========================================================= */
.kayara-entry__content .wp-block-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 2em 0;
}

.kayara-entry__content .wp-block-gallery img{
  border-radius: 16px;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   VIDEO EMBED (YOUTUBE RESPONSIVE)
========================================================= */
.kayara-entry__content .wp-block-embed__wrapper{
  position: relative;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(13,59,102,.12);
}

.kayara-entry__content iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   LISTS
========================================================= */
.kayara-entry__content ul{
  margin-left: 1.2em;
}

.kayara-entry__content li{
  margin-bottom: .6em;
}

/* =========================================================
   BLOCKQUOTE
========================================================= */
.kayara-entry__content blockquote{
  margin: 2em 0;
  padding: 20px;
  background: rgba(198,156,59,.12);
  border-left: 4px solid var(--kayara-sand);
  border-radius: 16px;
  color: var(--kayara-blue);
}

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

  .kayara-entry__hero{
    padding: 32px 0 20px;
  }

  .kayara-entry__content{
    padding: 22px 16px;
  }

  .kayara-entry__title{
    font-size: 2rem;
  }

  .kayara-entry__content .wp-block-gallery{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px){

  .kayara-entry__container{
    width: calc(100% - 20px);
  }

  .kayara-entry__content .wp-block-gallery{
    grid-template-columns: 1fr;
  }
}