/* ═══════════════════════════════════════
   SOLARIS — CSS GLOBAL
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── Variables ── */
:root {
  --agua:      #0AAFCC;
  --agua-d:    #0891B2;
  --agua-l:    #E0F7FA;
  --agua-p:    #F0FBFD;
  --turq:      #06B6D4;
  --cielo:     #BAE6F5;
  --blanco:    #FFFFFF;
  --gris-bg:   #F7FAFB;
  --gris-brd:  #E4EEF2;
  --gris-md:   #94A8B4;
  --gris-dk:   #5C7A8A;
  --oscuro:    #0D2535;
  --medio:     #1E3D50;
  --arena:     #E5A63E;
  --arena-l:   #FDF3E0;
  --r:  16px;
  --rl: 24px;
  --sh:    0 4px 24px rgba(10,175,204,.10);
  --sh-md: 0 8px 40px rgba(10,175,204,.16);
  --sh-lg: 0 16px 60px rgba(10,175,204,.22);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--blanco);
  color: var(--gris-dk);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--agua-p); }
::-webkit-scrollbar-thumb { background: var(--agua); border-radius: 3px; }

/* ── Animaciones reveal ── */
.rv, .rv-l, .rv-r {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
}
.rv   { transform: translateY(26px); }
.rv-l { transform: translateX(-34px); }
.rv-r { transform: translateX(34px); }
.rv.on, .rv-l.on, .rv-r.on { opacity: 1; transform: none; }

/* ── Tipografía ── */
h1 { font-size: clamp(2.1rem,4.5vw,3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; color: var(--oscuro); }
h2 { font-size: clamp(1.65rem,3vw,2.6rem);  font-weight: 700; line-height: 1.18; letter-spacing: -.02em; color: var(--oscuro); }
h3 { font-size: clamp(1.05rem,1.8vw,1.35rem); font-weight: 700; color: var(--oscuro); }
p  { line-height: 1.75; color: var(--gris-dk); }

/* ── Botones ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: .93rem;
  border-radius: 50px; padding: 13px 26px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .25s; white-space: nowrap;
}
.btn-primary  { background: var(--agua);  color: #fff; box-shadow: 0 4px 18px rgba(10,175,204,.35); }
.btn-primary:hover  { background: var(--agua-d); box-shadow: 0 8px 28px rgba(10,175,204,.45); transform: translateY(-2px); }
.btn-arena    { background: var(--arena); color: #fff; box-shadow: 0 4px 18px rgba(229,166,62,.35); }
.btn-arena:hover    { background: #cc8f2a; box-shadow: 0 8px 28px rgba(229,166,62,.45); transform: translateY(-2px); }
.btn-outline  { background: transparent; color: var(--agua-d); border: 2px solid var(--agua-d); }
.btn-outline:hover  { background: var(--agua-d); color: #fff; transform: translateY(-2px); }
.btn-ghost    { background: rgba(255,255,255,.14); color: #fff; border: 2px solid rgba(255,255,255,.38); backdrop-filter: blur(8px); }
.btn-ghost:hover    { background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: .83rem; }
.btn-lg { padding: 15px 34px; font-size: 1rem; }

/* ── Chips ── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 50px; margin-bottom: .9rem;
}
.chip-b { background: var(--agua-l); color: var(--agua-d); }
.chip-w { background: rgba(255,255,255,.16); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.28); }
.chip-a { background: var(--arena-l); color: #b07822; }

/* ── Layout ── */
.wrap { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.sec  { padding: 86px 0; }
.sec-hd { text-align: center; margin-bottom: 3.5rem; }
.sec-hd h2 { margin-bottom: .7rem; }
.sec-hd p  { max-width: 600px; margin: 0 auto; font-size: 1rem; }

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0 24px;
  transition: background .35s, box-shadow .35s;
  overflow: visible;
}
#hdr.sc {
  background: rgba(8,145,178,.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 20px rgba(0,0,0,.18);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo-t { font-size: 1.55rem; font-weight: 800; color: #fff; letter-spacing: -.03em; text-decoration: none; }
.logo-t span { color: var(--arena); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,.82); font-size: .87rem; font-weight: 500; text-decoration: none; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

/* Catálogo destacado en nav */
.nav-links .nav-catalogo a {
  color: var(--arena) !important;
  font-weight: 600;
}
.nav-links .nav-catalogo a:hover {
  color: #fff !important;
}

/* Dropdown menú */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  padding-top: 10px; /* espacio visual, cubierto por el puente */
  list-style: none;
  z-index: 9999;
  white-space: nowrap;
}
/* Puente invisible que evita que el hover se pierda al mover el ratón */
.nav-dropdown-menu::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 10px;
}
.nav-dropdown-menu-inner {
  background: #065869;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: .5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.nav-dropdown-menu li a {
  display: block;
  padding: .7rem 1.1rem;
  border-radius: 9px;
  color: rgba(255,255,255,.85) !important;
  font-size: .86rem !important;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,.12);
  color: #fff !important;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
  animation: fadeDropdown .18s ease;
}
@keyframes fadeDropdown {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Menú mobile */
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 899;
  background: rgba(8,145,178,.98); backdrop-filter: blur(18px);
  padding: 1.5rem 24px; flex-direction: column; gap: .5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,.85); font-size: 1rem; font-weight: 500; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.08); text-decoration: none; transition: color .2s; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #fff; }

/* ═══════════════════════════════════════
   HERO BASE (páginas interiores)
   ═══════════════════════════════════════ */
.page-hero {
  min-height: 52vh; display: flex; align-items: center;
  background: linear-gradient(145deg, #093347 0%, #0A6885 50%, #0AAFCC 100%);
  position: relative; overflow: hidden; padding-top: 70px;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 60% 40%, rgba(10,175,204,.25) 0%, transparent 65%);
}
.page-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .25;
}
.page-hero-content { position: relative; z-index: 2; padding: 60px 0; }
.page-hero h1 { color: #fff; margin-bottom: .7rem; }
.page-hero .sub { font-size: 1.1rem; color: rgba(255,255,255,.7); max-width: 560px; margin-bottom: 2rem; line-height: 1.7; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; }
.page-hero .hero-wave svg { display: block; width: 100%; }

/* ═══════════════════════════════════════
   CARDS SERVICIOS
   ═══════════════════════════════════════ */
.sc {
  background: #fff; border-radius: var(--rl);
  padding: 2rem; border: 1.5px solid var(--gris-brd);
  box-shadow: var(--sh); transition: all .3s;
  position: relative; overflow: hidden;
}
.sc::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--agua), var(--turq));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.sc:hover::after { transform: scaleX(1); }
.sc:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.sc-ico {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--agua-l); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1.1rem;
  transition: background .3s;
}
.sc:hover .sc-ico { background: var(--agua); }
.sc h3 { margin-bottom: .6rem; font-size: 1rem; }
.sc p  { font-size: .88rem; margin-bottom: 1.3rem; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }

/* ═══════════════════════════════════════
   CARDS PROYECTO
   ═══════════════════════════════════════ */
.pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.pcard {
  background: #fff; border-radius: var(--rl); overflow: hidden;
  box-shadow: var(--sh); border: 1.5px solid var(--gris-brd);
  transition: transform .3s, box-shadow .3s;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.pcard-img { height: 210px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pcard:hover .pcard-img img { transform: scale(1.06); }
.pi-azul  { background: linear-gradient(135deg, #0A7490, #0AAFCC); }
.pi-arena { background: linear-gradient(135deg, #C8873A, #E5A63E); }
.pcard-body { padding: 1.8rem; }
.pcard-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--agua); margin-bottom: .5rem; }
.pcard-body h3 { margin-bottom: .7rem; font-size: 1.15rem; }
.pcard-body p  { font-size: .9rem; margin-bottom: 1.3rem; }
.pcard-feats { list-style: none; margin-bottom: 1.5rem; }
.pcard-feats li {
  display: flex; align-items: center; gap: 9px;
  font-size: .86rem; color: var(--gris-dk); padding: 4px 0;
}
.pcard-feats li::before {
  content: ''; width: 17px; height: 17px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 17 17' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='17' height='17' rx='8.5' fill='%23E0F7FA'/%3E%3Cpath d='M4 8.5l3 3 5.5-6' stroke='%230891B2' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/cover;
}

/* ═══════════════════════════════════════
   GALERÍA ANTES/DESPUÉS — SLIDER DRAGGABLE
   ═══════════════════════════════════════ */
.sec-gal { background: linear-gradient(155deg, #093347 0%, #0A6885 55%, #0891B2 100%); }
.sec-gal .sec-hd h2 { color: #fff; }
.sec-gal .sec-hd p  { color: rgba(255,255,255,.58); }
.ggrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }

/* Contenedor */
.gi {
  border-radius: var(--rl); overflow: hidden;
  position: relative; height: 300px;
  cursor: col-resize;
  user-select: none; -webkit-user-select: none;
}

/* Ambas imágenes ocupan todo el contenedor */
.gi-after,
.gi-before {
  position: absolute; inset: 0;
}
.gi-after img,
.gi-before img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* El "antes" se recorta con clip-path: empieza en 0% a la izquierda, termina en 50% */
.gi-before {
  clip-path: inset(0 50% 0 0); /* el 50% derecho queda oculto */
  transition: clip-path 0s;    /* sin transición para que sea fluido al arrastrar */
}

/* Línea divisora */
.gi-line {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--arena);
  z-index: 4;
  transform: translateX(-50%);
  pointer-events: none;
}

/* Handle */
.gi-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--arena);
  border: 3px solid #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.45);
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  transition: transform .1s;
}
.gi-handle svg { width: 22px; height: 22px; }
.gi.dragging .gi-handle {
  transform: translate(-50%, -50%) scale(1.2);
}

/* Etiquetas */
.gi-lbl-before,
.gi-lbl-after {
  position: absolute; bottom: 42px; z-index: 6;
  font-size: .66rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #fff; padding: 4px 10px; border-radius: 50px;
  pointer-events: none;
}
.gi-lbl-before { left: 12px;  background: rgba(0,0,0,.5); }
.gi-lbl-after  { right: 12px; background: rgba(10,175,204,.75); }

/* Caption */
.gi-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: linear-gradient(to top, rgba(9,51,71,.9), transparent);
  color: #fff; padding: 2rem .9rem .7rem;
  font-size: .78rem; font-weight: 500;
  pointer-events: none;
}

@media (max-width: 1024px) { .ggrid { grid-template-columns: 1fr; } }
@media (max-width: 768px)  { .gi { height: 260px; } }

/* ═══════════════════════════════════════
   RENOLIT
   ═══════════════════════════════════════ */
.sec-ren { background: linear-gradient(160deg, #093347 0%, #065869 55%, #0A7490 100%); position: relative; overflow: hidden; }
.sec-ren::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 55px; background: var(--gris-bg); clip-path: ellipse(55% 100% at 50% 100%); }
.ren-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.ren-text h2 { color: #fff; margin-bottom: 1rem; }
.ren-text p  { color: rgba(255,255,255,.62); margin-bottom: 1rem; font-size: .95rem; }
.ren-pills { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.6rem; }
.rp { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 50px; padding: 8px 16px; color: #fff; font-size: .8rem; font-weight: 500; backdrop-filter: blur(8px); }
.rstats { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.rst { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); border-radius: var(--r); padding: 1.6rem; text-align: center; transition: all .3s; }
.rst:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }
.rst-n { font-size: 2.5rem; font-weight: 800; color: var(--arena); line-height: 1; margin-bottom: .35rem; }
.rst-l { font-size: .78rem; color: rgba(255,255,255,.56); line-height: 1.4; }
.rlogo-a { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 1.3rem; grid-column: span 2; text-align: center; }
.rlogo-a p { color: rgba(255,255,255,.42); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .7rem; }
.rlgs { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.rlg { background: rgba(255,255,255,.08); border-radius: 9px; padding: 8px 16px; color: #fff; font-weight: 600; font-size: .82rem; }
.rlg.m { background: var(--arena); font-size: .9rem; padding: 9px 20px; }

/* ═══════════════════════════════════════
   PRECIOS
   ═══════════════════════════════════════ */
.ptbl { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--rl); overflow: hidden; box-shadow: var(--sh-md); margin-bottom: 1.5rem; }
.ptbl thead { background: linear-gradient(135deg, var(--agua-d), var(--turq)); }
.ptbl thead th { padding: 1rem 1.5rem; text-align: left; color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.ptbl tbody tr { border-bottom: 1px solid var(--gris-brd); transition: background .2s; }
.ptbl tbody tr:hover { background: var(--agua-p); }
.ptbl tbody tr:last-child { border-bottom: none; }
.ptbl td { padding: 1.1rem 1.5rem; font-size: .88rem; vertical-align: middle; }
.ptbl td:first-child { color: var(--oscuro); font-weight: 500; }
.pbdg { display: inline-block; background: var(--agua-l); color: var(--agua-d); padding: 5px 13px; border-radius: 50px; font-weight: 700; font-size: .88rem; white-space: nowrap; }
.pbdg.a { background: var(--arena-l); color: #b07822; }
.pre-nota { background: var(--agua-p); border-left: 3px solid var(--agua); border-radius: 0 11px 11px 0; padding: .9rem 1.3rem; color: var(--agua-d); font-size: .86rem; margin-bottom: 1.8rem; }

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.sec-faq { background: var(--gris-bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: 2.8rem; }
.fi { background: #fff; border-radius: var(--r); border: 1.5px solid var(--gris-brd); overflow: hidden; transition: border .3s; }
.fi.op { border-color: var(--agua); }
.fq { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.4rem; cursor: pointer; transition: background .2s; }
.fq:hover { background: var(--agua-p); }
.fq h3 { font-size: .9rem; font-weight: 600; color: var(--oscuro); flex: 1; }
.ftog { width: 26px; height: 26px; border-radius: 50%; background: var(--agua-l); color: var(--agua-d); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 300; flex-shrink: 0; transition: all .3s; }
.fi.op .ftog { background: var(--agua); color: #fff; transform: rotate(45deg); }
.fb { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.fi.op .fb { max-height: 240px; }
.fbi { padding: 0 1.4rem 1.2rem; font-size: .86rem; color: var(--gris-dk); line-height: 1.72; border-top: 1px solid var(--gris-brd); padding-top: .85rem; }

/* ═══════════════════════════════════════
   CONTACTO / FORMULARIO
   ═══════════════════════════════════════ */
.con-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.con-info h2 { margin-bottom: .7rem; }
.con-info .lead { font-size: .97rem; margin-bottom: 1.8rem; line-height: 1.75; }
.dato { display: flex; align-items: flex-start; gap: 13px; background: var(--gris-bg); border: 1.5px solid var(--gris-brd); border-radius: var(--r); padding: 1rem; margin-bottom: .9rem; transition: transform .25s, border .25s; }
.dato:hover { transform: translateX(4px); border-color: var(--agua); }
.dato-ico { width: 38px; height: 38px; border-radius: 9px; background: var(--agua-l); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.dato-t strong { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--oscuro); margin-bottom: 2px; }
.dato-t a, .dato-t span { color: var(--gris-dk); font-size: .88rem; text-decoration: none; transition: color .2s; }
.dato-t a:hover { color: var(--agua-d); }
.mapa { border-radius: var(--r); overflow: hidden; margin-top: 1.1rem; height: 175px; border: 1.5px solid var(--gris-brd); }
.mapa iframe { width: 100%; height: 100%; border: none; display: block; }
.fcard { background: var(--gris-bg); border-radius: var(--rl); padding: 2.3rem; border: 1.5px solid var(--gris-brd); }
.fcard h3 { font-size: 1.25rem; margin-bottom: .25rem; }
.fcard .sub { font-size: .82rem; color: var(--gris-md); margin-bottom: 1.6rem; }
.fg { margin-bottom: .9rem; }
.fg label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--oscuro); margin-bottom: 4px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 11px 13px; border: 1.5px solid var(--gris-brd); border-radius: 9px; font-family: inherit; font-size: .88rem; color: var(--oscuro); background: #fff; transition: border .25s, box-shadow .25s; outline: none; appearance: none; -webkit-appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--agua); box-shadow: 0 0 0 3px rgba(10,175,204,.11); }
.fg textarea { resize: vertical; min-height: 85px; }
.fgrow { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.btn-sub { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--agua), var(--turq)); color: #fff; border: none; border-radius: 9px; font-family: inherit; font-size: .93rem; font-weight: 700; cursor: pointer; transition: all .3s; box-shadow: 0 4px 16px rgba(10,175,204,.28); margin-top: .3rem; }
.btn-sub:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(10,175,204,.38); }

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--agua-d), var(--turq));
  border-radius: var(--rl); padding: 3.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(255,255,255,.08), transparent);
}
.cta-banner h2 { color: #fff; margin-bottom: .7rem; position: relative; }
.cta-banner p  { color: rgba(255,255,255,.75); margin-bottom: 2rem; position: relative; font-size: 1rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer { background: linear-gradient(155deg, #093347, #065869); padding: 3.5rem 24px 1.8rem; }
.ft-wrap { max-width: 1220px; margin: 0 auto; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.ft-brand .logo-t { font-size: 1.5rem; display: block; margin-bottom: .7rem; text-decoration: none; }
.ft-brand p { color: rgba(255,255,255,.46); font-size: .82rem; line-height: 1.7; max-width: 250px; }
.ft-col h4 { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--arena); margin-bottom: .9rem; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: .55rem; }
.ft-col ul li a { color: rgba(255,255,255,.46); font-size: .82rem; text-decoration: none; transition: color .2s; }
.ft-col ul li a:hover { color: #fff; }
.ft-bot { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.6rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.ft-bot p { color: rgba(255,255,255,.35); font-size: .78rem; }
.ft-bot a { color: rgba(255,255,255,.35); text-decoration: none; }
.ft-soc { display: flex; gap: .6rem; }
.ft-soc a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); text-decoration: none; font-size: .82rem; transition: all .25s; }
.ft-soc a:hover { background: var(--arena); color: #fff; }

/* ═══════════════════════════════════════
   FLOATING BTNS
   ═══════════════════════════════════════ */
.float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 800; display: flex; flex-direction: column; align-items: flex-end; gap: .65rem; }
.fb-btn { display: flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 50px; color: #fff; text-decoration: none; font-weight: 600; font-size: .85rem; white-space: nowrap; transition: all .25s; }
.fb-wa  { background: #25D366; box-shadow: 0 4px 16px rgba(37,211,102,.4); }
.fb-wa:hover  { box-shadow: 0 8px 26px rgba(37,211,102,.5); transform: translateY(-2px) scale(1.02); }
.fb-tel { background: var(--arena); box-shadow: 0 4px 16px rgba(229,166,62,.4); }
.fb-tel:hover { box-shadow: 0 8px 26px rgba(229,166,62,.5); transform: translateY(-2px) scale(1.02); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .ren-grid, .con-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pgrid, .svc-grid, .faq-grid, .ggrid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .ptbl { display: block; overflow-x: auto; }
  .fgrow { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .float { bottom: 1rem; right: 1rem; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .sec { padding: 60px 0; }
}
