/* FONTES
   
*/
@font-face {
  font-family: 'Playfair Display';
  src: url('fontes/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('fontes/DM_Sans/DMSans-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

img,
svg,
video {
  display: block;
  width: 100%;
  height: auto;
}

.max {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}


:root {
  /* colours */
  --pink-deep: #9b4d6e;
  --navy:      #2c3e6b;
  --text-dark: #000000;
  --white:     #ffffff;
  --teal:      #00d4c8;

  /* font families */
  --font-serif: 'Playfair Display', serif;
  --font-sans:  'DM Sans', sans-serif;

  /* type scale */
  --fs-h1: 48px;  --lh-h1: 62px;  --fw-h1: 800;  --ls-h1: 0.005em;
  --fs-h2: 30px;  --lh-h2: 50px;  --fw-h2: 600;
  --fs-h3: 24px;  --lh-h3: 40px;  --fw-h3: 500;
  --fs-p:  20px;  --lh-p:  32px;  --fw-p:  400;
  --fs-cap: 14px; --lh-cap: 24px; --fw-cap: 400; --ls-cap: 0.005em;
}

/* grid */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
}

.grid-fundo {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  grid-template-rows: 78px repeat(10, auto) 1fr;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#topo {
  grid-column: 1/13;
  grid-row: 1;
  z-index: 10;
  background-color: rgba(255, 255, 255, .8);
}

#fundo {
  grid-column: 1/13;
  grid-row: 1/3;
}

#bkimg {
  grid-row: 1/7;
  grid-column: 1/13;
  align-self: flex-start;
  z-index: -10;
}

#logo {
  grid-column: 1/4;
  width: 150px;
  margin: 20px;
  grid-row: 1/3;
}

#aa-resize-row {
  grid-column: 11/13;
  grid-row: 2;
  justify-self: flex-end;
  margin-right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.aa-size-btn {
  background: none;
  border: none;
  color: #9b4d6e;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 6px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.aa-size-btn:hover {
  opacity: 1;
}

.aa-size-btn:focus-visible {
  outline: 2px solid #9b4d6e;
  outline-offset: 2px;
  border-radius: 4px;
}

body {
  color: white;
  cursor: default;
}



nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column: 4/13;
  grid-row: 1;
  margin-top: 20px;
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  margin-left: 25px;
}

nav a:hover {
  color: var(--pink-deep);
}



.titulo {
  grid-column: 3/11;
  grid-row: 2;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.45em;
  text-align: center;
  animation: fadeUp 0.9s ease both;
  color: #000000;
}

.hero-sub {
  grid-column: 3/11;
  grid-row: 3;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #555;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 2.6rem;
  text-align: center;
  animation: fadeUp 0.9s 0.15s ease both;
}

.btn-explore {
  grid-column: 3/11;
  grid-row: 4;
  justify-self: center;
  animation: fadeUp 0.9s 0.3s ease both;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  margin-top: 20px;
  background: var(--pink-deep);
  border-radius: 50px;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 13px 36px;
  display: inline-block;
  transition: background 0.25s, transform 0.2s;
}

.btn-explore:hover {
  background: #7a3553;
  transform: translateY(-2px);
}

.hero-desc {
  grid-column: 3/11;
  grid-row: 5;
  justify-self: center;
  margin-top: 3.5rem;
  max-width: 480px;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  text-align: center;
  color: #333;
  animation: fadeUp 0.9s 0.45s ease both;
}

.hero-desc strong { font-weight: 700; }
 


.locations {
  padding: 70px 16px 90px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.locations h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 2.8rem;
  grid-column: 2/12;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px; 
  max-width: 1100px;
  margin: 0 auto;
  grid-column: 1/13;
}

.card {
  position: relative;
  overflow: visible;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.13);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 290px;
  height: 220px;
  margin: 0 auto;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}


.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
  border-radius: 18px;
}

.card:hover .card-img {
  transform: scale(1.05);
}


.card-label {
  position: absolute;
  bottom: -18px; 
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  padding: 8px 28px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.03em;
  z-index: 2;
}



@media (max-width: 900px) {
  .cards-grid { gap: 24px; }
}

@media (max-width: 680px) {
  
  .locations {
    display: block;
    padding: 50px 20px 70px;
  }

  .locations h2 {
    grid-column: unset;
    margin-bottom: 2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    gap: 40px;
  }
}



html.font-large  { font-size: 115%; }
html.font-xlarge { font-size: 130%; }


.best-spots {
  padding: 80px 16px 60px;
}

.grid-container {
  grid-column: 1/13;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  align-items: center;
}

.spots-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  grid-column: 2/12;
  text-align: center;
}

.spots-the  {
  color: #f07aaa;
  margin-right: 10px;
}

.spots-rest {
  color: #1a1a2e;
}


.map-wrapper {
  grid-column: 1/13;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.map-img {
  width: clamp(220px, 38vw, 380px);
  height: auto;
}


.pins-row {
  grid-column: 1/13;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
  width: 100%;
}

.pin-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pin-link {
  text-decoration: none;
}


.pin-icon-wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 14px;
}

.pin-icon {
  width: clamp(48px, 7vw, 72px);
  height: auto;
  transition: transform 0.2s;
}

.pin-icon-wrap:hover .pin-icon {
  transform: scale(1.15);
}

.gmaps-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #e0f5f4;
  color: #555;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 5px;
  border: 1px solid #b0e8e4;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
}

.gmaps-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #b0e8e4;
}

.pin-icon-wrap:hover .gmaps-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.pin-park {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.pin-city {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 700;
  color: #1a1a2e;
}

.spots-desc {
  grid-column: 2/12;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.75;
  color: #333;
}

.spots-desc strong {
  font-weight: 700;
}


/* Galeria */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 0 clamp(20px, 5vw, 60px);
}

.gal-item {
  overflow: hidden;
  height: 320px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gal-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.gal-item img,
.gal-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gal-item:hover img,
.gal-item:hover video {
  transform: scale(1.05);
}


#gal-1 { grid-column: 1 / 7;  }
#gal-2 { grid-column: 7 / 13; }
#gal-3 { grid-column: 1 / 5;  }
#gal-4 { grid-column: 5 / 13; }
#gal-5 { grid-column: 1 / 7;  }
#gal-6 { grid-column: 7 / 13; }


@media (max-width: 680px) {
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 20px 16px;
    margin: 0 0 40px;
    scrollbar-width: none;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gal-item {
    flex: 0 0 80vw;
    height: 260px;
    scroll-snap-align: start;
    border-radius: 12px;
  }

  #gal-1, #gal-2, #gal-3,
  #gal-4, #gal-5, #gal-6 {
    grid-column: auto;
  }
}



.gallery-intro {
  text-align: center;
  padding: 60px 16px 40px;
}

.gallery-intro p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1a1a2e;
}


.gallery-cta {
  text-align: center;
  padding: 60px 16px 90px;
}

.cta-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a2e;
  margin-bottom: 24px;
}


.btn {
  display: inline-block;
  background: #9b4d6e;
  color: white;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 13px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn:hover {
  background: #7a3553;
  transform: translateY(-2px);
}

@media (max-width: 680px) {
  .best-spots { padding: 50px 20px 50px; }

  .grid-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .spots-title {
    grid-column: unset;
    margin-bottom: 0;
  }

  .map-wrapper { width: 100%; }

  
  .pins-row {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    gap: 12px;
    margin-bottom: 0;
  }

  .spots-desc {
    grid-column: unset;
    padding: 0;
    font-size: 0.95rem;
  }
}


#hamburger {
  display: none;
}


@media (max-width: 760px) {
  
  #logo {
    grid-column: 1/5;
    width: 100px;
    margin: 12px;
  }

  
  #hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 11/13;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    margin-right: 16px;
    background: none;
    cursor: pointer;
    padding: 6px;
  }

  #hamburger img {
    width: 30px;
    height: 30px;
  }

  #hamburger[aria-expanded="true"] img {
    display: none;
  }

  #hamburger[aria-expanded="true"]::after {
    content: '✕';
    font-size: 1.3rem;
    color: var(--pink-deep);
    line-height: 1;
  }

  
  #navLinks {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    grid-column: 1/13;
    grid-row: 2;
    background: rgba(255, 255, 255, 0.97);
    padding: 20px 0;
    margin: 0;
  }

  
  #navLinks.open {
    display: flex;
  }

  nav a {
    margin-left: 0;
    font-size: 1rem;
  }

  #aa-resize-row {
    grid-column: 1/13;
    grid-row: 3;
    justify-self: center;
    margin: 0 0 12px;
  }

  .titulo,
  .hero-sub,
  .hero-desc {
    grid-column: 2/12;
    text-align: center;
  }

  .btn-explore {
    grid-column: 2/12;
    justify-self: center;
  }

  .spots-title { grid-column: 1/13; }
  .spots-desc  { grid-column: 1/13; }

  #bkimg {
    max-height: 55vh;
    object-fit: cover;
    object-position: center top;
  }

  .titulo {
    grid-column: 1/13;
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-top: 16px;
  }

  .hero-sub {
    grid-column: 1/13;
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .btn-explore {
    grid-column: 1/13;
    justify-self: center;
    margin-top: 0;
    font-size: 0.95rem;
    padding: 11px 30px;
  }

  .hero-desc {
    grid-column: 1/13;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    padding: 0 12px;
  }
}





nav a.ativo {
  color: var(--pink-deep);
  font-weight: 700;
}

#fundo {
  min-height: 420px;
}

#leaf {
  grid-column: 1/13;
  grid-row: 1/13;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -10;
}

#deco-tr,
#deco-bl,
#deco-mid {
  pointer-events: none;
}

#deco-tr {
  grid-column: 10/13;
  grid-row: 2;
  width: clamp(90px, 11vw, 140px);
  justify-self: end;
  align-self: start;
  --x: 0px;
  --y: 0px;
  transform: translate(var(--x), var(--y)) rotate(15deg);
  transition: transform 0.3s ease;
}

#deco-bl {
  grid-column: 1/4;
  grid-row: 12;
  width: clamp(100px, 13vw, 160px);
  justify-self: start;
  align-self: end;
  --x: 0px;
  --y: 0px;
  transform: translate(var(--x), var(--y)) rotate(-20deg);
  transition: transform 0.3s ease;
}

.ff-titulo {
  grid-column: 4/10;
  grid-row: 2;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.005em;
  text-align: center;
  color: #ffffff;
  margin-top: 30px;
  animation: fadeUp 0.9s ease both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}

.ff-sub {
  grid-column: 4/10;
  grid-row: 3;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #ffffff;
  margin: 0;
  animation: fadeUp 0.9s 0.15s ease both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}


#ff-content {
  padding: 80px 0 120px;
  color: #1a1a1a;
}

.ff-tabs {
  grid-column: 2/12;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 6vw, 70px);
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.ff-tab {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  background: none;
  color: #f4a8c5;
  cursor: pointer;
  padding: 4px 8px 8px;
  position: relative;
  transition: color 0.2s;
}

.ff-tab:hover { color: #e07ba6; }

.ff-tab.ativo {
  color: #e07ba6;
}

.ff-tab.ativo::after {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 2px;
  background: #f4a8c5;
}

.ff-panel {
  grid-column: 3/11;
}

.ff-panel[hidden] { display: none; }

.ff-card {
  background: #efe9a7;
  border-radius: 14px;
  padding: clamp(24px, 4vw, 40px);
  max-width: 720px;
  margin: 0 auto;
}

.ff-pill {
  display: inline-block;
  background: #ffffff;
  color: #f4a8c5;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.005em;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.ff-card p {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
}


#ff-mood {
  padding: clamp(40px, 6vw, 80px) 0;
  row-gap: clamp(16px, 2.5vw, 28px);
}


.ff-img {
  width: 100%;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: opacity 0.8s ease, transform 0.5s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(24px);
  cursor: pointer;
}


.ff-img:hover,
.ff-img.visivel:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}


#ff-img-1 {
  grid-column: 2/6;
  grid-row: 1;
  aspect-ratio: 5/4;
  align-self: end;
  background-image: url('img/pexels-daejeung-11713928.jpg');
}

#ff-img-2 {
  grid-column: 6/12;
  grid-row: 1;
  aspect-ratio: 5/3;
  align-self: end;
  background-image: url('img/pexels-sibel-kubas-1634030586-36584339.jpg');
}

#ff-img-3 {
  grid-column: 2/6;
  grid-row: 2;
  aspect-ratio: 16/9;
  background-image: url('img/pexels-suki-lee-110686949-15915361.jpg');
}

#ff-img-4 {
  grid-column: 6/9;
  grid-row: 2;
  aspect-ratio: 1/1;
  background-image: url('img/pexels-theatifhashmi-7835106.jpg');
}

#ff-img-5 {
  grid-column: 9/12;
  grid-row: 2;
  aspect-ratio: 1/1;
  background-image: url('img/pexels-suki-lee-110686949-15895264.jpg');
}

#ff-text {
  padding: clamp(40px, 5vw, 60px) 0 clamp(80px, 10vw, 120px);
  row-gap: clamp(40px, 6vw, 60px);
}

.ff-block {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ff-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.ff-block p {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
}

#ff-block-1 { grid-column: 2/6;  grid-row: 1; }
#ff-block-2 { grid-column: 8/12; grid-row: 1; }
#ff-block-3 { grid-column: 2/6;  grid-row: 2; }
#ff-block-4 { grid-column: 8/12; grid-row: 2; }

#deco-mid {
  grid-column: 6/8;
  grid-row: 1/3;
  width: clamp(70px, 9vw, 110px);
  height: auto;
  justify-self: center;
  align-self: center;
  --x: 0px;
  --y: 0px;
  transform: translate(var(--x), var(--y));
  transition: transform 0.3s ease;
}


.visivel {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.8s ease both;
}


.ff-img.visivel {
  animation: none;
}

#ff-img-1 { transition-delay: 0s; }
#ff-img-2 { transition-delay: 0.1s; }
#ff-img-3 { transition-delay: 0.2s; }
#ff-img-4 { transition-delay: 0.3s; }
#ff-img-5 { transition-delay: 0.4s; }


.ff-img:hover { transition-delay: 0s; }

#ff-block-1.visivel { animation-delay: 0s; }
#ff-block-2.visivel { animation-delay: 0.15s; }
#ff-block-3.visivel { animation-delay: 0.3s; }
#ff-block-4.visivel { animation-delay: 0.45s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}





#ff-blob-section {
  max-width: 1280px;
  margin: 0 auto;
  overflow: visible;
}

.ff-blob-wrap {
  position: relative;
  overflow: visible;
}

.blob-bg {
  width: 100%;
  height: auto;
  display: block;
}


.blob-item {
  position: absolute;
  max-width: 30%;
}

.blob-item h3 {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: #d45c7a;
  margin-bottom: 8px;
}

.blob-item p {
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  line-height: 1.6;
  color: #1a1a1a;
}


#blob-flowering { top:  9%; left: 50%; }
#blob-genetics  { top: 30%; left: 30%; }
#blob-temp      { top: 53%; left:  6%; }

.blob-flor {
  position: absolute;
  width: 150px;
  height: auto;
  pointer-events: none;
  z-index: 2;
  --x: 0px;
  --y: 0px;
  transform: translate(var(--x), var(--y));
  transition: transform 0.3s ease;
  
}


.blob-flor-1 { top: 22%; left: 10%; }
.blob-flor-2 { top: 42%; left: 75%; }


#ff-stats {
  padding: clamp(40px, 6vw, 70px) 16px clamp(60px, 8vw, 100px);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  max-width: 620px;
  margin: 0 auto;
}

.stat-card {
  background: #fce8f0;
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px) clamp(16px, 2.5vw, 28px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  cursor: default;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(155, 77, 110, 0.18);
  background: #f5d0e0;
}

.stat-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #95336c;
  margin-bottom: 10px;
  transition: transform 0.35s ease, color 0.35s ease;
}

.stat-card:hover .stat-num {
  transform: scale(1.12);
  color: #d45c7a;
}

.stat-card p {
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  line-height: 1.5;
  color: #a93c60;
}

.stats-cta {
  margin-top: clamp(32px, 5vw, 56px);
}

.btn-more {
  display: inline-block;
  background: #9b4d6e;
  color: white;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 13px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-more:hover {
  background: #bc4d7d;
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER */

   .site-footer {
  position: relative;
  background: #fff;
}


.footer-blob {
  display: block;
  width: 100%;
  height: auto;
}


.footer-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(32px, 5vw, 80px) 40px;
}


.footer-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer-nav {
  display: flex;
  gap: 36px;
}

.footer-nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--pink-deep); }


.footer-social-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 28px;
}

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

.footer-social a img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: transform 0.2s;
}

.footer-social a:hover img { transform: scale(1.12); }


.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #1a1a1a;
}

@media (max-width: 680px) {
  
  .site-footer {
    background: #fce8ea;
  }

  
  .footer-blob {
    display: none;
  }


  .footer-inner {
    position: static;
    padding: 40px 24px 28px;
    justify-content: flex-start;
  }

  
  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  
  .footer-social-row {
    justify-content: flex-start;
    margin-bottom: 24px;
  }

  .footer-social a img {
    width: 42px;
    height: 42px;
  }

  
  .footer-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 0.75rem;
  }
}

/*
   RESPONSIVO*/
@media (max-width: 900px) {
  #ff-img-1 { grid-column: 2/7;  aspect-ratio: 4/3; }
  #ff-img-2 { grid-column: 7/12; aspect-ratio: 4/3; }
  #ff-img-3 { grid-column: 2/6;  aspect-ratio: 16/10; }
  #ff-img-4 { grid-column: 6/9;  aspect-ratio: 1/1; }
  #ff-img-5 { grid-column: 9/12; aspect-ratio: 1/1; }

  #ff-block-1 { grid-column: 2/7; }
  #ff-block-2 { grid-column: 7/12; }
  #ff-block-3 { grid-column: 2/7; }
  #ff-block-4 { grid-column: 7/12; }
  #deco-mid { display: none; }
}

@media (max-width: 680px) {
  #leaf { grid-column: 1/13; }
  #deco-tr { margin-top: 30px; }
  .ff-tabs { gap: 18px; margin-bottom: 32px; }
  .ff-panel { grid-column: 2/12; }
  #ff-content { padding: 50px 0 70px; }

  #ff-mood {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 20px 20px 32px;
    scrollbar-width: none;
    row-gap: 0;
  }

  #ff-mood::-webkit-scrollbar { display: none; }

  #ff-img-1, #ff-img-2, #ff-img-3,
  #ff-img-4, #ff-img-5 {
    flex: 0 0 80vw;
    height: 260px;
    aspect-ratio: unset;
    align-self: auto;
    scroll-snap-align: start;
    border-radius: 14px;
    grid-column: unset;
    grid-row: unset;
  }

 
  #ff-text {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 40px 24px 60px;
  }

  #deco-mid { display: none; }

  #ff-block-1, #ff-block-2,
  #ff-block-3, #ff-block-4 {
    width: 100%;
  }


  .blob-bg   { display: none; }
  .blob-flor { display: none; }

  .ff-blob-wrap {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 36px;
    background: #e9edcc; 
    border-radius: 24px;
    padding: 40px 24px;
    margin: 0 16px;
  }

  
  .blob-item {
    position: static;
    max-width: 100%;
  }

  .blob-item h3 { font-size: 1.2rem; }
  .blob-item p  { font-size: 0.95rem; }
}


/* 
   ACTIVITIES PAGE
 */

#act-hero {
  text-align: center;
  background: #fff;
}


.act-blob {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.act-hero-content {
  margin-top: -380px;
  position: relative;
  padding-bottom: 60px;
}

.act-title {
  grid-column: 2/12;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 24px;
  text-align: center;
}

.act-title-green {
  color: #6b8c5a;
}

.act-stats {
  grid-column: 2/12;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.act-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.75);
  border: 1.5px solid #e0d8dc;
  border-radius: 16px;
  padding: 14px 32px;
  min-width: 100px;
}

.act-stat-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #9b4d6e;
}

.act-stat-label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #ae3873;
  margin-top: 2px;
}

#act-grid {
  padding: 60px 0 80px;
  row-gap: 40px;
}

.act-cards {
  grid-column: 2/12;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.act-load-more {
  grid-column: 1/13;
  text-align: center;
}

.act-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.act-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}

.act-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.act-card-body {
  padding: 16px 20px 20px;
}

.act-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #c05070;
  margin-bottom: 8px;
}

.act-card-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.act-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.act-duration {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #888;
}

.act-arrow {
  font-size: 1.4rem;
  color: #9b4d6e;
}


.act-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.act-popup-overlay[hidden] { display: none; }

.act-popup-panel {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.act-popup-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s;
}

.act-popup-close:hover { background: #f0e0e8; }

.act-popup-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 24px 24px 0 0;
  margin-top: -68px;
}

.act-popup-content {
  padding: 28px 32px 40px;
}

.act-popup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.act-tag {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #9b4d6e;
  border: 1.5px solid #e0aac0;
  border-radius: 50px;
  padding: 6px 16px;
  background: #fff;
}

.act-popup-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 28px;
}

.act-tips {
  background: #edf0d8;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.act-tips-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #5c7a3a;
  margin-bottom: 14px;
}

.act-tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.act-tips-list li {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #3a5a28;
  display: flex;
  align-items: center;
  gap: 12px;
  counter-increment: tips;
}

.act-tips-list li::before {
  content: counter(tips);
  counter-increment: none;
  min-width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #5c7a3a;
  flex-shrink: 0;
}

.act-tips-list { counter-reset: tips; }

.act-popup-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.act-popup-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 680px) {
  .act-hero-content {
    margin-top: -120px;
  }

  .act-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .act-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .act-stat {
    flex-direction: row;
    gap: 6px;
    padding: 8px 16px;
    min-width: unset;
    border-radius: 50px;
    align-items: center;
  }

  .act-stat-num { font-size: 1rem; }
  .act-stat-label { font-size: 0.78rem; margin-top: 0; }

  .act-cards {
    grid-column: 2/12;
    grid-template-columns: 1fr;
  }

  .act-popup-panel {
    max-height: 92vh;
    border-radius: 20px;
  }

  .act-popup-img { height: 220px; margin-top: -68px; }

  .act-popup-content { padding: 20px 20px 32px; }

  .act-popup-gallery img { height: 120px; }
}

