:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted:#5a6b85;
  --line: rgba(15, 23, 42, .12);
  --card:#ffffff;
  --shadow: 0 20px 60px rgba(15, 23, 42, .10);
  --shadow2: 0 10px 30px rgba(15, 23, 42, .08);
  --r: 18px;

  --primary:#0b5cff;
  --primary2:#0a46c5;
  --soft:#f3f6fb;
}


*{ box-sizing:border-box; }
html,body{
  margin:0;
  padding:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1150px, 92%); margin:0 auto; }

.header{ position:sticky; top:0; z-index:10; backdrop-filter: blur(10px); background: rgba(255, 255, 255, 0.6); border-bottom:1px solid var(--line); }
.header__inner{ display:flex; align-items:center; justify-content:space-between; padding:0px 0; gap:16px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand__logo {
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand__name{ font-weight:800; letter-spacing:.2px; }
.brand__tag{ color:var(--muted); font-size:13px; margin-top:2px; }

.nav{ display:flex; gap:14px; }
.nav a{ padding:8px 10px; border-radius:12px; color:var(--muted); border:1px solid transparent; }
.nav a:hover{ color:var(--text); border-color: var(--line); background: rgba(255,255,255,.04); }

.hero{
  width: 100%;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  padding: 40px 0;

  background:
    linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.18) 55%, rgba(0,0,0,.10) 100%),
    url("hero-boat.jpg") center / cover no-repeat;

  border-bottom: 1px solid var(--line);
}



.hero__inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;

  background: transparent;
  padding: 0;         /* importante */
}

.hero__copy{
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .22);
}


.hero__card{
  background: #ffffff !important;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .22);
  display:flex;
  flex-direction:column;
  gap:14px;
}





.hero__copy h1{ margin:0 0 10px; font-size: clamp(28px, 3.2vw, 46px); line-height:1.05; }
.hero__copy p{ margin:0 0 18px; color:var(--muted); max-width: 60ch; }

.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:16px; }

.btn{
  padding:12px 16px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  font-weight:800;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .12s ease, background .12s ease;
  box-shadow: var(--shadow2);
}
.btn:hover{ transform: translateY(-1px); }

.btn--primary{
  background: var(--primary);
  color:#fff;
  border-color: rgba(11,92,255,.35);
  box-shadow: 0 14px 35px rgba(11,92,255,.22);
}
.btn--primary:hover{ background: var(--primary2); }

.btn--ghost{
  background: rgba(255,255,255,.9);
}


.pill-row{ display:flex; flex-wrap:wrap; gap:8px; }
.pill{ font-size:12px; color:var(--muted); border:1px solid var(--line); background: rgba(255,255,255,.04); padding:6px 10px; border-radius:999px; }

.hero__card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.badge{
  display:inline-block;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: var(--soft);
}

.muted{ color:var(--muted); }
.small{ font-size:12px; }
.right{ text-align:right; }

.hero__stats{ display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; }
.stat{
  padding:12px;
  background: var(--soft);
  border:1px solid var(--line);
  border-radius:14px;
}


.stat__label{ color:var(--muted); font-size:12px; }
.stat__value{ font-weight:800; margin-top:4px; }

.section{ padding:42px 0; }
.section--alt{ background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section__head{ margin-bottom:18px; }
.section__head h2{ margin:0 0 6px; font-size: 26px; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background: rgba(255,255,255,.04);
  border:0px solid var(--line);
  border-radius: var(--r);
  overflow:hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  display:flex;
  flex-direction:column;
}
.card__img{
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--line);
}

.card__img::after{
  
  position:absolute;
  bottom:10px;
  left:12px;
  font-size:12px;
  color: rgba(255,255,255,.75);
  background: rgba(0,0,0,.25);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
}
.card__body{ padding:14px; display:flex; flex-direction:column; gap:10px; }
.card__title{ font-weight:900; font-size:18px; }
.card__meta{ display:flex; flex-wrap:wrap; gap:8px; }
.tag{ font-size:12px; color:var(--muted); border:1px solid var(--line); background: rgba(255,255,255,.03); padding:6px 10px; border-radius:999px; }
.card__priceRow{ display:flex; align-items:baseline; justify-content:space-between; gap:10px; }
.from{ color:var(--muted); font-size:12px; }
.priceStrong{ font-weight:900; font-size:20px; }

.booking{ display:grid; grid-template-columns: 1.05fr .95fr; gap:14px; }
.panel{
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, .10);
}
.panel h3{ margin:0 0 12px; }


.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
.field span{ font-size:12px; color:var(--muted); }
.field input, .field select, .field textarea{
  width:100%;
  padding:12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.14);
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

.field input::placeholder,
.field textarea::placeholder{
  color: rgba(90,107,133,.75);
}

.field input:focus, .field select:focus, .field textarea:focus{
  border-color: rgba(11,92,255,.55);
  box-shadow: 0 0 0 4px rgba(11,92,255,.12);
}

.field select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(15,23,42,.55) 50%),
    linear-gradient(135deg, rgba(15,23,42,.55) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}


.row{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
.notice{
  padding:12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: var(--soft);
  color: var(--muted);
  margin: 6px 0 12px;
}
.notice.ok{ border-color: rgba(34,197,94,.25); background: rgba(34,197,94,.10); color: #14532d; }
.notice.bad{ border-color: rgba(239,68,68,.25); background: rgba(239,68,68,.10); color: #7f1d1d; }


.priceBox{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.12);
  background: #ffffff;
  padding: 14px;
  box-shadow: 0 12px 35px rgba(15,23,42,.08);
}

.priceBox__top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.price{ font-size:28px; font-weight:950; }
.season{ font-weight:900; }
.breakdown{ margin-top:10px; }
.breakdown summary{ cursor:pointer; color: var(--muted); }
.breakdown__content{ margin-top:10px; line-height:1.5; }

.steps{ margin:0; padding-left:18px; color: var(--muted); }
.mt8{ margin-top:8px; }
.hidden{ display:none; }

.faq details{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:12px 14px;
  margin-bottom:10px;
}
.faq summary{ cursor:pointer; font-weight:800; }
.faq p{ margin:8px 0 0; }

.footer{ border-top:1px solid var(--line); padding:18px 0; }
.footer__inner{ display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; }

@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .booking{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}

.mt12{ margin-top:12px; }

.cal__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.cal__btn{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
  font-size:18px;
  font-weight:900;
}
.cal__btn:hover{ background: rgba(255,255,255,.10); transform: translateY(-1px); }

.cal__title{
  font-weight:950;
  letter-spacing:.2px;
}

.cal__legend{
  margin-top:4px;
  color: var(--muted);
  font-size:12px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

.dot{
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:999px;
  margin-right:6px;
  border:1px solid var(--line);
}
.dot--free{ background: rgba(255,255,255,.08); }
.dot--res{ background: rgba(255, 80, 80, .55); }
.dot--sel{ background: rgba(120, 200, 255, .55); }

.cal__week{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap:8px;
  margin-bottom:8px;
  color: var(--muted);
  font-size:12px;
  text-align:center;
}

.cal__grid{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap:8px;
}

.cal__day{
  height:44px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.12);
  background: #ffffff;
  display:grid;
  place-items:center;
  cursor:pointer;
  user-select:none;
  position:relative;
  font-weight:800;
  color: var(--text);
}

.cal__day:hover{
  background: var(--soft);
  transform: translateY(-1px);
}

.cal__btn{
  background: #ffffff;
  border:1px solid rgba(15,23,42,.12);
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}


.cal__day--empty{
  border-color: transparent;
  background: transparent;
  cursor:default;
}

.cal__day--reserved{
  background: rgba(255, 80, 80, .18);
  border-color: rgba(255, 80, 80, .35);
}
.cal__day--reserved::after{
  content:"";
  position:absolute;
  bottom:6px;
  width:8px;
  height:8px;
  border-radius:999px;
  background: rgba(255, 80, 80, .75);
  border:1px solid rgba(255,255,255,.25);
}

.cal__day--selected{
  background: rgba(120, 200, 255, .18);
  border-color: rgba(120, 200, 255, .35);
}
.cal__day--inrange{
  background: rgba(120, 200, 255, .10);
  border-color: rgba(120, 200, 255, .22);
}

.cal__day--today{
  outline: 2px solid rgba(255,255,255,.16);
  outline-offset: 2px;
}

.cal__day--disabled{
  opacity:.45;
  cursor:not-allowed;
}

.card__title{
  font-weight:900;
  font-size:18px;
  display:inline-block;
}
.card__title:hover{
  text-decoration: underline;
}

.lang-switch{
  display:flex;
  gap:6px;
}

.lang-switch button{
  padding:6px 10px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fff;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  color:var(--muted);
}

.lang-switch button:hover{
  color:var(--text);
  border-color: rgba(11,92,255,.4);
}

.lang-switch button.active{
  color:#0b5cff;
  border-color:#0b5cff;
}
