:root{
  --bg:#f3f4f6;
  --card:#ffffff;
  --text:#111827;
  --muted:#4b5563;
  --border:#e5e7eb;
  --footer:#111827;
  --white:#ffffff;
  --green:#168000;

  --radius:16px;
  --shadow:0 10px 25px rgba(0,0,0,.08);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
  overflow-x:hidden;
}

img,
video,
iframe{
  max-width:100%;
}

h1{
  color:inherit;
  font-size:34px;
  line-height:1.15;
  margin:0 0 14px;
}

h2{
  color:inherit;
  font-size:24px;
  line-height:1.25;
  margin:0 0 14px;
}

h3{
  margin:8px 0 10px;
  line-height:1.25;
}

p{
  margin:0 0 12px;
}

a{
  color:inherit;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:18px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
  margin:18px 0;
}

.radius{
  border-radius:var(--radius);
}

.shadow{
  box-shadow:var(--shadow);
}

.img{
  width:100%;
  height:auto;
  display:block;
}

.lead{
  font-size:18px;
  color:var(--muted);
}

.mini{
  font-size:13px;
  color:var(--muted);
}

/* HEADER */

/* ================= HEADER ================= */

.topbar{
  background:var(--footer);
  color:var(--white);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:
    0 8px 24px rgba(0,0,0,.18);
  backdrop-filter:blur(10px);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:92px;
  gap:14px;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

/* Logo */
.brand img{
  width:230px;
  height:auto;

}

/* Hover */
.brand:hover img{
  transform:translateY(-1px);
  background:rgba(255,255,255,.07);

  box-shadow:
    0 14px 30px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.08);
}

/* Mobile */
@media(max-width:768px){

  .topbar-inner{
    min-height:82px;
  }

  .brand img{
    width:145px;
    padding:10px 14px;
  }

}

.top-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.phone{
  text-decoration:none;
  font-weight:700;
}

/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  text-decoration:none;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
}

.btn.small{
  padding:10px 12px;
  border-radius:12px;
}

.btn-primary{
  background:var(--green);
  color:#fff;
  border-color:var(--green);
}

.btn-primary:hover{
  background:#0f5f00;
}

.btn-outline{
  background:transparent;
  border-color:var(--green);
  color:var(--green);
}

.btn-outline:hover{
  background:var(--green);
  color:#fff;
}

/* LAYOUT */

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:center;
}

.hero{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:26px;
  align-items:center;
}

.hero-left,
.hero-right{
  min-width:0;
}

.bullets{
  margin:14px 0 0;
  padding-left:20px;
  color:var(--muted);
}

.bullets li{
  margin-bottom:6px;
}

.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.section-title{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-end;
  flex-wrap:wrap;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:16px;
}

.service{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
  background:#fff;
  min-width:0;
}

.service .icon{
  font-size:34px;
  margin-bottom:8px;
}

.steps{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
  margin-top:14px;
}

.step{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  min-width:0;
}

.badge{
  display:inline-flex;
  width:30px;
  height:30px;
  border-radius:10px;
  align-items:center;
  justify-content:center;
  background:var(--green);
  color:#fff;
  font-weight:800;
  margin-bottom:10px;
}

.faq details{
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  margin:10px 0;
  box-shadow:var(--shadow);
  background:#fff;
}

.faq summary{
  cursor:pointer;
  font-weight:800;
}

.reviews{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:14px;
}

.review{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  background:#fff;
}

.review-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
}

.stars{
  white-space:nowrap;
}

/* FORM */
.booking-form{
    background:#fff;
    padding:22px;
    border-radius:18px;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.date-row{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:12px;
    margin-bottom:14px;
}

.booking-form label{
    display:block;
    font-weight:800;
    margin-bottom:6px;
}

.booking-form input,
.booking-form select{
    width:100%;
    min-height:54px;
    border:1px solid var(--border);
    border-radius:14px;
    padding:0 14px;
    font-size:16px;
    background:#fff;
}

.booking-form button{
    width:100%;
    min-height:58px;
    border:none;
    border-radius:14px;
    background:green;
    color:#fff;
    font-size:18px;
    font-weight:900;
    cursor:pointer;
}

@media(max-width:768px){

    .date-row{
        grid-template-columns:1fr;
    }

}
.form label{
  display:block;
  font-weight:800;
  margin:10px 0 6px;
}

.form input,
.form select,
.form textarea{
  width:100%;
  padding:13px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  outline:none;
  font-size:16px;
  background:#fff;
}

.form input:focus,
.form select:focus,
.form textarea:focus{
  border-color:var(--green);
}

.form button{
  margin-top:14px;
  width:100%;
}

.booking-form{
  background:#fff;
  padding:24px;
  border-radius:20px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
}
.location-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    align-items:center;
}

.location-benefits{
    padding-left:18px;
    margin:18px 0;
}

.location-benefits li{
    margin-bottom:10px;
}

.location-map iframe{
    width:100%;
    min-height:420px;
    border:0;
    border-radius:18px;
    overflow:hidden;
}

@media(max-width:900px){

    .location-grid{
        grid-template-columns:1fr;
    }

    .location-map iframe{
        min-height:300px;
    }
}
/* VIDEO */

video{
  width:100%;
  display:block;
  border-radius:var(--radius);
}

/* FOOTER */

.footer{
  background:var(--footer);
  color:var(--white);
  margin-top:22px;
}

.footer a{
  color:var(--white);
  text-decoration:none;
}

.footer a:hover{
  text-decoration:underline;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:22px;
  padding:30px 18px;
}

.footer h4{
  margin:0 0 10px;
}

.footer ul{
  margin:0;
  padding-left:18px;
}

.footer-logo{
  width:140px;
  height:auto;
  display:block;
  margin-bottom:10px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:14px 18px;
}

/* PHONE CTA */

.phone-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  background:var(--green);
  color:#ffffff;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
  transition:all .25s ease;
  position:relative;
  overflow:hidden;
  white-space:nowrap;
}

.phone-btn:hover{
  background:#000000;
  transform:translateY(-1px) scale(1.03);
}

.phone-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#ffffff;
  color:#111827;
  font-size:18px;
  animation:phone-ring 2.8s infinite;
}

.phone-text{
  white-space:nowrap;
  letter-spacing:.3px;
}

.phone-btn::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  box-shadow:0 0 0 0 rgba(17,24,39,.6);
  animation:pulse 2.8s infinite;
  pointer-events:none;
}

@keyframes phone-ring{
  0%{transform:rotate(0deg)}
  2%{transform:rotate(-15deg)}
  4%{transform:rotate(15deg)}
  6%{transform:rotate(-12deg)}
  8%{transform:rotate(12deg)}
  10%{transform:rotate(0deg)}
  100%{transform:rotate(0deg)}
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(17,24,39,.6)}
  70%{box-shadow:0 0 0 14px rgba(17,24,39,0)}
  100%{box-shadow:0 0 0 0 rgba(17,24,39,0)}
}

/* WHATSAPP FLOATING */

.wa-float{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:9999;
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius:999px;
  background:#111827;
  color:#fff;
  text-decoration:none;
  box-shadow:0 14px 34px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.08);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
  overflow:hidden;
}

.wa-float:hover{
  transform:translateY(-2px) scale(1.02);
  background:#0b1220;
}

.wa-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#22c55e;
  color:#0b1220;
  box-shadow:0 8px 18px rgba(34,197,94,.35);
  animation:wa-ring 3.2s infinite;
  flex:0 0 auto;
}

.wa-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.wa-text strong{
  font-size:14px;
  letter-spacing:.2px;
}

.wa-sub{
  font-size:12px;
  opacity:.85;
  margin-top:3px;
}

.wa-badge{
  position:absolute;
  top:-8px;
  left:56px;
  padding:4px 8px;
  font-size:11px;
  font-weight:800;
  background:#22c55e;
  color:#0b1220;
  border-radius:999px;
  animation:wa-pulse 2.6s infinite;
}

.wa-float::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  box-shadow:0 0 0 0 rgba(34,197,94,.35);
  animation:wa-halo 3.2s infinite;
  pointer-events:none;
}

@keyframes wa-ring{
  0%{transform:rotate(0deg)}
  2%{transform:rotate(-12deg)}
  4%{transform:rotate(12deg)}
  6%{transform:rotate(-10deg)}
  8%{transform:rotate(10deg)}
  10%{transform:rotate(0deg)}
  100%{transform:rotate(0deg)}
}

@keyframes wa-pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.06)}
  100%{transform:scale(1)}
}

@keyframes wa-halo{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.32)}
  70%{box-shadow:0 0 0 18px rgba(34,197,94,0)}
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
}

/* CONTACT ALERT */

.contact-alert{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 16px;
  margin-bottom:16px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  background:#fff;
}

.contact-alert.success{
  border-left:6px solid var(--green);
  background:#ecfdf5;
  color:#065f46;
}

.contact-alert.error{
  border-left:6px solid #ef4444;
  background:#fef2f2;
  color:#7f1d1d;
}

.alert-icon{
  font-size:20px;
  line-height:1;
  margin-top:2px;
}

.alert-text{
  font-weight:700;
}

/* FLATPICKR */

.flatpickr-calendar{
  border-radius:18px !important;
  box-shadow:0 20px 40px rgba(0,0,0,.15) !important;
}

/* TABLET */

@media(max-width:900px){
  .container{
    padding:14px;
  }

  .card{
    padding:20px;
  }

  .grid-2,
  .hero,
  .cards,
  .steps,
  .reviews,
  .footer-grid{
    grid-template-columns:1fr !important;
  }

  .section-title{
    align-items:flex-start;
  }

  .hero{
    gap:18px;
  }

  .topbar-inner{
    align-items:flex-start;
  }
}

/* MOBILE */

@media(max-width:600px){
  h1{
    font-size:28px;
  }

  h2{
    font-size:22px;
  }

  .container{
    padding:12px;
  }

  .card{
    padding:16px;
    margin:14px 0;
    border-radius:14px;
  }

  .topbar-inner{
    flex-direction:column;
    align-items:stretch;
  }

  .brand{
    justify-content:center;
  }

  .brand img{
    width:110px;
  }

  .top-actions{
    width:100%;
    justify-content:center;
  }

  .phone-btn,
  .top-actions .btn,
  .top-actions a{
    width:100%;
    justify-content:center;
  }

  .cta-row{
    flex-direction:column;
  }

  .cta-row .btn{
    width:100%;
  }

  .booking-form{
    padding:18px;
  }

  .service,
  .step,
  .review{
    padding:14px;
  }

  .footer-grid{
    padding:24px 14px;
  }

  .wa-text{
    display:none;
  }

  .wa-float{
    padding:10px;
    right:12px;
    bottom:12px;
  }

  .wa-icon{
    width:44px;
    height:44px;
  }
}

/* EXTRA SMALL */

@media(max-width:380px){
  h1{
    font-size:25px;
  }

  .card{
    padding:14px;
  }

  .btn{
    padding:11px 13px;
    font-size:14px;
  }
}
@media screen and (max-width: 900px){

  .hero{
    display:flex !important;
    flex-direction:column !important;
    gap:18px !important;
  }

  .hero-left,
  .hero-right{
    width:100% !important;
    max-width:100% !important;
    flex:0 0 auto !important;
  }

  .hero-right{
    order:2;
  }

  .hero-left{
    order:1;
  }

}
/* ================= COOKIES ================= */

.cookie-banner{
    position:fixed;
    left:16px;
    right:16px;
    bottom:16px;

    z-index:99999;

    transform:translateY(140%);
    transition:transform .35s ease;

    display:flex;
    justify-content:center;
}

.cookie-banner.show{
    transform:translateY(0);
}

.cookie-content{
    width:100%;
    max-width:900px;

    background:#111827;
    color:#fff;

    border-radius:22px;

    padding:18px 20px;

    box-shadow:
        0 16px 45px rgba(0,0,0,.35);

    border:1px solid rgba(255,255,255,.08);

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.cookie-text{
    font-size:15px;
    line-height:1.5;
}

.cookie-text a{
    color:#22c55e;
    font-weight:700;
}

.cookie-actions{
    display:flex;
    gap:10px;
    flex-shrink:0;
}

.cookie-btn{
    border:none;
    min-height:48px;
    padding:0 18px;
    border-radius:14px;
    font-weight:800;
    cursor:pointer;
    transition:.2s ease;
}

.cookie-btn.accept{
    background:#22c55e;
    color:#052e16;
}

.cookie-btn.reject{
    background:#374151;
    color:#fff;
}

.cookie-btn:hover{
    transform:translateY(-1px);
}

@media(max-width:768px){

    .cookie-content{
        flex-direction:column;
        align-items:stretch;
    }

    .cookie-actions{
        width:100%;
        flex-direction:column;
    }

    .cookie-btn{
        width:100%;
    }

}