     
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --blue: #1f6f8b;
  --gold: #dfbc00;
  --green: #25ad2a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: #16241C;
  font-family: 'Inter', sans-serif;
}

section { padding: 70px 0; }

ol, ul {
  list-style: none;
  padding-inline-start: 0px;
}

ol li {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  margin-top: 16px;
  background-color: #fff;
}
ol li span {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
  border-radius: 9999px;
  background-color: var(--blue);
}

ol li p {
  margin: 0;
  padding-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.625;

}

svg {
  color: var(--blue);
}

.svg-div {
  display:flex;
  margin-left: auto;
  margin-right: auto;
  height: 3rem;
  width: 3rem;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background-color: #1f6f8b1a;
}

 /* ---------- Reveal on scroll ---------- */
.reveal-up {
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal-up.is-visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.08s; }
.reveal-delay-2 { transition-delay:.16s; }
.reveal-delay-3 { transition-delay:.24s; }

.reveal-right {
  opacity:0;
  transform:translateX(-28px);
  transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal-right.is-visible { opacity:1; transform:translateY(0); }

.reveal-left {
  opacity:0;
  transform:translateX(28px);
  transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal-left.is-visible { opacity:1; transform:translateY(0); }

.hero {
  position: relative;
  z-index: 1;
  padding: 90px 0 90px;
  background: #f7f5f1;
}

.wrap {
  margin: auto;
  padding: 14px 24px;
  max-width: 75%;
}

.title {
  text-align: center;
  font-size: 36px;
  margin-top: 12px;
  margin-bottom: 30px;
  color: #36454f;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.grand-title {
  font-size: 48px;
  font-weight: bold;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-weight: 600;
}

.carrousel {
  width: 1000px;
  overflow: hidden;
  border-radius: 10px;
}

.carrousel-refuge {
  width: 600px;
}

#carrousel-main {
  margin: 60px auto;
}

.slides {
  display: inline-flex;
  transition: transform 0.8s ease-in-out;
}

.slides img {
  width: 1000px;
  height: 500px;
  object-fit: cover;
}

.slides-refuge img {
  width: 600px;
  height: 400px;
}

.description {
  max-width: 600px;
  margin: auto;
}

.text-gray { color: #4b5563}

.text-sm {
  font-size: 14px;
  color: #4b5563;
}

.subtext {
  color: #4b5563;
  font-size: 12px;
}

.center {
  text-align: center;
}

.img-content {
  border-radius: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.grid-content {
  padding: 12px 32px 4px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  background: #e58e26;
  color: #fff;
  padding: 14px 26px;
  border-radius: 2px;
}

.price {
  font-weight: bold;
  font-size: 32px;
}

footer {
  color: #9ca3af;
  background-color: #36454f;
  font-size: 12px;
}

@media (min-width: 400px) {
  .carrousel { display: none;}
}

@media (min-width: 800px) {
  .carrousel { display: block;}
}