/* ===== Alkimia Korre 40 — estilos ===== */

@view-transition{
  navigation: auto;
}

:root{
  --bg: #F2EDE1;
  --bg-alt: #E9E0CC;
  --text: #2E2B22;
  --text-soft: #635D4D;
  --green: #4B6A44;
  --green-dark: #2D3F25;
  --green-light: #8AAE7C;
  --lavender: #8B71A6;
  --lavender-light: #C9B7DC;
  --plum: #612665;
  --clay: #B4693F;
  --card: #FFFFFF;
  --border: #E0D6BC;
  --shadow: 0 14px 34px rgba(46, 43, 34, 0.09);
  --shadow-sm: 0 6px 16px rgba(46, 43, 34, 0.08);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --bg: #1B1F17;
    --bg-alt: #20261B;
    --text: #EDEAE0;
    --text-soft: #B7B29E;
    --green: #8DB57E;
    --green-dark: #C7E2BC;
    --green-light: #4B6A44;
    --lavender: #CDB9E0;
    --lavender-light: #6B5A82;
    --plum: #D9A8DC;
    --clay: #E0A57F;
    --card: #262B21;
    --border: #3A4432;
    --shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.3);
  }
}

:root[data-theme="dark"]{
  --bg: #1B1F17;
  --bg-alt: #20261B;
  --text: #EDEAE0;
  --text-soft: #B7B29E;
  --green: #8DB57E;
  --green-dark: #C7E2BC;
  --green-light: #4B6A44;
  --lavender: #CDB9E0;
  --lavender-light: #6B5A82;
  --plum: #D9A8DC;
  --clay: #E0A57F;
  --card: #262B21;
  --border: #3A4432;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.3);
}

html{ transition: background-color .3s ease; }
body, .site-header::before, .product-card, .contact-form, .location-info{
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

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

html{ scroll-behavior: smooth; }

body{ overflow-x: hidden; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Lora', Georgia, serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo-text, .btn, nav a{
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4{
  margin: 0 0 .5em;
  color: var(--green-dark);
  line-height: 1.2;
}

h1{ font-size: clamp(2.1rem, 4.5vw, 3.3rem); font-weight: 700; }

.hero h1 .accent-green{ color: var(--green-dark); }
.hero h1 .accent-plum{
  color: var(--plum);
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
}
h2{ font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 600; }
h3{ font-size: 1.2rem; font-weight: 600; }

p{ margin: 0 0 1em; color: var(--text-soft); }

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

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

ul{ list-style: none; margin: 0; padding: 0; }

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

.hero-brand{
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.7rem, 5.5vw, 4.3rem);
  line-height: 1;
  letter-spacing: -.01em;
  margin: 0 0 .3em;
}
.hero-brand-a{ color: var(--green-dark); }
.hero-brand-b{ color: var(--plum); }
@media (max-width: 760px){
  .hero-brand{ font-size: clamp(2.2rem, 9vw, 2.8rem); }
}
.eyebrow{
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: .8em;
}

.center{ text-align: center; margin-left: auto; margin-right: auto; }
.section-sub{ color: var(--text-soft); max-width: 620px; }
.section-sub.center{ margin-bottom: 2.5rem; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .85em 1.8em;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary{
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline{
  background: transparent;
  border-color: var(--green);
  color: var(--green-dark);
}
.btn-outline:hover{
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.site-header.header-hidden{ transform: translateY(-100%); }
.site-header::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(251, 248, 241, 0.88);
  backdrop-filter: blur(8px);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
.logo{
  display: flex;
  align-items: center;
  gap: .6em;
}
.logo img{
  height: 62px;
  width: auto;
  mix-blend-mode: multiply;
}
[data-theme="dark"] .logo img{
  mix-blend-mode: screen;
  filter: invert(1);
}
.logo-text{
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
  letter-spacing: .02em;
}

.main-nav{
  display: flex;
  gap: 2rem;
}
.main-nav > a{
  position: relative;
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  padding: 6px 0;
}

/* Desplegables del menú (tipo mega-menú) */
.nav-dropdown{ position: relative; }
.nav-dropdown > summary{
  position: relative;
  display: flex;
  align-items: center;
  gap: .35em;
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  padding: 6px 0;
  cursor: pointer;
  list-style: none;
}
.nav-dropdown > summary::-webkit-details-marker{ display: none; }
.nav-dropdown .chevron{
  width: 9px; height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-top: -3px;
}
.nav-dropdown[open] .chevron{ transform: rotate(-135deg); margin-top: 3px; }
.dropdown-panel{
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-width: 230px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: .5rem;
  z-index: 50;
}
@media (min-width: 761px){
  .dropdown-panel{
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
  }
}
.dropdown-panel a{
  padding: .55em .7em;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  transition: background .15s ease;
}
.dropdown-panel a:hover{ background: var(--bg-alt); }
.subnav-hover{ position: relative; }
.subnav-trigger{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .55em .7em;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  transition: background .15s ease;
}
.subnav-trigger:hover{ background: var(--bg-alt); }
.subnav-trigger .chevron{
  width: 8px; height: 8px;
  border-right: 2px solid var(--text-soft);
  border-bottom: 2px solid var(--text-soft);
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.subnav-flyout{
  display: none;
  flex-direction: column;
  gap: .1rem;
}
.subnav-flyout a{
  padding: .5em .6em;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-soft);
  transition: background .15s ease;
}
.subnav-flyout a:hover{ background: var(--bg-alt); }
@media (min-width: 761px){
  .subnav-hover:hover .subnav-flyout,
  .subnav-hover:focus-within .subnav-flyout{
    display: flex;
  }
  .subnav-flyout{
    position: absolute;
    top: -.5rem;
    left: 100%;
    margin-left: .4rem;
    min-width: 230px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: .5rem;
  }
}
@media (max-width: 760px){
  .subnav-flyout{
    display: flex;
    padding: .2rem 0 .2rem 1rem;
  }
}
.main-nav > a::after,
.nav-dropdown > summary::after{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--lavender);
  transition: width .25s ease;
}
.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown > summary:hover::after,
.nav-dropdown > summary.active::after{
  width: 100%;
}

.theme-toggle{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: 12px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--green-dark);
  cursor: pointer;
  transition: transform .2s ease, background .3s ease, border-color .3s ease;
}
.theme-toggle:hover{ transform: translateY(-2px); }
.theme-toggle svg{ width: 20px; height: 20px; }
.theme-toggle .icon-moon{ display: none; }
[data-theme="dark"] .theme-toggle .icon-sun{ display: none; }
[data-theme="dark"] .theme-toggle .icon-moon{ display: block; }

.header-actions{
  display: flex;
  align-items: center;
  gap: .6rem;
}
.lang-switch{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 .8em;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .03em;
  color: var(--text);
  transition: background .2s ease, border-color .2s ease;
}
.lang-switch:hover{ background: var(--bg-alt); border-color: var(--lavender-light); }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero{
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}
.hero-inner{
  max-width: 560px;
}
.hero-sub{
  font-size: 1.08rem;
  max-width: 560px;
}
.hero-cta{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.hero-visual{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  max-height: 520px;
}
.hero-carousel{ width: 100%; height: 100%; position: relative; }
.hero-slide{
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.is-active{ opacity: 1; }
.hero-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,12,0) 55%, rgba(15,13,9,.78) 100%);
}
.hero-slide figcaption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.6rem 1.4rem;
  color: #F6F3E8;
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.5;
  z-index: 1;
}
.hero-decor{
  position: absolute;
  top: -120px;
  right: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--lavender-light), transparent 70%),
              radial-gradient(circle at 70% 70%, var(--green-light), transparent 70%);
  opacity: .45;
  z-index: 0;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}

/* ===== Ticker de talleres ===== */
.ticker{
  display: block;
  overflow: hidden;
  background: var(--green-dark);
  padding: .6rem 0;
  text-decoration: none;
  cursor: pointer;
}
.ticker-track{
  display: flex;
  width: max-content;
  animation: ticker-scroll 26s linear infinite;
}
.ticker-track span{
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: #F6F3E8;
  letter-spacing: .01em;
}
.ticker:hover .ticker-track{ animation-play-state: paused; }
@keyframes ticker-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .ticker-track{ animation: none; }
}

/* ===== Video de presentación ===== */
.video-frame{
  max-width: 720px;
  margin: 2.4rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.video-frame video{
  width: 100%;
  max-height: 640px;
  display: block;
}

/* ===== About: foto + texto ===== */
.about-copy-section{ padding-top: 3.5rem; }
.about-intro{
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: 3.2rem;
  align-items: start;
}
.about-photo{
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 712 / 1401;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}
.about-photo:hover img{ transform: scale(1.035); }
.about-photo::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,12,0) 62%, rgba(15,13,9,.8) 100%);
}
.about-photo figcaption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 20px 1.2rem;
  color: #F6F3E8;
  font-family: 'Poppins', sans-serif;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.about-copy{ max-width: 720px; }
.about-copy h2{ margin-bottom: 1.2rem; }
@media (max-width: 860px){
  .about-intro{ grid-template-columns: 1fr; gap: 2rem; }
  .about-photo{ max-width: 340px; margin: 0 auto; }
}

.lead-dropcap{ font-size: 1.12rem; }
.dropcap{
  float: left;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 4rem;
  line-height: .8;
  margin: .08rem .5rem -.3rem 0;
  color: var(--lavender);
}

.about-pullquote{
  margin: 2.2rem 0;
  padding: 0 0 0 1.4rem;
  border-left: 3px solid var(--lavender-light);
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--green-dark);
}

.about-values{
  margin-top: 1.5rem;
  display: grid;
  gap: .7rem;
}
.about-values li{
  display: flex;
  align-items: center;
  gap: .6em;
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  color: var(--green-dark);
}
.value-icon{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--lavender);
}

.pillars{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.pillar{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.pillar-icon{
  width: 34px;
  height: 34px;
  margin: 0 auto .7rem;
  color: var(--lavender);
}
.pillar h4{ font-size: .95rem; margin-bottom: .3rem; }
.pillar p{ font-size: .85rem; margin: 0; }

/* ===== Manifiesto: iconos coloridos ===== */
.manifesto-pillar{
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.manifesto-pillars{
  gap: 2.2rem 1.6rem;
  row-gap: 2.6rem;
}
.manifesto-icon-badge{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto .9rem;
  border-radius: 50%;
}
.manifesto-icon-badge .pillar-icon{
  width: 28px;
  height: 28px;
  margin: 0;
  color: inherit;
}
.manifesto-pillar:nth-child(4n+1) .manifesto-icon-badge{ background: color-mix(in srgb, var(--green) 16%, transparent); color: var(--green); }
.manifesto-pillar:nth-child(4n+2) .manifesto-icon-badge{ background: color-mix(in srgb, var(--plum) 15%, transparent); color: var(--plum); }
.manifesto-pillar:nth-child(4n+3) .manifesto-icon-badge{ background: color-mix(in srgb, var(--clay) 17%, transparent); color: var(--clay); }
.manifesto-pillar:nth-child(4n+4) .manifesto-icon-badge{ background: color-mix(in srgb, var(--lavender) 17%, transparent); color: var(--lavender); }

.mission-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.mission-grid p:not(.eyebrow){ margin: 0; }
@media (max-width: 800px){
  .mission-grid{ grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== Cómo funciona ===== */
.steps-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.6rem;
  margin-top: 2.2rem;
  counter-reset: step;
}
.step{ text-align: center; padding: 0 .5rem; }
.step-number{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 auto .8rem;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.step h4{ font-size: 1rem; margin-bottom: .3rem; }
.step p{ font-size: .88rem; margin: 0; }

/* ===== Testimonios ===== */
.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  margin-top: 2.2rem;
}
.testimonial-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  margin: 0;
  position: relative;
}
.testimonial-badge{
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--lavender);
  background: var(--bg-alt);
  border: 1px dashed var(--lavender-light);
  border-radius: 999px;
  padding: .25em .8em;
  margin-bottom: .9rem;
}
.testimonial-card p{
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
}
.testimonial-card footer{
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: var(--green-dark);
}

/* ===== FAQ ===== */
.faq-list{
  max-width: 760px;
  margin: 2.2rem auto 0;
  display: grid;
  gap: .8rem;
}
.faq-item{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
}
.faq-item summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: .98rem;
  color: var(--green-dark);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item .chevron-big{
  width: 10px; height: 10px;
  border-right: 2px solid var(--lavender);
  border-bottom: 2px solid var(--lavender);
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] .chevron-big{ transform: rotate(-135deg); }
.faq-item p{
  margin: .9rem 0 0;
  font-size: .92rem;
}

/* ===== Impacto ===== */
.impact{ background: var(--bg-alt); }
.impact-columns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.4rem;
}
.impact-col h3{ margin-bottom: .6rem; }
.impact-col > p{ margin-bottom: 1.2rem; }
.impact-col ul{
  display: grid;
  gap: .6rem;
  margin-bottom: 1.6rem;
}
.impact-col li{
  font-size: .92rem;
  color: var(--text-soft);
  padding-left: 1.3rem;
  position: relative;
}
.impact-col li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lavender);
}
.impact-col strong{
  color: var(--green-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.impact-photo{
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.impact-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.impact-caption{
  font-size: .82rem;
  font-style: italic;
  color: var(--text-soft);
  margin: .7rem 0 0;
}

@media (max-width: 800px){
  .impact-columns{ grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===== Talleres ===== */
.workshop-card{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  margin-top: 2.2rem;
}
.workshop-photo{
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.workshop-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.workshop-info h3{ margin-bottom: .3rem; }
.workshop-tagline{
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--plum);
  margin-bottom: 1rem;
}
.workshop-includes{
  display: grid;
  gap: .4rem;
  margin-bottom: 1.4rem;
}
.workshop-includes li{
  font-size: .9rem;
  padding-left: 1.2rem;
  position: relative;
}
.workshop-includes li::before{
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-light);
}
.workshop-facts{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem 1.5rem;
  margin-bottom: 1.5rem;
}
.workshop-facts dt{
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: .15rem;
}
.workshop-facts dd{
  margin: 0;
  font-size: .92rem;
  font-weight: 500;
  color: var(--green-dark);
}
.workshop-full{
  display: inline-block;
  padding: .8em 1.3em;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: .9rem;
  margin: 0;
}
.market-note{
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-top: 1.6rem;
  padding: 1.4rem 1.6rem;
  border: 1px dashed var(--lavender-light);
  border-radius: var(--radius-md);
}
.market-note-icon{
  width: 30px; height: 30px;
  flex-shrink: 0;
  color: var(--plum);
}
.market-note h4{ font-size: 1rem; margin-bottom: .3rem; }
.market-note p{ font-size: .9rem; margin: 0; }
@media (max-width: 800px){
  .workshop-card{ grid-template-columns: 1fr; }
  .workshop-facts{ grid-template-columns: 1fr 1fr; }
  .market-note{ flex-direction: column; }
}

/* ===== Comunidad / Newsletter ===== */
.newsletter{
  background: var(--green-dark);
  padding: 2.2rem 0;
  position: relative;
}
.newsletter-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.newsletter p{
  color: #F1EFE4;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  max-width: 480px;
  margin: 0;
}
.newsletter-form{
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"]{
  font-family: 'Lora', serif;
  font-size: .92rem;
  padding: .8em 1.1em;
  border-radius: 999px;
  border: 1px solid transparent;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}
.newsletter-form input[type="email"]:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 183, 220, .45);
}
.newsletter-note{
  max-width: 1140px;
  margin: .8rem auto 0;
  padding: 0 24px;
  font-size: .85rem;
  color: var(--lavender-light);
  min-height: 1.2em;
}

/* ===== Sections ===== */
.section{ padding: 5.5rem 0; }
.section-alt{ background: var(--bg-alt); }

/* ===== Products: escaparate ===== */
.product-showcase{
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  margin-top: 2.8rem;
}
.product-feature{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.product-feature-photo{ order: 1; }
.product-feature-info{ order: 2; }
.product-feature:nth-child(even) .product-feature-photo{ order: 2; }
.product-feature:nth-child(even) .product-feature-info{ order: 1; }
.product-feature-photo{
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-feature-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}
.product-feature:hover .product-feature-photo img{ transform: scale(1.04); }
.product-feature-placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--lavender) 10%, var(--bg-alt));
}
.placeholder-badge{
  width: 96px;
  height: 96px;
  background: color-mix(in srgb, var(--lavender) 18%, transparent);
  color: var(--lavender);
}
.placeholder-badge svg{ width: 44px; height: 44px; }
.product-feature-info .eyebrow{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--lavender);
  margin-bottom: .5rem;
}
.product-feature-info h3{ margin-bottom: .7rem; }
.product-feature-info p{ font-size: .98rem; color: var(--text-soft); }
.card-cta{
  display: inline-block;
  margin-top: .9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--green-dark);
  text-decoration: none;
  transition: transform .2s ease;
}
.card-cta:hover{ transform: translateX(4px); }
@media (max-width: 760px){
  .product-feature{ grid-template-columns: 1fr; gap: 1.4rem; }
  .product-feature-photo, .product-feature:nth-child(even) .product-feature-photo{ order: 1; }
  .product-feature-info, .product-feature:nth-child(even) .product-feature-info{ order: 2; }
  .product-showcase{ gap: 3rem; }
}
.products-note{
  margin-top: 1.8rem;
  font-size: .85rem;
  text-align: center;
  color: var(--text-soft);
  font-style: italic;
}

/* ===== Galería ===== */
.gallery-category{
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 0 0 2.6rem;
}
.gallery-category + .gallery-category{ margin-top: 2.6rem; }
.gallery-category:last-of-type{ border-bottom: none; padding-bottom: 0; }
.gallery-cat-dot{
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--green);
}
.gallery-category:nth-of-type(4n+1) .gallery-cat-dot{ background: var(--green); }
.gallery-category:nth-of-type(4n+2) .gallery-cat-dot{ background: var(--plum); }
.gallery-category:nth-of-type(4n+3) .gallery-cat-dot{ background: var(--clay); }
.gallery-category:nth-of-type(4n+4) .gallery-cat-dot{ background: var(--lavender); }
.gallery-category > summary.gallery-category-title{
  display: flex;
  align-items: center;
  gap: .9rem;
  cursor: pointer;
  list-style: none;
  margin: 0;
  padding-bottom: 0;
  border-bottom: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}
.gallery-category > summary.gallery-category-title::-webkit-details-marker{ display: none; }
.gallery-category .summary-count{
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-left: auto;
  margin-right: .6rem;
}
.gallery-category .chevron-big{
  width: 12px; height: 12px;
  border-right: 2px solid var(--lavender);
  border-bottom: 2px solid var(--lavender);
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.gallery-category[open] .chevron-big{ transform: rotate(-135deg); }
.gallery-category .gallery-category-body{ margin-top: 1.6rem; }
.mini-group-title{
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--lavender);
  margin: 1.8rem 0 .8rem;
}
.mini-group-title:first-of-type{ margin-top: 0; }
.oil-photos{
  display: flex;
  gap: .9rem;
  margin: 1rem 0 1.3rem;
}
.oil-photos img{
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.oil-tags-note{
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-soft);
  margin: 0 0 .8rem;
}
.oil-tags{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  list-style: none;
  margin: 0 0 .4rem;
  padding: 0;
}
.oil-tags li{
  padding: .55em 1.15em;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-family: 'Poppins', sans-serif;
  font-size: .86rem;
  color: var(--text);
}
.oil-tags-more{
  margin: .9rem 0 0;
  padding: .55em 1.2em;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--lavender-light);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--lavender);
  cursor: pointer;
  transition: background .15s ease;
}
.oil-tags-more:hover{ background: var(--bg-alt); }
.mini-group-title + .oil-tags{ margin-top: 1rem; }
.gallery-grid.mini-grid{
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: .8rem;
  margin-top: 0;
}
.gallery-card.mini .gallery-photo{ height: 110px; }
.gallery-card.mini .gallery-info{ padding: .55rem .6rem .7rem; }
.gallery-card.mini .gallery-info h3{
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
.gallery-category-title{
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  margin-top: 1rem;
}
.gallery-card{
  background: var(--card);
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: zoom-in;
}
.gallery-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.gallery-photo{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.gallery-info{ padding: 1.2rem 1.4rem 1.5rem; }
.gallery-info h3{ font-size: 1.05rem; margin-bottom: .35rem; }
.gallery-info p{ font-size: .88rem; margin-bottom: .9rem; }
.price-list{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.price-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4em;
  padding: .3em .9em;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--lavender);
  background: var(--bg-alt);
  border: 1px dashed var(--lavender-light);
}
.price-tag.confirmed{
  color: var(--green-dark);
  border-style: solid;
  border-color: var(--green-light);
}

/* ===== Contact ===== */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-list{ display: grid; gap: 1rem; margin-top: 1.6rem; }
.contact-list li{
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
}
.contact-list span{
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--green-dark);
}
.contact-list span svg{ width: 18px; height: 18px; }
.contact-form{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  gap: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.contact-form label{
  display: grid;
  gap: .4rem;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: var(--green-dark);
}
.contact-form input,
.contact-form textarea{
  font-family: 'Lora', serif;
  font-size: .95rem;
  padding: .8em 1em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: var(--lavender);
  box-shadow: 0 0 0 3px rgba(139, 113, 166, .15);
}
.contact-form .btn{ justify-self: start; }
.form-note{ font-size: .85rem; color: var(--green); min-height: 1.2em; margin: 0; }

.consent-check{
  display: flex;
  align-items: flex-start;
  gap: .55em;
  font-family: 'Lora', serif;
  font-size: .8rem;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
}
.consent-check input[type="checkbox"]{
  margin-top: .2em;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--green);
}
.consent-check a{ color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.consent-check a:hover{ color: var(--green); }
.newsletter-form .consent-check{
  flex-basis: 100%;
  color: #E7E4D8;
  opacity: .85;
}
.newsletter-form .consent-check a{ color: #F1EFE4; }

.legal-content{ max-width: 760px; margin: 0 auto; }
.legal-content h3{
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: var(--green-dark);
  margin: 2rem 0 .5rem;
}
.legal-content h3:first-child{ margin-top: 0; }
.legal-content p, .legal-content li{
  font-family: 'Lora', serif;
  font-size: .96rem;
  line-height: 1.7;
  color: var(--text);
}
.legal-content ul{ margin: .4rem 0; padding-left: 1.2rem; }
.legal-content a{ color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.legal-content .legal-updated{ font-size: .82rem; color: var(--text-soft, #8a8578); margin-top: 2.2rem; }

/* ===== Location ===== */
.location-grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2.5rem;
  margin-top: 1rem;
  align-items: stretch;
}
.location-info{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.location-info h4{
  margin-top: 1.4rem;
  font-size: .95rem;
  color: var(--lavender);
}
.location-note{
  font-size: .8rem;
  font-style: italic;
  margin-top: 1rem;
}
.location-map{
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-sm);
}

/* ===== Botón flotante WhatsApp ===== */
.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float svg{ width: 30px; height: 30px; }
.whatsapp-float:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 32px rgba(37, 211, 102, .55);
}

/* ===== Animaciones al hacer scroll ===== */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}

/* Aparición escalonada dentro de cuadrículas y listas */
.pillars > .reveal:nth-child(1), .steps-grid > .reveal:nth-child(1), .impact-columns > .reveal:nth-child(1),
.testimonials-grid > .reveal:nth-child(1), .faq-list > .reveal:nth-child(1), .mission-grid > .reveal:nth-child(1),
.gallery-grid > .reveal:nth-child(1), .product-showcase > .reveal:nth-child(1){ transition-delay: .05s; }

.pillars > .reveal:nth-child(2), .steps-grid > .reveal:nth-child(2), .impact-columns > .reveal:nth-child(2),
.testimonials-grid > .reveal:nth-child(2), .faq-list > .reveal:nth-child(2), .mission-grid > .reveal:nth-child(2),
.gallery-grid > .reveal:nth-child(2), .product-showcase > .reveal:nth-child(2){ transition-delay: .1s; }

.pillars > .reveal:nth-child(3), .steps-grid > .reveal:nth-child(3), .impact-columns > .reveal:nth-child(3),
.testimonials-grid > .reveal:nth-child(3), .faq-list > .reveal:nth-child(3), .mission-grid > .reveal:nth-child(3),
.gallery-grid > .reveal:nth-child(3), .product-showcase > .reveal:nth-child(3){ transition-delay: .15s; }

.pillars > .reveal:nth-child(4), .steps-grid > .reveal:nth-child(4), .impact-columns > .reveal:nth-child(4),
.testimonials-grid > .reveal:nth-child(4), .faq-list > .reveal:nth-child(4), .mission-grid > .reveal:nth-child(4),
.gallery-grid > .reveal:nth-child(4), .product-showcase > .reveal:nth-child(4){ transition-delay: .2s; }

.pillars > .reveal:nth-child(5), .steps-grid > .reveal:nth-child(5), .impact-columns > .reveal:nth-child(5),
.testimonials-grid > .reveal:nth-child(5), .faq-list > .reveal:nth-child(5), .mission-grid > .reveal:nth-child(5),
.gallery-grid > .reveal:nth-child(5), .product-showcase > .reveal:nth-child(5){ transition-delay: .25s; }

.pillars > .reveal:nth-child(6), .steps-grid > .reveal:nth-child(6), .impact-columns > .reveal:nth-child(6),
.testimonials-grid > .reveal:nth-child(6), .faq-list > .reveal:nth-child(6), .mission-grid > .reveal:nth-child(6),
.gallery-grid > .reveal:nth-child(6), .product-showcase > .reveal:nth-child(6){ transition-delay: .3s; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; transition-delay: 0s !important; }
}

/* ===== Barra de scroll ===== */
html{ scrollbar-width: thin; scrollbar-color: var(--lavender-light) transparent; }
::-webkit-scrollbar{ width: 10px; height: 10px; }
::-webkit-scrollbar-track{ background: transparent; }
::-webkit-scrollbar-thumb{ background: var(--lavender-light); border-radius: 999px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover{ background: var(--lavender); }

/* ===== Lightbox ===== */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: rgba(20, 20, 15, 0.92);
  cursor: zoom-out;
  animation: lightbox-in .2s ease;
}
.lightbox[hidden]{ display: none; }
.lightbox img{
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: default;
}
.lightbox-close{
  position: absolute;
  top: 22px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.lightbox-close:hover{ background: rgba(255, 255, 255, 0.3); }

@keyframes lightbox-in{
  from{ opacity: 0; }
  to{ opacity: 1; }
}
@media (prefers-reduced-motion: reduce){
  .lightbox{ animation: none; }
}

/* ===== Footer ===== */
.site-footer{
  background: var(--green-dark);
  color: #E7E4D8;
  padding: 3.2rem 0 0;
  border-top: 1px solid rgba(231, 228, 216, .18);
}
.footer-social{
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem;
}
.footer-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(231, 228, 216, .28);
  color: inherit;
  transition: background .2s ease, border-color .2s ease;
}
.footer-social a:hover{ background: rgba(231, 228, 216, .12); border-color: rgba(231, 228, 216, .5); }
.footer-social svg{ width: 16px; height: 16px; }
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.4rem;
  padding-bottom: 2.2rem;
}
.footer-brand-logo{
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .9rem;
}
.footer-brand-logo img{ width: 38px; height: 38px; border-radius: 50%; }
.footer-brand-logo span{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #F1EFE4;
}
.footer-brand p{
  margin: 0;
  max-width: 320px;
  font-size: .88rem;
  line-height: 1.6;
  color: inherit;
  opacity: .78;
}
.footer-col{
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-col h4{
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #F1EFE4;
  opacity: .9;
  margin: 0 0 .4rem;
}
.footer-col a, .footer-col span{
  font-size: .88rem;
  color: inherit;
  opacity: .8;
}
.footer-col a:hover{ opacity: 1; text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(231, 228, 216, .15);
  font-size: .82rem;
}
.footer-bottom p{ margin: 0; color: inherit; opacity: .75; }
.footer-legal-links{ display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-legal-links a{ color: inherit; opacity: .8; text-decoration: underline; text-underline-offset: 2px; font-size: .82rem; }
.footer-legal-links a:hover{ opacity: 1; }
.footer-notice{
  margin: 0;
  padding: .9rem 0 1.4rem;
  border-top: 1px solid rgba(231, 228, 216, .1);
  text-align: center;
}
.footer-notice p{
  margin: 0;
  color: inherit;
  opacity: .65;
  font-size: .76rem;
}
@media (max-width: 760px){
  .footer-grid{ grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .pillars{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .location-grid{ grid-template-columns: 1fr; }
  .location-map{ min-height: 280px; }
}

@media (max-width: 760px){
  .main-nav{
    position: fixed;
    top: var(--header-h, 76px);
    left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.6rem;
    padding: 2.2rem 1.5rem 3rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 1.1rem;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .main-nav.open{ transform: translateX(0) !important; }
  .nav-toggle{ display: flex; }
  .hero{ padding: 3.5rem 0 4rem; }
  .hero-decor{ width: 320px; height: 320px; top: -80px; right: -120px; }
  .section{ padding: 3.8rem 0; }
}

@media (max-width: 480px){
  .pillars{ grid-template-columns: 1fr; }
  .hero-cta{ flex-direction: column; align-items: stretch; }
  .btn{ text-align: center; }
}

/* ===== Aviso de cookies ===== */
.cookie-banner{
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 400;
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.cookie-banner[hidden]{ display: none; }
.cookie-banner p{
  margin: 0;
  flex: 1 1 260px;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--text);
}
.cookie-banner p a{ color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions{ display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-banner .btn{ padding: .6em 1.2em; font-size: .85rem; }
