@font-face {
  font-family: 'MV Boli';
  src: url('../fonts/mvboli.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;600;700;800&family=Roboto:ital,wght@0,300;0,400;0,700;1,400&display=swap');

:root {
  --blue: #729fcf;
  --blue-dark: #355269;
  --green-card: #d4ea6b;
  --green-banner: #77bc65;
  --white: #ffffff;
  --text-dark: #355269;
  --text-green: #127622;
  --text-body: #333333;
  --border-radius-card: 12px;
  --fs-body: 1.1rem;
  --fs-sub: 1.3rem;
  --fs-head: 1.5rem;
  --fs-display: 2.0rem;
}

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

html {
  font-size: 18px;
}

body {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  color: var(--text-dark);
  background: #fff;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid var(--green-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 32px;
  box-shadow: 0 2px 8px rgba(53,82,105,.15);
}

.navbar .logo img {
  height: 42px;
  display: block;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.navbar nav ul li a {
  text-decoration: none;
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-weight: 600;
  font-size: var(--fs-body);
  color: var(--text-dark);
  letter-spacing: 0.03em;
  transition: color .2s;
}

.navbar nav ul li a:hover,
.navbar nav ul li a.active {
  color: var(--text-green);
}

/* ============================================================
   SECTIONS – shared
   ============================================================ */
section {
  width: 100%;
}

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

.campaign .container{
  max-width: 100%;
}

.section-pad {
  padding: 48px 0;
}

/* ============================================================
   HERO (Inicio slide 1)
   ============================================================ */
.hero {
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.hero .hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-placeholder img {
  width: 100%;
  object-fit: cover;
}

.hero-invitation {
  background: var(--green-card);
  padding: 28px 48px;
  text-align: center;
}

.hero-invitation p {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-display);
  color: var(--blue-dark);
  line-height: 1.7;
  max-width: 80%;
  margin: 0 auto;
}

.hero-invitation em {
  font-style: italic;
}

.hero-invitation strong {
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
}

/* ============================================================
   CAMPAIGN / TREES CARDS (Inicio slide 2)
   ============================================================ */
.campaign {
  background: #fff;
  padding: 52px 24px;
}



.campaign-title {
  text-align: center;
  margin-bottom: 36px;
}

.campaign-title h2 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-head);
  font-weight: 800;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.4;
}

.campaign-title h3 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-sub);
  font-weight: 600;
  color: var(--text-green);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 6px;
}

.trees-row {
  display: flex;
  gap: 5%;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.tree-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  width: 25%;
}

.tree-card .card-image {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  border-radius: var(--border-radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-size: var(--fs-body);
  text-align: center;
  overflow: hidden;
  margin-bottom: 12px;
}

.tree-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tree-card .card-info {
  background: var(--green-card);
  border-radius: var(--border-radius-card);
  /* Adjust padding to give more space top/bottom if needed */
  padding: 20px 20px;  /* or set separate values: padding: 24px 20px 24px 20px; */
  text-align: center;
  width: 100%;
  position: relative;      /* Required for absolute positioning of pseudo‑elements */
  overflow: hidden;        /* Clips the lines so they respect the border-radius */
}

/* Top white line */
.tree-card .card-info::before {
  content: '';
  position: absolute;
  top: var(--border-radius-card);  /* Aligns with the end of the top rounded corners */
  left: 0;
  right: 0;
  height: 2px;                    /* Thickness of the line, adjust as needed */
  background: white;
}

/* Bottom white line */
.tree-card .card-info::after {
  content: '';
  position: absolute;
  bottom: var(--border-radius-card); /* Aligns with the start of the bottom rounded corners */
  left: 0;
  right: 0;
  height: 2px;
  background: white;
}

.tree-card .card-info .region-label {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-body);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: .1em;
}

.tree-card .card-info .region-range {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-body);
  font-style: italic;
  color: var(--blue-dark);
  margin: 3px 0;
}

.tree-card .card-info .tree-name {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-head);
  font-weight: 800;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.1;
}

/* ============================================================
   NATIVE VIRTUES (Inicio slide 3)
   ============================================================ */
.native-virtues {
  background: #fff;
  padding: 52px 24px;
}

.native-virtues h2 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-head);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  text-align: center;
  letter-spacing: .04em;
  line-height: 1.4;
  margin-bottom: 28px;
}

.native-virtues ul {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.native-virtues ul li {
  display: flex;
  gap: 10px;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-dark);
}

.native-virtues ul li::before {
  content: '•';
  color: var(--text-green);
  font-weight: 800;
  font-size: var(--fs-sub);
  line-height: 1.4;
  flex-shrink: 0;
}

/* ============================================================
   ECOLOGY (Inicio slide 4)
   ============================================================ */
.ecology {
  background: #fff;
  padding: 52px 24px;
}

.ecology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  max-width: 70%;
  margin: 0 auto;
}
.ecology-box {
  background: var(--green-card);
  border-radius: var(--border-radius-card);
  padding: 28px 22px;
  position: relative;   /* <-- anchors the absolute pseudo‑elements */
  overflow: hidden;     /* <-- clips lines to the border‑radius */
  align-items: center;
  display: grid;
  place-items: center;
}

/* Top white line */
.ecology-box::before {
  content: '';
  position: absolute;
  top: var(--border-radius-card);
  left: 0;
  right: 0;
  height: 2px;
  background: white;
}

/* Bottom white line */
.ecology-box::after {
  content: '';
  position: absolute;
  bottom: var(--border-radius-card);
  left: 0;
  right: 0;
  height: 2px;
  background: white;
}

.ecology-box p {
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--blue-dark);
  margin:auto;
  text-align: center;
}

/* ============================================================
   DISTRIBUTION / SEEDS (Inicio slide 5)
   ============================================================ */
.distribution {
  background: #fff;
  padding: 52px 24px;
}

.distribution-title {
  text-align: center;
  margin-bottom: 36px;
}

.distribution-title h2 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-head);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: .06em;
}

.distribution-inner {
  display: block;
  max-width: 960px;
  margin: 0 auto;
}

.distribution-map {
  position: relative;
  width: 100%;
}

.distribution-map img {
  width: 100%;
  height: auto;
  display: block;
}
.distribution-seeds {
  margin-top: 32px;
}

.zone-label {
  position: absolute;
  /* ── adjust these two values to reposition the label on the image ── */
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  /* ─────────────────────────────────────────────────────────────────── */
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-weight: 800;
  font-size: var(--fs-body);
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: .12em;
  text-align: center;
  white-space: nowrap;
}

.seeds-row {
  display: flex;
  gap: 15%;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.seed-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.seed-item img {
  width: 150px;
  height: 72px;
  object-fit: contain;
}

.seed-item span {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-body);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: .1em;
}

.choice-banner {
  background: var(--green-card);
  border-radius: var(--border-radius-card);
  padding: 14px 28px;
  text-align: center;
  margin-top: 20px;
}

.choice-banner p {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-sub);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: .06em;
}

/* ============================================================
   RECOMMENDATIONS (Inicio slides 6-7)
   ============================================================ */
.reco-header {
  background: #fff;
  padding: 52px 24px;
  text-align: center;
}

.reco-header-box {
  display: inline-block;
  background: var(--green-card);
  border-radius: var(--border-radius-card);
  padding: 32px 48px;
  max-width: 680px;
}

.reco-header h2 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-head);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: .06em;
}

.reco-header h3 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-sub);
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 8px;
}

.reco-content {
  background: #fff;
  padding: 52px 24px;
}

.reco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.reco-box {
  background: var(--green-card);
  border-radius: var(--border-radius-card);
  padding: 28px 24px;
}

.reco-box h3 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-sub);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.reco-box p {
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text-dark);
}

/* ============================================================
   IDENTIFICATION CARDS (Inicio slides 8-10)
   ============================================================ */
.identification {
  background: #fff;
  padding: 52px 24px;
  border-top: 2px solid #e8edf2;
  font-family: 'Consolas', 'Segoe UI', Arial, sans-serif;
}

.identification * {
  font-family: 'Consolas', 'Segoe UI', Arial, sans-serif;
}

.identification .id-inner {
  max-width: 960px;
  margin: 0 auto;
}

.identification .id-paragraphs {
  column-count: 2;
  column-gap: 32px;
  margin-bottom: 4px;
}

.identification .id-bottom {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 20px;
}

.identification .id-bottom .scientific-name {
  flex: 1;
  margin-top: 0;
}


.identification .id-image {
  flex: 0 0 160px;
  width:160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding: 20px 14px 22px;
  height: 100%;
  position: relative;
  overflow: visible;
}

.identification .id-image img {
  width: 50%;
  height: auto;
  object-fit: contain;
  border: none;
  background: transparent;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-40%, -50%);
}

.identification .id-image .btn-ver-mas {
  margin-top: 0;
}

.id-title-box {
  background: var(--blue);
  border-radius: var(--border-radius-card);
  padding: 10px 20px;
  margin-bottom: 18px;
  display: inline-block;
}

.id-title-box h2 {
  font-family: 'Consolas', 'Segoe UI', Arial, sans-serif;
  font-size: var(--fs-sub);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.identification h3 {
  font-family: 'Consolas', 'Segoe UI', Arial, sans-serif;
  font-size: var(--fs-sub);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.identification p,
.identification li {
  font-family: 'Consolas', 'Segoe UI', Arial, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-align: justify;
}

.scientific-name {
  background: var(--green-card);
  border-radius: 8px;
  padding: 10px 16px;
  margin-top: 14px;
  display: inline-block;
}

.scientific-name strong {
  font-family: 'Consolas', 'Segoe UI', Arial, sans-serif;
  font-size: var(--fs-body);
  text-transform: uppercase;
  color: var(--blue-dark);
}

.scientific-name em {
  font-style: italic;
  font-size: var(--fs-body);
  color: var(--text-dark);
}

.btn-ver-mas {
  box-sizing: content-box;
  display: inline-block;
  margin-top: 14px;
  padding: 8px 20px;
  color: #000000;
  text-decoration: none;
  font-family: 'Consolas', 'Segoe UI', Arial, sans-serif;
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: .05em;
  overflow: visible;
  transition: background .2s;
  background-image: url('../imagenes/ver_mas_bg.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}

.btn-ver-mas:hover {background-image: url('../imagenes/ver_mas_bg_hover.png');}

/* ============================================================
   BOUQUET / DECORATIVE (Inicio slides 11-12)
   ============================================================ */
.bouquet {
  background: #fff;
  padding: 52px 24px;
}

.bouquet-inner {
  max-width: 90%;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  justify-content: space-evenly;
}

.bouquet-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bouquet-img-wrap img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  height: auto;
}

/* Slide 11: tree species list */
.tree-list-box {
  background: #fdf6ee;
  border-radius: var(--border-radius-card);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height:95%
}

.tree-species-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tree-species-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--fs-body);
  line-height: 1.5;
}

.tree-species-list li strong {
  font-size: var(--fs-sub);
  letter-spacing: .04em;
  display: block;
}

.tree-species-list li em {
  font-style: italic;
  font-size: var(--fs-body);
  color: #555;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.dot-chanar { background: #e07030; }
.dot-quillay { background: #c8c820; }
.dot-notro { background: #c03020; }

/* Slide 12: flores decorativas + copyright */
.slide-12-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px 40px;
}

.slide-12-inner .social-row {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.slide-12-inner .social-row img {
  height: 60px;
}


.slide-12-blue-box .slide-12-copyright {
  font-size: var(--fs-body);
  color: var(--text-bodu);
  letter-spacing: .05em;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

.placeholder-box {
  background: #f0f3f7;
  border: 2px dashed #b0bec5;
  border-radius: var(--border-radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #90a4ae;
  font-style: italic;
  font-size: var(--fs-body);
  text-align: center;
  padding: 24px;
  gap: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-card);
  padding: 36px 24px;
  text-align: center;
}

.site-footer p {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-body);
  color: var(--blue-dark);
}

.site-footer .social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.site-footer .social img {
  height: 32px;
}

/* ============================================================
   TREE DETAIL PAGES
   ============================================================ */
.tree-hero-section {
  background: #fff;
  padding: 52px 24px;
}

.tree-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.tree-hero-img {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tree-hero-img img,
.tree-hero-img .placeholder-box {
  width: 260px;
  min-height: 220px;
  border-radius: var(--border-radius-card);
  object-fit: cover;
}

.tree-hero-card {
  flex: 0 0 220px;
  align-self: center;
}

.region-card {
  background: var(--green-card);
  border-radius: var(--border-radius-card);
  padding: 24px 22px;
  text-align: center;
  min-width: 200px;
}

.region-card .region-title {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-body);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: .12em;
  margin-bottom: 4px;
}

.region-card .region-range {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-body);
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.region-card .tree-big-name {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: .04em;
  line-height: 1;
}

/* Tree description section */
.tree-desc {
  background: #fff;
  padding: 52px 24px;
}

.tree-desc-inner {
  max-width: 860px;
  margin: 0 auto;
}

.tree-desc h2 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-head);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: .05em;
  margin-bottom: 20px;
}

.tree-desc p {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.conservation-tag {
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: var(--fs-body);
  line-height: 1.55;
  margin-top: 16px;
}

/* Germination section */
.germination {
  background: #fff;
  padding: 52px 24px;
}

.germination-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.germination-text h2 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-sub);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: .05em;
}

.germination-text h3 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-body);
  font-style: italic;
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 16px;
}

.germination-text h4 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
  padding-bottom: 6px;
}

.germination-text p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.germination-photo img {
  width: 100%;
  border-radius: var(--border-radius-card);
  object-fit: cover;
}

/* Planting section */
.planting {
  background: #fff;
  padding: 52px 24px;
}

.planting-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.planting-photo img {
  width: 100%;
  border-radius: var(--border-radius-card);
  object-fit: cover;
  max-height: 380px;
}

.planting-text h2 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-sub);
  font-weight: 800;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
  padding-bottom: 6px;
}

.planting-text p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.planting-text .planting-link {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.planting-text .planting-link span {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-body);
  font-style: italic;
  color: var(--text-dark);
}

/* Poster section */
.poster-section {
  background: #fff;
  padding: 52px 24px;
  text-align: center;
}

.poster-section h2 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-sub);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: .08em;
  margin-bottom: 24px;
}

.poster-section img {
  max-width: 480px;
  width: 100%;
  border-radius: var(--border-radius-card);
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}

/* ============================================================
   VIVERO PAGE
   ============================================================ */
.vivero-hero {
  background: #fff;
  padding: 52px 24px;
}

.vivero-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.vivero-hero-inner .logo-only {
  flex: 0 0 auto;
}

.vivero-hero-inner .logo-only img {
  height: 60px;
}

.vivero-placeholder {
  flex: 1;
  min-width: 260px;
}

.planting-guide {
  background: #fff;
  padding: 52px 24px;
}

.planting-guide-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.planting-guide .step-num {
  background: var(--green-banner);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-head);
  font-weight: 800;
}

.planting-guide h2 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-head);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: .05em;
  margin-bottom: 16px;
}

.planting-guide ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.planting-guide ul li {
  display: flex;
  gap: 8px;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-dark);
}

.planting-guide ul li::before {
  content: '→';
  color: var(--text-green);
  font-weight: 700;
  flex-shrink: 0;
}

.planting-note {
  background: var(--green-card);
  border-radius: var(--border-radius-card);
  padding: 14px 22px;
  margin-top: 20px;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--blue-dark);
  font-style: italic;
}

.vivero-section {
  background: #fff;
  padding: 52px 24px;
}

.vivero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.vivero-section h2 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-head);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  letter-spacing: .05em;
  margin-bottom: 16px;
  padding-bottom: 8px;
}

.vivero-section p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.vivero-char {
  background: #fff;
  padding: 52px 24px;
}

.vivero-char-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  text-align: justify;
}

.vivero-char h2 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-sub);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 16px;
  grid-column: 1 / -1;
  padding-bottom: 8px;
}

.vivero-char p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.vivero-char .vivero-img img {
  width: 100%;
  border-radius: var(--border-radius-card);
  object-fit: contain;
  background: #f0f3f7;
  padding: 12px;
}

.about-section {
  background: #fff;
  padding: 52px 24px;
}

.about-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  padding: 0;
}

.about-section h2 {
  font-size: var(--fs-head);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.about-section .org-tag {
  font-size: var(--fs-body);
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: .06em;
}

.about-section h3 {
  font-size: var(--fs-sub);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
  border-left: 3px solid var(--blue-dark);
  padding-left: 10px;
}

.about-section p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.about-section .email-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  color: #000000;
  border-radius: 24px;
  font-weight: 700;
  font-size: var(--fs-body);
  text-decoration: none;
}

.carousel-section {
  background: #fff;
  padding: 52px 24px;
  text-align: center;
}

.carousel-section h2 {
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-sub);
  font-weight: 700;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 24px;
}

.carousel {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-slide {
  flex: 0 0 calc(100% / 4);
  padding: 0 8px;
  height: 340px;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-card);
  display: block;
}

.carousel-btn {
  background: var(--blue-dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  user-select: none;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--blue);
}


/* ============================================================
   HOTSPOT LINE DIVIDER
   ============================================================ */
.biodiversity-banner {
  background: var(--green-banner);
  color: #fff;
  padding: 18px 32px;
  text-align: center;
  font-family: 'MV Boli', 'Comfortaa', cursive;
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   HAMBURGER NAV TOGGLE
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 800px) {
  /* carousel: 2 images on tablet */
  .carousel-slide { flex: 0 0 50%; }
}

@media (max-width: 720px) {
  /* ── Navbar / hamburger ── */
  .navbar { padding: 8px 16px; position: relative; }
  .nav-toggle { display: flex; }

  .navbar nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 2px solid var(--green-card);
    box-shadow: 0 4px 16px rgba(53,82,105,.15);
    z-index: 99;
  }
  .navbar nav.open { display: block; }
  .navbar nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }
  .navbar nav ul li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eef2f5;
    font-size: var(--fs-body);
  }

  /* ── Section padding ── */
  .hero-invitation { padding: 20px 16px; }
  .hero-invitation p { font-size: var(--fs-head); line-height: 1.5; max-width: 100%; }
  .campaign, .native-virtues, .ecology, .distribution,
  .reco-header, .reco-content, .identification, .bouquet,
  .tree-hero-section, .tree-desc, .germination, .planting,
  .poster-section, .vivero-hero, .planting-guide,
  .vivero-char, .about-section, .carousel-section,
  .vivero-section { padding: 32px 16px; }

  /* ── Grids → single column ── */
  .trees-row { flex-direction: column; align-items: center; }
  .tree-card { width: 90%; max-width: 340px; }
  .ecology-grid { grid-template-columns: 1fr; max-width: 100%; }
  .reco-grid { grid-template-columns: 1fr; }
  .germination-inner { grid-template-columns: 1fr; }
  .planting-inner { grid-template-columns: 1fr; }
  .vivero-char-inner { grid-template-columns: 1fr; }
  .planting-guide-inner { grid-template-columns: 1fr; }
  .bouquet-inner { flex-direction: column; align-items: center; max-width: 100%; gap: 20px; }
  .bouquet-inner > div:empty { display: none; }
  .bouquet-inner > img { max-width: 340px; width: 100%; }
  .tree-hero-inner { flex-direction: column; align-items: center; }

  /* ── Images ── */
  .tree-hero-img img,
  .tree-hero-img .placeholder-box { width: 100%; max-width: 320px; }
  .germination-photo img,
  .planting-photo img { max-height: 260px; width: 100%; object-fit: cover; }
  .hero .hero-placeholder img { height: 70vw; object-fit: cover; object-position: center center; }
  .poster-section img { max-width: 100%; }
  .distribution-map img { width: 100%; }
  .zone-label { font-size: 0.7rem; letter-spacing: .04em; }

  /* ── Identification ── */
  .identification .id-paragraphs { column-count: 1; }
  .identification .id-bottom { flex-direction: column; align-items: center; text-align: center; }
  .identification .id-image img { transform: translate(-50%, 20%); }

  /* ── Region card ── */
  .region-card { min-width: unset; width: 100%; max-width: 320px; }

  /* ── Reco header box ── */
  .reco-header-box { padding: 20px 16px; display: block; max-width: 100%; }
  .reco-header h2 { font-size: var(--fs-sub); letter-spacing: .02em; word-break: break-word; }
  .reco-header h3 { font-size: var(--fs-body); letter-spacing: .02em; }
  .reco-content .container { padding: 0; }
  .reco-box { padding: 20px 16px; }

  /* ── Footer ── */
  .site-footer .social img { height: 28px; }
}

@media (max-width: 480px) {
  /* carousel: 1 image on phone */
  .carousel-slide { flex: 0 0 100%; }

  .hero-invitation p { font-size: var(--fs-sub); }
  .distribution-title h2 { font-size: var(--fs-sub); }
  .native-virtues h2 { font-size: var(--fs-sub); }
  .reco-header-box { padding: 12px; }
  .ecology-grid { gap: 16px; }
  .zone-label { font-size: 0.55rem; letter-spacing: .02em; }

  /* Shrink seed images so all 3 fit in a row on small phones */
  .seed-item img { width: 90px; height: 50px; }
  .seeds-row { gap: 8%; }

  /* Bouquet image cap on tiny screens */
  .bouquet-inner > img { max-width: 260px; }

  /* Allow tree-list-box to fill width */
  .tree-list-box { width: 100%; box-sizing: border-box; }
}

