:root{
  /* modern, refined palette */
  --bg:#efe6dc; /* castanho claro suave (destacado) */
  --card:#ffffff;
  --muted:#7b6f78;
  --accent:#9b7fb7; /* muted mauve */
  --accent-2:#f7e8eb; /* soft rose */
  --accent-3:#e7f3fb; /* pale sky */
  --text:#2c2227;
  --radius:16px;
  --glass: rgba(255,255,255,0.72);
  --soft-shadow: 0 6px 20px rgba(40,30,40,0.06);
  --deep-shadow: 0 18px 48px rgba(40,30,40,0.10);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

/* global reset */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
  font-size:16px;
  -webkit-font-feature-settings: "kern";
  font-kerning:normal;
  -webkit-font-smoothing:antialiased;
}

/* Layout container */
.container{max-width:1100px;margin:0 auto;padding:36px;}

/* HERO */
.hero{
  position:relative;
  padding:48px 0;
  overflow:hidden;
  min-height:460px;
  display:flex;
  align-items:center;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
  filter: brightness(0.62) saturate(.96) contrast(0.98);
  transform:translateZ(0);
  /* disable continuous transform to reduce GPU usage at runtime */
  transition:none;
}
.hero-inner{
  position:relative;
  z-index:1;
  display:flex;
  gap:36px;
  align-items:center;
  justify-content:space-between;
  background: transparent;
  padding:28px;
  border-radius:20px;
  box-shadow:var(--deep-shadow);
  transition:transform .35s ease;
}
.hero-inner:hover{transform:translateY(-4px)}
.hero-content{flex:1;min-width:0;padding:6px 8px}
.hero-title{
  font-family: 'Playfair Display', serif;
  font-size:48px;
  margin:0 0 8px 0;
  color:#fff;
  letter-spacing:0.2px;
  line-height:1.03;
  text-shadow: 0 6px 18px rgba(20,12,18,0.6);
}
.hero-sub{
  margin:10px 0 20px;
  color:rgba(255,255,255,0.9);
  font-weight:500;
  max-width:70%;
  font-size:16px;
}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;align-items:center}
.btn{
  display:inline-flex;align-items:center;gap:10px;padding:12px 18px;border-radius:12px;text-decoration:none;
  font-weight:600;cursor:pointer;transition:transform .18s cubic-bezier(.2,.9,.2,1), box-shadow .22s ease, opacity .12s;
  box-shadow: var(--soft-shadow);
  will-change:transform;
}
.btn .icon{font-size:18px;display:inline-block}
.btn-primary{
  /* brown / castanho primary */
  background: linear-gradient(180deg,#7a4f3a,#5b3828);
  color:#fff;
  border:0;
  padding:12px 20px;
  border-radius:14px;
  box-shadow: 0 10px 30px rgba(90,50,30,0.18);
  backdrop-filter: blur(4px);
}
.btn-primary:hover{transform:translateY(-6px) scale(1.01);box-shadow:0 26px 64px rgba(0,0,0,0.18)}
.btn-secondary{
  background:rgba(255,255,255,0.14);border:1px solid rgba(255,255,255,0.12);color:#fff;
  padding:10px 16px;border-radius:14px;
  backdrop-filter: blur(4px);
}
.btn-secondary:hover{transform:translateY(-4px);opacity:.98}
.btn.wide{width:100%;justify-content:center}

/* NEW: promo button - highlighted seasonal style */
.btn-promo{
  background: linear-gradient(180deg, #ffeedd, #ffd9c8);
  color: #4a2f3f;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid rgba(74,47,63,0.08);
  box-shadow: 0 12px 40px rgba(189,118,96,0.10);
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:transform .18s ease, box-shadow .18s ease;
}
.btn-promo:hover{transform:translateY(-6px);box-shadow:0 28px 72px rgba(189,118,96,0.14)}

.hero-note{margin-top:16px;color:rgba(255,255,255,0.9);font-size:14px}

/* HERO MEDIA */
.hero-media{
  width:400px;flex-shrink:0;
  background: transparent;
  border-radius:18px;padding:10px;
  box-shadow: var(--deep-shadow);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  position:relative;
  z-index:1;
}
.hero-media img{
  width:100%;height:460px;object-fit:cover;border-radius:12px;display:block;
  border:1px solid rgba(0,0,0,0.04);
  transition:transform .7s cubic-bezier(.2,.9,.2,1);
}
.hero-media img:hover{transform:scale(1.03)}

/* WHO */
.who{
  padding:36px 0;
  /* gentle panel look */
  background: linear-gradient(180deg, rgba(255,255,255,0.66), rgba(255,250,248,0.35));
  border-radius:20px;
  padding:32px;
  box-shadow: 0 16px 40px rgba(60,40,50,0.04);
  border:1px solid rgba(155,127,183,0.05);
  margin:18px 0;
}
.who-grid{
  display:flex;
  gap:28px;
  align-items:center;
  flex-wrap:wrap;
  align-items:stretch;
}
.who-text{
  flex:1;
  min-width:280px;
  padding:8px 6px;
}
.who-text h2{
  font-family:'Playfair Display', serif;
  margin:0 0 10px;
  font-size:28px;
  color: #5b3f4f;
  letter-spacing:0.2px;
}
.lead{
  color:var(--muted);
  margin-bottom:16px;
  max-width:84%;
  font-size:15px;
  background: linear-gradient(90deg, rgba(155,127,183,0.04), rgba(247,232,235,0.02));
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(155,127,183,0.04);
  box-shadow: 0 8px 24px rgba(109,61,94,0.03);
}
.who-list{
  list-style:none;
  padding:0;
  margin:18px 0 0 0;
  color:var(--muted);
  display:grid;
  gap:10px;
  font-size:15px;
}
.who-list li{
  padding:8px 12px;
  border-radius:12px;
  background: rgba(255,255,255,0.6);
  border:1px solid rgba(155,127,183,0.03);
  box-shadow: 0 6px 18px rgba(99,65,90,0.03);
}
.who-highlight{
  width:260px;
  text-align:center;
  padding:22px;
  border-radius:16px;
  background: linear-gradient(180deg, rgba(255,246,248,0.9), rgba(247,232,235,0.9));
  box-shadow: 0 14px 36px rgba(109,61,94,0.04);
  border:1px solid rgba(155,127,183,0.06);
  align-self:center;
}
.badge{
  font-family:'Playfair Display';
  font-size:20px;
  background:linear-gradient(180deg, #fff, rgba(255,255,255,0.9));
  display:inline-block;
  padding:10px 20px;
  border-radius:999px;
  color:#6d3d5e;
  box-shadow:0 10px 28px rgba(109,61,94,0.06);
  border:1px solid rgba(155,127,183,0.06);
}

/* CHALLENGES */
.challenges{padding:28px 0}
.challenges {
  padding:28px 0;
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:22px;
  align-items:start;
}
.challenges h2{font-family:'Playfair Display', serif;margin-bottom:12px;font-size:22px}
.muted{color:var(--muted)}
.cards-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:18px}
.challenges-head{display:flex;flex-direction:column;gap:12px}
/* top media (new) */
.challenges-top-media{
  width:100%;
  max-width:880px;
  margin:0 auto;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(60,40,50,0.06);
  border:1px solid rgba(155,127,183,0.06);
  background:var(--card);
  display:block;
}
.challenges-top-media img{width:100%;height:auto;display:block;object-fit:cover;aspect-ratio:16/7}

.challenges-media{
  width:100%;
  max-width:320px;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 18px 44px rgba(55,40,60,0.06);
  border:1px solid rgba(155,127,183,0.06);
  background:var(--card);
  align-self:start;
}
.challenges-media img{width:100%;height:100%;object-fit:cover;display:block}

/* BOOKING - modern elegant cards */
.booking{padding:40px 0}
.booking .subtle{margin-top:6px;margin-bottom:18px;color:var(--muted);max-width:760px}

.booking-grid{display:flex;gap:20px;flex-wrap:wrap;align-items:stretch}
.booking-grid.modern .booking-card{flex:1;min-width:300px}

.booking-card.elegant{
  background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,247,250,0.98));
  border-radius:18px;padding:20px 20px 18px;box-shadow:0 18px 44px rgba(55,40,60,0.06);
  border:1px solid rgba(155,127,183,0.06);display:flex;flex-direction:column;justify-content:space-between;
  transition:transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s ease;
}
.booking-card.elegant:hover{transform:translateY(-10px);box-shadow:0 34px 80px rgba(55,40,60,0.08)}
.card-head{display:flex;align-items:center;gap:14px;margin-bottom:12px}
.icon-circle{width:56px;height:56px;border-radius:12px;background:linear-gradient(180deg,var(--accent-2),#fff);display:flex;align-items:center;justify-content:center;font-size:22px;box-shadow:0 8px 20px rgba(155,127,183,0.06)}
.card-title h3{margin:0;font-size:18px;font-family:'Playfair Display', serif;color:#3b2f37}
.card-sub{font-size:13px}
.price{margin-left:auto;color:#5b3f4f;font-weight:700;font-size:14px}

.card-features{list-style:none;padding:0;margin:6px 0 16px 0;color:var(--muted);display:grid;gap:8px;font-size:14px}
.card-features li{padding-left:6px;position:relative}
.card-features li:before{content:"•";position:absolute;left: -8px;color:var(--accent)}

.card-actions{display:flex;align-items:center;gap:12px}
.card-actions .btn{padding:10px 14px;border-radius:12px;box-shadow:0 12px 34px rgba(129,94,158,0.08)}
.card-actions .selo{margin-left:auto;background:transparent;padding:6px 10px;border-radius:10px;font-weight:600;color:var(--muted);border:1px solid rgba(60,48,56,0.04)}

@media (max-width:980px){
  .booking{padding:28px 0}
  .challenges{grid-template-columns:1fr;gap:14px}
  .challenges-media{max-width:100%}
  .challenges-top-media{max-width:100%;border-radius:12px}
  .booking-grid{flex-direction:column}
  .card-head{gap:12px}
  .icon-circle{width:48px;height:48px;font-size:18px}
}

/* SOCIALS - modern highlighted contact grid */
.socials{padding:20px 0}
.social-head{max-width:820px;margin-bottom:14px}
.social-head h2{font-family:'Playfair Display', serif;margin:0 0 6px;font-size:22px;color:#4a2f3f}
.social-head .muted{margin:0;color:var(--muted)}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:12px;
}

/* contact card */
.contact-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px;
  border-radius:14px;
  color:#fff;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(40,30,40,0.06);
  transition:transform .18s ease, box-shadow .18s ease;
  border:1px solid rgba(255,255,255,0.06);
}
.contact-card .cc-left{display:flex;align-items:center;gap:12px}
.cc-icon{
  width:52px;height:52px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:22px;
  background:rgba(255,255,255,0.12);backdrop-filter:blur(4px);
}
.cc-title{font-weight:700;font-size:15px}
.cc-action{font-size:13px;font-weight:600;opacity:0.95;padding:8px 10px;border-radius:10px;background:rgba(255,255,255,0.12);color:#fff}

/* color variations */
.contact-card.instagram{background:linear-gradient(90deg,#e56aa6,#c36aa6)}
.contact-card.linktree{background:linear-gradient(90deg,#a884d6,#6fb1e6)}
.contact-card.whatsapp{background:linear-gradient(90deg,#3ac66b,#1fa95a)}
.contact-card.info{background:linear-gradient(90deg,#f6b38a,#e67a7a);color:#2b1f1f}

.contact-card:hover{transform:translateY(-6px);box-shadow:0 30px 80px rgba(40,30,40,0.10)}
.contact-card:active{transform:translateY(-2px)}

/* responsive */
@media (max-width:980px){
  .contact-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:520px){
  .contact-grid{grid-template-columns:1fr;gap:10px}
  .cc-icon{width:44px;height:44px;font-size:18px}
  .cc-action{font-size:13px;padding:8px 8px}
}

/* INSPIRATIONAL */
.inspiration{padding:30px 0;text-align:center}
.inspire{font-family:'Playfair Display', serif;font-size:22px;margin:0;color:#47313f}
.spiritual{margin-top:10px;color:var(--muted)}
.signature{margin-top:8px;font-weight:600;color:#5b3f4f}

/* FOOTER */
.site-footer{
  padding:28px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,250,248,0.22));
  border-top: 1px solid rgba(155,127,183,0.06);
  backdrop-filter: blur(6px);
}
.footer-inner{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:18px 0;
}

/* grid of footer columns */
.footer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap:18px;
  align-items:start;
  width:100%;
  max-width:1100px;
  margin:0 auto;
}
.footer-col h4{
  margin:0 0 8px 0;
  font-family:'Playfair Display', serif;
  color:#4a2f3f;
  font-size:15px;
}
.footer-col.brand .brand-name{
  font-family:'Playfair Display', serif;
  font-size:18px;
  color:#3b2f37;
  font-weight:600;
}
.footer-col.brand .brand-sub{
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
}

/* links list */
.footer-col.links ul{
  list-style:none;padding:0;margin:0;display:grid;gap:8px;
}
.footer-col.links a{
  color:var(--muted);text-decoration:none;font-size:14px;
  transition:color .18s ease;
}
.footer-col.links a:hover{color:var(--accent);}

/* contact styling */
.footer-col.contact address{font-style:normal;color:var(--muted);display:grid;gap:6px;font-size:14px}
.footer-col.contact a{color:var(--muted);text-decoration:none}
.footer-col.contact a:hover{color:var(--accent);text-decoration:underline}

/* socials */
.socials-row{display:flex;gap:8px;flex-wrap:wrap}
.social-pill{
  background: rgba(155,127,183,0.09);
  color: #5b3f4f;
  padding:8px 12px;border-radius:999px;text-decoration:none;
  font-weight:600;font-size:13px;border:1px solid rgba(155,127,183,0.06);
}
.social-pill:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(109,61,94,0.04)}

/* footer bottom */
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  max-width:1100px;
  margin:0 auto;
  width:100%;
  padding-top:8px;
  border-top:1px solid rgba(60,48,56,0.04);
}
.footer-bottom .copyright{color:var(--muted);font-size:13px}
.footer-bottom .footer-links{display:flex;gap:12px}
.footer-bottom .footer-links a{color:var(--muted);text-decoration:none;font-size:13px}
.footer-bottom .footer-links a:hover{color:var(--accent)}

/* responsive */
@media (max-width:980px){
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:8px}
}
@media (max-width:520px){
  .footer-grid{grid-template-columns:1fr;gap:12px}
  .footer-col.brand .brand-name{font-size:16px}
  .footer-col h4{font-size:14px}
  .footer-bottom .footer-links{flex-wrap:wrap}
}

/* WhatsApp FAB - toned to match palette with subtle glow */
.whatsapp-fab{
  position:fixed;right:18px;bottom:18px;background:linear-gradient(180deg,var(--accent),#7a5fa0);
  color:#fff;width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  box-shadow:0 20px 52px rgba(122,95,160,0.12);text-decoration:none;z-index:60;
  transition:transform .18s ease, box-shadow .18s ease;
}
.whatsapp-fab:hover{transform:translateY(-6px);box-shadow:0 30px 80px rgba(122,95,160,0.14)}

/* Responsive */
@media (max-width:980px){
  .hero-inner{flex-direction:column-reverse;padding-bottom:8px}
  .hero-media{width:92%;max-width:520px}
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  .cards-grid .card{padding:14px}
  .who-grid{flex-direction:column-reverse}
  .booking-grid{flex-direction:column}
  .lead{max-width:100%}
}

@media (max-width:520px){
  .container{padding:18px}
  .hero-title{font-size:34px}
  .hero-sub{max-width:100%}
  .hero-media img{height:300px}
  .cards-grid{grid-template-columns:repeat(2,1fr);gap:10px}
  .btn{padding:12px 10px}
  .whatsapp-fab{right:14px;bottom:14px;width:52px;height:52px}
}

/* Small accessibility / focus */
.btn:focus{outline:3px solid rgba(155,127,183,0.16);outline-offset:3px;border-radius:12px}

/* New: who media (portrait) - carousel enabled */
.who-media{
  width:320px;
  flex-shrink:0;
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 14px 36px rgba(60,40,50,0.06);
  border:1px solid rgba(155,127,183,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,247,250,0.98));
  padding:8px;
  position:relative;
}

/* carousel track */
.who-media.carousel .carousel-track{
  display:flex;
  gap:8px;
  width:100%;
  will-change:transform;
  transition:transform .46s cubic-bezier(.2,.9,.2,1);
  touch-action:pan-y;
  align-items:center; /* center slides so full images can be shown without cropping */
}

/* carousel slides now preserve full image - contained and centered */
.carousel-slide{
  flex:0 0 100%;
  width:100%;
  max-height:360px;         /* limit height for layout consistency */
  height:auto;
  object-fit:contain;       /* show whole image without cropping */
  border-radius:10px;
  display:block;
  margin:0 auto;
  user-select:none;
  -webkit-user-drag:none;
}

/* controls */
.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background: rgba(255,255,255,0.82);
  color:var(--text);
  border:0;
  width:40px;
  height:40px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  box-shadow:0 8px 20px rgba(40,30,40,0.06);
  cursor:pointer;
  transition:transform .12s ease, opacity .12s ease;
}
.carousel-btn:hover{transform:translateY(-50%) scale(1.03)}
.who-media.carousel .prev{left:10px}
.who-media.carousel .next{right:10px}

/* dots */
.carousel-dots{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:10px;
  display:flex;
  gap:8px;
  z-index:6;
}
.carousel-dots .dot{
  width:10px;height:10px;border-radius:999px;border:0;background:rgba(255,255,255,0.6);
  box-shadow:0 6px 18px rgba(40,30,40,0.06);
  cursor:pointer;padding:0;
}
.carousel-dots .dot[aria-selected="true"]{background:var(--accent);transform:scale(1.14)}

/* responsive adjustments */
@media (max-width:980px){
  .who-media{width:92%;max-width:420px}
  .carousel-slide{height:320px}
}
@media (max-width:520px){
  .carousel-slide{height:260px}
  .carousel-btn{width:38px;height:38px;font-size:18px}
  .carousel-dots{bottom:8px}
}

/* Responsive: adapt layout when narrow */
@media (max-width:980px){
  .who-grid{flex-direction:column-reverse;gap:18px}
  .who-media{width:92%;max-width:420px}
  .who-highlight{width:100%}
}
@media (max-width:520px){
  .who-media{width:100%;padding:6px}
}

/* make .card anchors visually identical to prior articles and accessible as large tappable buttons */
.card{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:16px;
  border-radius:12px;
  background:var(--card);
  color:var(--text);
  text-decoration:none;
  box-shadow: 0 10px 30px rgba(40,30,40,0.04);
  border:1px solid rgba(155,127,183,0.04);
  transition:transform .18s ease, box-shadow .18s ease, background .12s ease;
  align-items:flex-start;
}
.card .emoji{color:var(--accent);display:flex;align-items:center;justify-content:center}
.card h3{margin:0;font-size:16px;font-weight:700;color:#3b2f37}
.card:hover{transform:translateY(-6px);box-shadow:0 26px 64px rgba(40,30,40,0.08)}
.card:active{transform:translateY(-2px)}
.card:focus{outline:3px solid rgba(155,127,183,0.14);outline-offset:3px;border-radius:12px}