
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f5f0ed;
  color: #1C1B1A;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== CONTAINER GLOBAL ===== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   HEADER (Emergent style)
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: rgba(251, 247, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 1000;
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 20px;
  color: #3E4B37;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.menu a {
  position: relative;
  font-size: 14px;
  color: rgba(28,27,26,.85);
  padding: 10px 2px;
}

.menu a:hover {
  color: #3E4B37;
}

.menu a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: #3E4B37;
  border-radius: 2px;
}

/* =========================
   HERO (Emergent style)
========================= */

.hero {
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 76px; /* compensar header fixo */
  background: url("../img/hero.png") center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.30); /* overlay escuro */
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36%;
 /* background: linear-gradient(
    to bottom,
    rgba(251,247,244,0),
    rgba(251,247,244,.92),
    rgba(251,247,244,1)
  );  fade branco embaixo */
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 18px;
  max-width: 980px;
  z-index: 2;
}

.hero-title {
    font-size: 72px;
  letter-spacing: 1px; /* plus chic que 2px */
  color: rgba(255,255,255,.82);
}

.story-text h2 {
  font-size: 44px;
  line-height: 1.15;
}

.footer-cta h2 {
  font-size: 52px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 22px;
  color: rgba(255,255,255,.82);
  line-height: 1.4;
  margin-bottom: 26px;
  margin-top: -100px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  min-width: 290px;
  transition: .18s ease;
}

.btn-hero-primary {
  background: #D74E2A;
  color: #fff;
  border: 1px solid transparent;
}

.btn-hero-primary:hover {
  filter: brightness(.96);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.75);
}

.btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

.btn-arrow {
  margin-left: 10px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
  .menu { display: none; } /* depois fazemos menu mobile */
  .hero-title { font-size: 48px; }
  .hero-subtitle { font-size: 16px; }
  .btn-hero { min-width: 240px; }
}

/* =========================
   HOME – CARDS
========================= */

.home-cards {
  background: #fbf7f4;
  padding: 80px 0 120px;
  margin-top: -60px; /* cola visualmente no hero */
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: #3E4B37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-icon img {
  width: 28px;
  height: 28px;
}

.card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #3E4B37;
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 960px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   HOME – STORY
========================= */

.home-story {
  background: #f5f1e9;
  padding: 120px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text h2 {
  font-size: 44px;
  font-weight: 700;
  color: #3E4B37;
  margin-bottom: 24px;
  line-height: 1.1;
}

.story-text p {
  font-size: 16px;
  margin-bottom: 18px;
  color: #2f2f2f;
}

.btn-story {
  display: inline-block;
  margin-top: 18px;
  background: #3E4B37;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
}

.btn-story:hover {
  filter: brightness(.95);
}

.story-image img {
  border-radius: 18px;
  width: 100%;
  height: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 960px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-text h2 {
    font-size: 32px;
  }
}

/* =========================
   FOOTER (Emergent style)
========================= */

.footer {
  background: #3E4B37;
  color: rgba(255,255,255,.82);
  padding: 90px 0 40px;
}

.footer-cta {
  text-align: center;
  padding: 10px 0 70px;
}

.footer-cta h2 {
  font-size: 54px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.footer-cta p {
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: 16px;
  color: rgba(255,255,255,.70);
  line-height: 1.6;
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #D74E2A;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 22px;
}

.btn-footer:hover {
  filter: brightness(.96);
}

/* grid do rodapé */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1.2fr;
  gap: 90px;
  padding: 0 0 40px;
}

.footer-brand {
  font-size: 26px;
  letter-spacing: 1px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-text {
  max-width: 420px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.8;
}

.footer-title {
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
}

/* contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.5;
}

.footer-item a {
  color: rgba(255,255,255,.68);
}
.footer-item a:hover { color: #ffffff; }

.fi {
  opacity: .9;
}

/* social */
.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}

.footer-social a:hover {
  border-color: rgba(255,255,255,.35);
  color: #ffffff;
}

/* divider + copy */
.footer-bottom {
  padding-top: 18px;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.16);
  margin: 0 0 18px;
}

.footer-copy {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,.58);
}

/* responsive */
@media (max-width: 980px) {
  .footer-cta h2 { font-size: 34px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================
   TYPOGRAPHIE – BRAND KIT
========================= */

h1, h2, h3, h4,
.hero-title,
.footer-cta h2,
.story-text h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0;
}



/* Le Lieu */

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 900px; }
.section { padding: 80px 0; }
.section-light { background: #F5F0ED; }
.section-white { background: #FFFFFF; }

.section-title {
  font-size: 34px;
  margin-bottom: 20px;
}

.page-hero {
  height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.page-hero-overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,0.35);
}

.page-hero-content{
  position:relative;
  text-align:center;
  color:#fff;
}

.page-hero-content h1{
  font-size: 64px;
  color:#fff;
  margin-bottom:10px;
}

.page-hero-content p{
  font-size: 18px;
  opacity:.95;
}

.info-card{
  margin-top: 38px;
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  display:flex;
  gap:18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.info-card.alt{
  background: #EAE8E2;
  box-shadow: none;
}

.info-icon{
  width: 44px;
  height: 44px;
  background: #3E4B37;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 44px;
  margin-top: 4px;
}

.info-card h3{
  font-size: 24px;
  margin-bottom: 10px;
}

.two-cols{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items:center;
}

.img-card img{
  width: 100%;
  border-radius: 14px;
  display:block;
}

.title-icon{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 16px;
}

.title-icon h2{
  font-size: 38px;
  margin:0;
}

.btn{
  display:inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration:none;
  font-weight:600;
  margin-top: 18px;
}

.btn-green{
  background:#3E4B37;
  color:#fff;
}

.center-title{
  text-align:center;
  font-size: 44px;
  margin-bottom: 40px;
}

.values-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card{
  background:#fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}

.value-card h3{
  margin-bottom: 8px;
  font-size: 22px;
}

@media (max-width: 980px){
  .two-cols{ grid-template-columns: 1fr; }
  .values-grid{ grid-template-columns: 1fr; }
  .page-hero-content h1{ font-size: 44px; }
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-social a:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.footer-social a:hover svg {
  opacity: 1;
}

:root{
  /* Brand kit */
  --link: #dbe0dc;
  --btn: #90907e;
  --btnText: #ffffff;
  --title: #393d27;
  --text: #100f0f;

  --bg1: #fbf7f4;
  --bg2: #f5f0ed;
  --white: #ffffff;

  --promo: #ED0000;
  --forest: #393d27;     /* titres / accents */
  --deep: #2f3b2b;       /* footer background approx */
  --accent: #d35a33;     /* bouton orange style print */
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg2);
  color: var(--text);
}

h1,h2,h3{
  font-family: "Ubuntu", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--title);
  margin:0;
}

a{ color: inherit; text-decoration:none; }
img{ display:block; width:100%; height:100%; object-fit:cover; }

.container{
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* HEADER */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg2);
  border-bottom: 1px solid rgba(16,15,15,.06);
}

.header__inner{
  height: 78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}

.brand__word{
  font-family:"Ubuntu";
  font-weight:700;
  letter-spacing: .14em;
  font-size: 18px;
  color: var(--forest);
}

.nav{
  display:flex;
  align-items:center;
  gap: 24px;
}

.nav__link{
  font-size: 15px;
  color: rgba(16,15,15,.85);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}

.nav__link.is-active{
  border-bottom-color: var(--forest);
  color: var(--forest);
  font-weight: 600;
}

/* HERO */
.page-hero{
  position: relative;
  height: 520px;
  overflow:hidden;
  background: #000;
}

.page-hero__bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.page-hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.35));
}

.page-hero__content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap: 14px;
}

.page-hero__title{
  font-size: clamp(44px, 5vw, 66px);
  color: #fff;
  letter-spacing: .02em;
}

.page-hero__subtitle{
  margin:0;
  font-size: 20px;
  color: rgba(255,255,255,.9);
  font-weight: 400;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}

.btn--lg{ padding: 14px 22px; min-width: 320px; }
.btn--accent{ background: var(--accent); color: #fff; }
.btn--accent:hover{ filter: brightness(1.02); transform: translateY(-1px); }

.btn--primary{
  background: var(--forest);
  color: #fff;
}
.btn--primary:hover{ filter: brightness(1.05); transform: translateY(-1px); }

.btn--full{ width:100%; }

/* SECTION */
.section{
  padding: 46px 0 70px;
  background: var(--bg2);
}

/* CARDS GRID */
.grid-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card{
  background: var(--white);
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(16,15,15,.10);
  border: 1px solid rgba(16,15,15,.06);
}

.card__media{
  position: relative;
  aspect-ratio: 16/10;
  display:block;
}

.pill{
  position:absolute;
  top: 14px;
  right: 14px;
  background: rgba(57,61,39,.95);
  color:#fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.card__body{
  padding: 22px 22px 20px;
}

.card__title{
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.card__text{
  margin: 0 0 18px;
  color: rgba(16,15,15,.78);
  font-size: 16px;
  line-height: 1.55;
}

.card__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(16,15,15,.78);
}

.meta{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 16px;
}

.meta__icon{
  width: 22px;
  height: 22px;
  color: rgba(16,15,15,.42);
}

/* CTA BAND */
.cta-band{
  background: #3b4a33;
  color: #fff;
  padding: 72px 0;
  text-align:center;
}

.cta-band__inner{
  display:flex;
  flex-direction:column;
  gap: 14px;
  align-items:center;
}

.cta-band__title{
  color:#fff;
  font-size: 44px;
}

.cta-band__text{
  margin:0;
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 780px;
  line-height: 1.6;
}

/* FOOTER */
.footer{
  background: #3b4a33;
  color: rgba(255,255,255,.86);
  padding: 62px 0 28px;
}

.footer__grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 42px;
}

.footer__brand{
  font-family:"Ubuntu";
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
}

.footer__title{
  font-family:"Ubuntu";
  font-weight: 700;
  color:#fff;
  font-size: 18px;
  margin-bottom: 14px;
}

.footer__links{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.footer__links a{
  color: rgba(255,255,255,.82);
}

.footer__links a:hover{
  color: #fff;
}

.footer__contact{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.fitem{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
}

.fitem__icon{
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: rgba(255,255,255,.82);
}

.footer__social{
  display:flex;
  gap: 14px;
  margin-top: 8px;
}

.social{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
}

.social svg{ width: 18px; height: 18px; }

.footer__bottom{
  margin-top: 30px;
  text-align:center;
}

.footer__line{
  height:1px;
  background: rgba(255,255,255,.18);
  margin-bottom: 18px;
}

.footer__copy{
  color: rgba(255,255,255,.72);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .grid-cards{ grid-template-columns: repeat(2, 1fr); }
  .footer__grid{ grid-template-columns: 1fr; }
  .nav{ gap: 14px; }
}

@media (max-width: 640px){
  .grid-cards{ grid-template-columns: 1fr; }
  .page-hero{ height: 460px; }
  .btn--lg{ min-width: 0; width: 100%; }
  .nav{ display:none; } /* depois a gente faz menu mobile */
}

.section-head{
  margin: 10px 0 22px;
  text-align: left;
}

.section-head__title{
  font-size: 34px;
  margin-bottom: 6px;
}

.section-head__subtitle{
  margin: 0;
  color: rgba(16,15,15,.72);
  font-size: 16px;
  line-height: 1.55;
  max-width: 720px;
}

.section-divider{
  height: 1px;
  background: rgba(16,15,15,.10);
  margin: 44px 0 38px;
}

/* =========================
   HEBERGEMENT DETAIL PAGE
========================= */

.detail-hero{
  position: relative;
  height: 520px;
  overflow: hidden;
}

.detail-hero__bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.detail-hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 50% 45%, rgba(16,15,15,.55) 0%, rgba(16,15,15,.35) 45%, rgba(16,15,15,.25) 100%),
    linear-gradient(to bottom, rgba(16,15,15,.35), rgba(16,15,15,.40));
}

.detail-hero__content{
  position:absolute; inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 10px;
  color: #fff;
  text-align:center;
  padding: 0 16px;
}

.detail-hero__kicker{
  letter-spacing:.12em;
  text-transform: uppercase;
  opacity:.9;
  font-size: 12px;
  margin: 0;
    color: #ffffff;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.detail-hero__title{
  margin: 0;
  font-size: 56px;
  line-height: 1.02;
    color: #ffffff;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.detail-hero__subtitle{
  margin: 0;
  font-size: 18px;
  opacity: .95;
    color: #ffffff;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.detail-hero__actions{
  margin-top: 10px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: wrap;
}

.btn--link{
  color: rgba(255,255,255,.92);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 12px 8px;
}
.btn--link:hover{ opacity: .85; }

.elloha-cta{
  display:flex;
  align-items:center;
  justify-content:center;
}


/* Card topo */
.detail-card{
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(16,15,15,.08);
  padding: 26px;
  margin-top: -46px;
  position: relative;
}

.detail-card__grid{
  display:grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 26px;
}

.detail-title{
  margin: 0 0 10px;
  font-size: 30px;
}

.detail-text{
  margin: 0 0 18px;
  color: rgba(16,15,15,.78);
  line-height: 1.7;
}

.detail-muted{
  margin: 0;
  color: rgba(16,15,15,.65);
  line-height: 1.6;
}

.detail-highlights{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 12px 0 18px;
}

.highlight{
  background: #f5f0ed;
  border-radius: 12px;
  padding: 10px 12px;
  min-width: 160px;
}

.highlight__label{
  display:block;
  font-size: 12px;
  opacity: .7;
  margin-bottom: 2px;
}

.highlight__value{
  font-weight: 600;
}

.detail-cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Sidebar */
.detail-info{
  background: #fbf7f4;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(16,15,15,.08);
}

.detail-info__title{
  margin: 0 0 10px;
  font-size: 18px;
}

.detail-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(16,15,15,.78);
  line-height: 1.7;
}

.detail-sep{
  height:1px;
  background: rgba(16,15,15,.10);
  margin: 14px 0;
}

/* Sections */
.detail-section{
  padding: 34px 0 0;
}

.detail-section__head{
  margin-bottom: 16px;
}

/* Gallery */
.detail-gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.detail-gallery__item{
  border-radius: 14px;
  overflow: hidden;
  display:block;
  box-shadow: 0 10px 24px rgba(16,15,15,.08);
}

.detail-gallery__item img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display:block;
  transition: transform .35s ease;
}

.detail-gallery__item:hover img{
  transform: scale(1.03);
}

/* Equip cols */
.detail-cols{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.detail-box{
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(16,15,15,.08);
  box-shadow: 0 10px 24px rgba(16,15,15,.06);
}

.detail-box--wide{
  grid-column: 1 / -1;
}

.detail-box__title{
  margin: 0 0 10px;
  font-size: 18px;
}

/* Booking */
.detail-booking{
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(16,15,15,.08);
  box-shadow: 0 10px 24px rgba(16,15,15,.06);
}

/* Footer social buttons */
.footer-social{
  display:flex;
  gap: 12px;
  margin-top: 12px;
}

.social-btn{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  transition: transform .18s ease, background .18s ease;
}

.social-btn svg{
  width: 18px;
  height: 18px;
}

.social-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
}

/* Responsive */
@media (max-width: 980px){
  .detail-card__grid{ grid-template-columns: 1fr; }
  .detail-hero__title{ font-size: 42px; }
  .detail-gallery{ grid-template-columns: 1fr; }
  .detail-gallery__item img{ height: 220px; }
  .detail-cols{ grid-template-columns: 1fr; }
  .detail-box--wide{ grid-column: auto; }
}

/* =========================
   GROUPE (groupe.html)
========================= */

.page-hero--groupe .page-hero__overlay{
  opacity: .50; /* deixa o texto super legível no hero */
}

/* Intro */
.groupe-intro{
  text-align: center;
  max-width: 980px;
}

.groupe-intro__text{
  margin: 18px auto 0;
  max-width: 860px;
  line-height: 1.9;
  font-size: 18px;
  opacity: .92;
}

.groupe-title{
  font-family: "Ubuntu", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--title, #393d27);
  font-size: 44px;
  line-height: 1.15;
  margin: 0;
}

.groupe-title--center{
  text-align: center;
  margin-bottom: 26px;
}

/* Cards Formules */
.groupe-cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.groupe-card{
  background: #f5f0ed;
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.groupe-card__title{
  font-family: "Ubuntu", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 16px 0 10px;
  font-size: 26px;
  color: var(--title, #393d27);
}

.groupe-card__text{
  margin: 0;
  line-height: 1.7;
  opacity: .9;
}

/* Ícone círculo */
.groupe-icon{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #3e4a36; /* verde profundo */
  color: #fbf7f4;      /* bege (stroke do svg) */
}

.groupe-icon svg{
  width: 28px;
  height: 28px;
}

/* Split (Capacités) */
.groupe-split{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}

.groupe-split__img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  display: block;
}

.cap-card{
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  margin-top: 18px;
}

.cap-card__title{
  font-family: "Ubuntu", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0 0 10px;
  font-size: 26px;
  color: var(--title, #393d27);
}

.cap-card__subtitle{
  font-weight: 700;
  margin-bottom: 10px;
}

.cap-card__text{
  margin: 0;
  line-height: 1.7;
  opacity: .9;
}

/* Services */
.services-cards{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.service-card{
  background: #f5f0ed;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.service-icon{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: #3e4a36;
  color: #fbf7f4;
}

.service-icon svg{
  width: 28px;
  height: 28px;
}

.service-card__title{
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

/* Partner box */
.partner-box{
  margin-top: 26px;
  background: #e9e5df;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
}

.partner-box__title{
  font-family: "Ubuntu", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0 0 12px;
  font-size: 30px;
  color: var(--title, #393d27);
}

.partner-box__text{
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  opacity: .92;
}

/* CTA final */
.cta-section{
  background: #3e4a36;
  color: #fbf7f4;
  padding: 76px 0;
}

.cta-section__inner{
  text-align: center;
}

.cta-section__title{
  font-family: "Ubuntu", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 46px;
  line-height: 1.1;
  margin: 0;
  color: #fbf7f4;
}

.cta-section__text{
  margin: 14px auto 26px;
  max-width: 860px;
  line-height: 1.8;
  opacity: .92;
}

/* Responsivo */
@media (max-width: 980px){
  .groupe-cards{ grid-template-columns: 1fr; }
  .services-cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .groupe-split{ grid-template-columns: 1fr; }
  .groupe-title{ font-size: 36px; }
  .cta-section__title{ font-size: 38px; }
}

@media (max-width: 560px){
  .services-cards{ grid-template-columns: 1fr; }
}

/* =========================================
   AUTOUR — FIX "Lieux d’Intérêt"
   (override seguro, sem mudar HTML)
========================================= */

.cards-grid.cards-grid--3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:24px;
  align-items:stretch;
}

@media (max-width: 980px){
  .cards-grid.cards-grid--3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  .cards-grid.cards-grid--3{ grid-template-columns: 1fr; }
}

.info-card{
  background:#ffffff;
  border-radius:14px;
  padding:22px 22px 20px;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.04);
  min-height: 160px;

  /* importantíssimo: evita "distorção" */
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* topo: ícone à esquerda e distância à direita */
.info-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* ícone redondinho */
.icon-circle{
  width:44px;
  height:44px;
  border-radius:999px;
  background:#393d27;   /* Titres */
  color:#fbf7f4;        /* Fond 1 */
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  overflow:hidden;
}

.icon-circle svg{
  width:22px;
  height:22px;
  display:block;
}

/* distância fixa e alinhada */
.distance-badge{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  color: rgba(16,15,15,.65);
  white-space: nowrap;
  flex:0 0 auto;
}

/* títulos e textos consistentes */
.info-card__title{
  margin: 0;
  font-family: Ubuntu, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.15;
  color:#393d27;
}

.info-card__text{
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(16,15,15,.75);
  max-width: 46ch;
}

/* ================================
   Info Card – Link "Découvrir"
================================ */

.info-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-top: 12px;

  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;

  color: #3E4B37; /* Vert forêt (brand) */
  text-decoration: none;

  border-bottom: 1px solid rgba(62, 75, 55, 0.35);
  padding-bottom: 2px;

  transition: 
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

/* Petite flèche discrète */
.info-card__link::after {
  content: "→";
  font-size: 0.9em;
  transition: transform 0.25s ease;
}

/* Hover élégant */
.info-card__link:hover {
  color: #1C1B1A; /* Anthracite */
  border-color: #1C1B1A;
}

.info-card__link:hover::after {
  transform: translateX(4px);
}

/* Focus clavier (accessibilité) */
.info-card__link:focus-visible {
  outline: none;
  border-bottom: 2px solid #3E4B37;
}
.info-card__link {
  opacity: 0.85;
}

.info-card:hover .info-card__link {
  opacity: 1;
}
/* =========================
   MOBILE MENU (burger)
   ========================= */

/* Burger só aparece no mobile */
/* ===== BURGER BUTTON ===== */
.burger {
  display: none;
  width: 32px;
  height: 22px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #393d27;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 10px;
}

.burger span:nth-child(3) {
  bottom: 0;
}

/* Burger → X */
.burger.is-open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

@media (max-width: 920px){
  .nav--desktop { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
}

/* Overlay full screen */
.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;            /* fechado por default */
  pointer-events: none;
}

/* Quando aberto (via JS: .is-open) */
.mobile-menu.is-open{
  display: block;
  pointer-events: auto;
}

/* Fundo escuro pra legibilidade */
.mobile-menu::before{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(16, 15, 15, 0.65);   /* Textes (#100f0f) com alpha */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Painel do menu */
.mobile-menu__panel{
  position: relative;
  width: min(92vw, 420px);
  height: 100%;
  margin-left: auto; /* abre pela direita */
  background: #fbf7f4; /* Fond 1 */
  box-shadow: -20px 0 60px rgba(0,0,0,.25);
  padding: 18px 18px 28px;
  transform: translateX(12px);
  animation: menuSlideIn .18s ease-out forwards;
}

@keyframes menuSlideIn{
  from { transform: translateX(24px); opacity: .6; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* Topo: brand + close */
.mobile-menu__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(57, 61, 39, 0.12);
}

.mobile-menu__brand{
  font-family: "Ubuntu", system-ui, sans-serif;
  letter-spacing: .08em;
  font-weight: 700;
  color: #3e4b37;
  font-size: 14px;
}

.mobile-menu__close{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(57, 61, 39, 0.14);
  background: #f5f0ed; /* Fond 2 */
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: #393d27;
}

/* Nav links */
.mobile-menu__nav{
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu__nav a{
  display: block;
  padding: 14px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: #100f0f;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
  background: #eae8e2;
  transition: background .15s ease, transform .15s ease;
}

.mobile-menu__nav a:hover{
  background: rgba(144, 144, 126, 0.14); /* Boutons (#90907e) alpha */
  transform: translateX(2px);
}

/* Active link (se você usar .is-active no link da página atual) */
.mobile-menu__nav a.is-active{
  background: rgba(144, 144, 126, 0.22);
  color: #d74e2a;
}

/* (Opcional) trava scroll quando menu aberto */
body.menu-open{
  overflow: hidden;
}

/* ===== CONTACT PAGE ===== */

.section-title--center { text-align: center; }

.faq-list{
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 28px auto 0;
}

.faq-card{
  background: #f5f0ed;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.faq-card__title{
  margin: 0 0 10px;
  font-family: Ubuntu, sans-serif;
  color: #393d27;
  font-weight: 600;
  font-size: 20px;
}

.faq-card__text{
  margin: 0;
  font-family: Montserrat, sans-serif;
  color: #100f0f;
  line-height: 1.6;
}

/* grid principal */
.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.contact-card{
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.contact-card__title{
  margin: 0 0 18px;
  font-family: Ubuntu, sans-serif;
  color: #393d27;
  font-weight: 600;
  font-size: 34px;
}

.contact-form{
  display: grid;
  gap: 14px;
}

.field span{
  display: inline-block;
  margin-bottom: 8px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  color: #100f0f;
}

.field em{ color:#ED0000; font-style: normal; }

.field input,
.field textarea{
  width: 100%;
  border: 1px solid #eee7e2;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  outline: none;
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(144,144,126,.6);
  box-shadow: 0 0 0 4px rgba(144,144,126,.15);
}

.btn--full{ width: 100%; }

.form-note{
  margin: 6px 0 0;
  color: rgba(16,15,15,.6);
  font-family: Montserrat, sans-serif;
  font-size: 13px;
}

.form-alert{
  background: #f5f0ed;
  border: 1px solid #eee7e2;
  color: #100f0f;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: Montserrat, sans-serif;
  margin-bottom: 12px;
}

/* anti-spam hidden field */
.hp-field{
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

/* coluna direita */
.contact-side{
  display: grid;
  gap: 18px;
}

.contact-info-card{
  background: #393d27; /* brand title color */
  color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.contact-info-card__title{
  margin: 0 0 18px;
  font-family: Ubuntu, sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
}

.contact-info-row{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.contact-info-ico{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
}

.contact-info-ico svg{
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.contact-info-label{
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  opacity: .95;
  margin-bottom: 2px;
}

.contact-info-value{
  font-family: Montserrat, sans-serif;
  opacity: .9;
}

.contact-info-value a{ color:#ffffff; text-decoration: underline; }

.contact-hours-card{
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.contact-hours-card__title{
  margin: 0 0 10px;
  font-family: Ubuntu, sans-serif;
  color: #393d27;
  font-weight: 600;
  font-size: 26px;
}

.contact-hours-card__text{
  margin: 0 0 12px;
  font-family: Montserrat, sans-serif;
  color: #100f0f;
  line-height: 1.6;
}

.contact-hours-card__muted{
  margin: 0;
  font-family: Montserrat, sans-serif;
  color: rgba(16,15,15,.55);
}

/* responsive */
@media (max-width: 920px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-card__title{ font-size: 28px; }
  .contact-info-card__title{ font-size: 26px; }
}

.hp-field{
  position:absolute !important;
  left:-9999px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

/* Mentions légales */
.legal {
  max-width: 920px;
}

.legal__card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  margin: 0 0 16px 0;
}

.legal__card h2 {
  margin: 0 0 10px 0;
}

.legal__card p {
  margin: 0 0 10px 0;
  line-height: 1.7;
}

.legal__card a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__updated {
  margin-top: 18px;
  opacity: .8;
  font-size: .95rem;
}
