:root {
    --green: #9CCD53;
    --green2: #A7DB59;
    --teal: #0097B2;
    --mint: #7ED957;
    --gray: #C5C4BE;
    --dark: #111214;
    --ink: #0B0F12;
    --white: #FFFFFF;
    --paper: #F6F6F5;

    --radius: 18px;
    --shadow: 0 18px 55px rgba(0, 0, 0, .20);
    --shadow2: 0 10px 28px rgba(0, 0, 0, .18);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    color: var(--white);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    overflow-x: hidden;
    background:
        radial-gradient(900px 600px at 10% 20%, rgba(167, 219, 89, .35), transparent 55%),
        radial-gradient(900px 600px at 90% 30%, rgba(0, 151, 178, .35), transparent 55%),
        linear-gradient(90deg, var(--teal), var(--mint));
}

/* Animated subtle sheen */
.sheen {
    position: fixed;
    inset: -40%;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .18) 45%, transparent 55%);
    transform: translateX(-20%) rotate(10deg);
    animation: sheen 8s linear infinite;
    pointer-events: none;
    filter: blur(2px);
    opacity: .55;
}

@keyframes sheen {
    0% {
        transform: translateX(-35%) rotate(10deg);
    }

    100% {
        transform: translateX(35%) rotate(10deg);
    }
}

/* Layout */
.wrap {
    min-height: 100%;
    display: grid;
    place-items: center;
    padding: 28px 18px;
}

.card {
    width: min(980px, 100%);
    background: rgba(11, 15, 18, .55);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 400px at 15% 20%, rgba(156, 205, 83, .22), transparent 60%),
        radial-gradient(800px 400px at 85% 25%, rgba(0, 151, 178, .18), transparent 60%);
    pointer-events: none;
}

.content {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 18px;
    padding: 26px;
    position: relative;
    z-index: 1;
}

@media (max-width: 860px) {
    .content {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .right {
        order: 2;
    }

    .left {
        order: 1;
    }
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.logo {
    width: 210px;
    max-width: 64vw;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .25));
}

.badge {
    margin-left: auto;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .20);
    background: rgba(0, 0, 0, .18);
}

.green {
    color: var(--green);
}

/* Text */
h1 {
    margin: 10px 0 8px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
}

p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .86);
    font-size: 15.5px;
    line-height: 1.55;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .14);
    font-size: 13px;
    color: rgba(255, 255, 255, .92);
    white-space: nowrap;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(156, 205, 83, .18);
}

/* Panel / countdown */
.panel {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow2);
}

.panel h2 {
    margin: 0 0 10px;
    font-size: 16px;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .92);
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.timebox {
    text-align: center;
    border-radius: 14px;
    padding: 12px 10px;
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .14);
}

.num {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: .02em;
}

.lbl {
    font-size: 11px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
    margin-top: 4px;
}

/* Form */
form {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.input {
    flex: 1 1 260px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .10);
}

.input input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--white);
    font-size: 14px;
}

.input input::placeholder {
    color: rgba(255, 255, 255, .70);
}

.btn {
    flex: 0 0 auto;
    cursor: pointer;
    border: 0;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 800;
    letter-spacing: .02em;
    color: rgba(8, 14, 18, .96);
    background: linear-gradient(90deg, var(--green), var(--green2));
    box-shadow: 0 14px 35px rgba(156, 205, 83, .22);
    transition: transform .12s ease, filter .12s ease;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.btn:active {
    transform: translateY(0px) scale(.99);
}

.btn:disabled {
    opacity: .75;
    cursor: not-allowed;
    transform: none;
}

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.captcha-wrap {
    flex: 1 1 100%;
}

/* Hint + status */
.hint {
    margin-top: 10px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .76);
}

.status {
    margin-top: 10px;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, .22);
    display: none;
}

.status.ok {
    border-color: rgba(156, 205, 83, .35);
}

.status.err {
    border-color: rgba(255, 120, 120, .40);
}

/* Success transition */
.success {
    margin-top: 14px;
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(156, 205, 83, .35);
    background: rgba(0, 0, 0, .22);
    box-shadow: var(--shadow2);
    display: none;
    place-items: center;
    text-align: center;
    gap: 10px;
    transform: translateY(10px);
    opacity: 0;
}

.success.show {
    display: grid;
    animation: successIn .55s cubic-bezier(.2, .9, .2, 1) forwards;
}

@keyframes successIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.check {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--green2));
    display: grid;
    place-items: center;
    box-shadow: 0 18px 35px rgba(156, 205, 83, .22);
    position: relative;
}

.check::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    border: 1px solid rgba(156, 205, 83, .25);
    animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(.92);
        opacity: .75;
    }

    70% {
        transform: scale(1.12);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.success-title {
    font-weight: 900;
    letter-spacing: .01em;
    font-size: 18px;
}

.success-sub {
    color: rgba(255, 255, 255, .80);
    font-size: 13.5px;
}

/* Form fade-out */
.form-hide {
    animation: formOut .35s ease forwards;
}

@keyframes formOut {
    to {
        opacity: 0;
        transform: translateY(-6px);
        height: 0;
        margin: 0;
        padding: 0;
    }
}

/* Footer */
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .72);
    font-size: 12.5px;
    position: relative;
    z-index: 1;
}

.footer a {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, .32);
}

.footer a:hover {
    border-bottom-color: rgba(255, 255, 255, .70);
}

/* Decorative lines */
.lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background:
        radial-gradient(circle at 12% 78%, rgba(255, 255, 255, .18) 0 2px, transparent 3px),
        radial-gradient(circle at 82% 22%, rgba(255, 255, 255, .18) 0 2px, transparent 3px),
        linear-gradient(135deg, transparent 0 35%, rgba(255, 255, 255, .10) 35% 36%, transparent 36% 100%),
        linear-gradient(45deg, transparent 0 55%, rgba(255, 255, 255, .10) 55% 56%, transparent 56% 100%);
    mix-blend-mode: screen;
}

/* Social buttons */
.social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-size: 13px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .14);
    transition: transform .12s ease, filter .12s ease, background .12s ease;
}

.social-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    background: rgba(255, 255, 255, .10);
}

.social-btn svg {
    opacity: .95;
}

/* =========================
CTA (Book Now - OTA style)
========================= */
.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
  align-items:center;
}

.cta-primary{
  cursor:pointer;
  border:0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  letter-spacing:.01em;
  color: rgba(8,14,18,.96);
  background: linear-gradient(90deg, var(--green), var(--green2));
  box-shadow: 0 18px 40px rgba(0,0,0,.25), 0 14px 35px rgba(156,205,83,.22);
  transition: transform .12s ease, filter .12s ease;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.cta-primary:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.cta-arrow{
  display:inline-block;
  font-weight: 900;
  transform: translateY(-1px);
}

.cta-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 800;
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}

.cta-secondary:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  background: rgba(255,255,255,.10);
}

.cta-full{
  width:100%;
  margin-top: 12px;
  justify-content:center;
}

/* =========================
Trust / Counter
========================= */
.trust{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 10px 0 6px;
}

.trust-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
  font-size: 13px;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}

.trust-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(156,205,83,.18);
}

/* =========================
Social (ya lo tenías)
========================= */
/* Mantén tu social-row/social-btn existente */

/* =========================
WhatsApp Bubble (Intercom-like)
========================= */
.wa-bubble{
  position: fixed;
  right: 30px;
  bottom: 140px;
  z-index: 9998;
}

.wa-bubble-btn{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(11,15,18,.75);
  color: rgba(255,255,255,.92);
  border-radius: 999px;
  padding: 10px 12px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .12s ease, filter .12s ease;
}

.wa-bubble-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.wa-bubble-icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(156,205,83,.20);
  display:grid;
  place-items:center;
  font-size: 16px;
}

.wa-bubble-text{
  font-weight: 800;
  font-size: 13px;
}

.wa-chat{
  width: 320px;
  margin-top: 10px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(11,15,18,.78);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display:none;
  transform: translateY(8px);
  opacity: 0;
}

.wa-chat.open{
  display:block;
  animation: waChatIn .25s ease forwards;
}
@keyframes waChatIn{
  to { transform: translateY(0); opacity: 1; }
}

.wa-chat-head{
  padding: 12px 12px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.wa-chat-badge{
  font-weight: 900;
  letter-spacing:.01em;
}

.wa-chat-sub{
  font-size: 12px;
  color: rgba(255,255,255,.72);
  margin-top: 2px;
}

.wa-chat-close{
  border:0;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  width: 34px;
  height: 34px;
  border-radius: 12px;
  cursor:pointer;
}

.wa-chat-body{
  padding: 12px;
}

.wa-chat-msg{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 10px 10px;
  border-radius: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.92);
}

.wa-quick{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin: 10px 0;
}

.wa-quick-btn{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.90);
  padding: 8px 10px;
  border-radius: 999px;
  cursor:pointer;
  font-size: 12px;
  transition: transform .12s ease, filter .12s ease;
}

.wa-quick-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.wa-chat-input{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  padding: 10px 10px;
  outline: none;
  resize: none;
  font-size: 13px;
}

.wa-send{
  width:100%;
  margin-top: 10px;
  border:0;
  border-radius: 14px;
  padding: 12px 12px;
  font-weight: 900;
  cursor:pointer;
  color: rgba(8,14,18,.96);
  background: linear-gradient(90deg, var(--green), var(--green2));
  box-shadow: 0 14px 35px rgba(156,205,83,.22);
}

/* =========================
WhatsApp Float (8s bounce + wave + icon rotate)
========================= */
.wa-float{
  position: fixed;
  right: 30px;
  bottom: 70px;
  z-index: 9999;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: rgba(8,14,18,.96);
  text-decoration:none;
  font-weight: 900;
  letter-spacing:.01em;
  box-shadow: 0 18px 40px rgba(0,0,0,.25), 0 14px 35px rgba(156,205,83,.22);
  transition: transform .12s ease, filter .12s ease;
  overflow: visible;
  animation: wa-bounce 8s infinite 2s;
}

.wa-float:hover{
  animation:none;
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.wa-icon{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  display:grid;
  place-items:center;
  animation: wa-rotate 8s infinite 2s;
}

.wa-text{ font-size: 13.5px; }

.wa-wave{
  position:absolute;
  inset:0;
  border-radius: 999px;
  background: rgba(156,205,83,.35);
  z-index:-1;
  animation: wa-wave 8s infinite 2s;
}

.wa-wave.delay{ animation-delay: 4s; }

@keyframes wa-bounce{
  0%{ transform: translateY(0); }
  4%{ transform: translateY(-8px); }
  8%{ transform: translateY(0); }
  100%{ transform: translateY(0); }
}

@keyframes wa-wave{
  0%{ transform: scale(1); opacity: .45; }
  20%{ transform: scale(1.6); opacity: 0; }
  100%{ transform: scale(1.6); opacity: 0; }
}

@keyframes wa-rotate{
  0%{ transform: rotate(0deg); }
  4%{ transform: rotate(12deg); }
  8%{ transform: rotate(0deg); }
  100%{ transform: rotate(0deg); }
}

/* Mobile */
@media (max-width: 520px){
  .wa-text{ display:none; }
  .wa-float{ padding: 12px; }
  .wa-bubble{ right: 18px; bottom: 132px; }
  .wa-float{ right: 18px; bottom: 18px; }
}