
/* palette and rest same as v2 */ 
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Poppins:wght@400;600&display=swap');
:root{
  --green-dark:#1F2B1E;
  --green-sage:#647C66;
  --beige:#F1EEE6;
  --gold:#C8AD6E;
  --coral:#C9806E;
  --text-dark:#0E1B15;
  --shadow:0 4px 12px rgba(0,0,0,.08);
}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Poppins',sans-serif;background:var(--beige);color:var(--text-dark);line-height:1.6;-webkit-font-smoothing:antialiased}
h1,h2,h3{font-family:'Playfair Display',serif;color:var(--text-dark)}
a{text-decoration:none;color:inherit}
.container{max-width:1200px;margin:auto;padding:0 1rem}
.btn{display:inline-block;padding:.75rem 1.5rem;border:none;border-radius:6px;font-weight:600;cursor:pointer;transition:.3s}
.btn-primary{background:var(--coral);color:#fff}.btn-primary:hover{filter:brightness(1.1);box-shadow:0 4px 12px rgba(201,128,110,.4)}
.btn-secondary{background:transparent;color:var(--green-dark);border:2px solid var(--green-dark)}.btn-secondary:hover{background:var(--green-dark);color:#fff}
header{position:fixed;top:0;left:0;width:100%;background:rgba(31,43,30,.8);backdrop-filter:blur(6px);display:flex;justify-content:space-between;align-items:center;padding:1rem 2rem;z-index:1000;flex-wrap:nowrap;gap:1rem}
header img{height:44px}
.nav-links{display:flex;gap:1.5rem;list-style:none}
.nav-links a{color:#fff;font-weight:500;position:relative;padding-bottom:.25rem}
.nav-links a::after{content:"";position:absolute;left:0;bottom:0;width:0;height:2px;background:var(--gold);transition:.3s}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
#menu-toggle{display:none;flex-direction:column;gap:4px;cursor:pointer}
#menu-toggle span{width:24px;height:3px;background:#fff;border-radius:2px}
/* HERO GRID NUEVO DISEÑO */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  align-items: center;
  min-height: calc(100vh - 80px);
  background: var(--beige);
  gap: 0 3rem;
  padding: 0 2rem;
}
.hero-img-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.hero-img-effect {
  margin: 0 auto 0 0;
}
.hero-img-effect img {
  display: block;
  width: 480px; /* antes 380px */
  max-width: 100vw;
  max-height: 540px; /* antes 420px */
  height: auto;
  border-radius: 16px;
  transition: transform 0.5s cubic-bezier(.25,.8,.25,1), filter 0.5s;
  filter: grayscale(10%) contrast(1.08) brightness(1.05);
  object-fit: cover;
}
.hero-img-effect:hover img {
  transform: scale(1.06) rotate(-1deg);
  filter: grayscale(0%) contrast(1.15) brightness(1.1) drop-shadow(0 4px 24px var(--coral));
}
@keyframes borderGlow {
  0% { box-shadow: 0 0 0 0 var(--coral), 0 8px 32px rgba(0,0,0,0.18); }
  100% { box-shadow: 0 0 24px 8px var(--gold), 0 8px 32px rgba(0,0,0,0.18); }
}
#hero {
  background: var(--beige);
  min-height: 100vh;
  position: relative;
  box-shadow: none;
  text-align: left;
  padding: 80px 0 0 0; /* Compensa header fijo */
}
.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 600px;
  margin-left: 0;
  padding: 2rem 0;
  z-index: 2;
}
.hero-inner h1 {
  font-size: clamp(2.5rem,6vw,4rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero-inner p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--green-sage);
  font-weight: 500;
}
.hero-highlight {
  display: inline-block;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.5em 1.2em;
  border-radius: 24px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(200,128,110,0.12);
  animation: popIn 1.2s cubic-bezier(.5,1.8,.5,1) 1;
}
@keyframes popIn {
  0% { transform: scale(0.7) translateY(-30px); opacity: 0; }
  80% { transform: scale(1.05) translateY(5px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.grid {
  display: grid;
  gap: 2rem;
}
#hero.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  background: var(--beige);
  min-height: 100vh;
  position: relative;
  box-shadow: none;
  text-align: left;
  padding: 80px 0 0 0;
}
@media (max-width: 900px) {
  #hero.grid {
    grid-template-columns: 1fr;
    padding: 60px 0 0 0;
  }
  .hero-img-effect img {
    max-width: 95vw;
    max-height: 260px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    min-height: unset;
    gap: 2rem 0;
  }
  .hero-img-col {
    justify-content: center;
    margin-bottom: 2rem;
    height: auto;
  }
  .hero-inner {
    text-align: center;
    margin: 0 auto;
    padding: 0 0 2rem 0;
    height: auto;
  }
}
section{padding:5rem 1rem}
#about{grid-template-columns:repeat(auto-fit,minmax(300px,1fr));align-items:center}
.about-img img{
  width: 520px; /* antes 480px */
  max-width: 100vw;
  max-height: 650px; /* antes 540px */
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius:16px;
  box-shadow:var(--shadow)
}
#about.container.grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  align-items: center;
  gap: 3rem;
}
#about .about-img { order: 2; }
#about .about-text { order: 1; }
.card{background:#fff;border-radius:12px;padding:2rem;text-align:center;box-shadow:var(--shadow)}
.card svg{width:48px;height:48px;fill:var(--gold);margin-bottom:.75rem}
#pillars .card{border-top:4px solid var(--green-sage)}
#lifestyle{background:#EEF1ED}
.testimonial{background:#fff;border-radius:12px;box-shadow:var(--shadow);padding:2rem 1.5rem;display:flex;gap:1.5rem;align-items:center}
.testimonial img{width:80px;height:80px;border-radius:50%;object-fit:cover;border:2px solid var(--gold)}
footer{background:var(--green-dark);color:#F9F6EF;text-align:center;padding:2rem 1rem;margin-top:4rem}
footer a{color:var(--gold)}
@media(max-width:768px){#menu-toggle{display:flex}.nav-links{position:fixed;top:0;right:-100%;height:100vh;width:60%;background:var(--green-dark);flex-direction:column;align-items:center;justify-content:center;transition:.3s}.nav-links.open{right:0}.testimonial{flex-direction:column;text-align:center}}
@media(max-width:900px){
  #about.container.grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #about .about-img, #about .about-text { order: unset; }
  .about-img img { width: 100%; max-width: 100vw; max-height: 420px; }
}
.logo-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  background: none;
  flex-shrink: 0;
  z-index: 1001;
  position: relative;
}
.logo-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(200,173,110,0.10));
}
.logo-main {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--green-dark);
  margin-right: 0.3rem;
}
.logo-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--coral);
  letter-spacing: 1px;
  margin-left: 0.2rem;
  font-family: 'Poppins', sans-serif;
  opacity: 0.85;
}
header {
  /* Asegura espacio para el logo más grande */
  min-height: 60px;
}
.header-actions{
  display:flex;
  align-items:center;
  gap:1.5rem;
  flex-shrink:0;
  position:relative;
  z-index:1001;
}
.language-toggle{
  display:flex;
  align-items:center;
  gap:0.25rem;
  padding:0.2rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.25);
  background:rgba(255,255,255,0.08);
  box-shadow:0 6px 16px rgba(0,0,0,0.15);
  backdrop-filter:blur(6px);
  position:relative;
  z-index:1002;
  flex-shrink:0;
}
.lang-option{
  display:flex;
  align-items:center;
  gap:0.35rem;
  border:none;
  background:transparent;
  color:#fff;
  font-weight:600;
  font-size:0.9rem;
  padding:0.35rem 0.8rem;
  border-radius:999px;
  cursor:pointer;
  transition:background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
  position:relative;
  z-index:1003;
  pointer-events:auto;
}
.lang-option .flag-emoji{
  font-size:1.3rem;
  line-height:1;
  display:inline-block;
  filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.lang-option img{
  border-radius:50%;
  width:20px;
  height:20px;
  box-shadow:0 0 0 2px rgba(255,255,255,0.35);
}
.lang-option.active{
  background:#fff;
  color:var(--green-dark);
  box-shadow:0 8px 18px rgba(0,0,0,0.18);
  transform:translateY(-1px);
}
.lang-option span:not(.flag-emoji){
  white-space:nowrap;
}
@media(max-width:600px){
  .logo-main{font-size:1.1rem}
  .logo-sub{font-size:0.85rem}
  .logo-icon{width:28px;height:28px}
}
.social-float {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  z-index: 1200;
}
.social-ico {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(31,43,30,0.10), 0 1.5px 6px rgba(200,128,110,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 2px solid #F1EEE6;
}
.social-ico:hover {
  transform: translateY(-3px) scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(201,128,110,0.18), 0 2px 8px rgba(31,43,30,0.10);
}
.social-ico svg { display: block; }
@media(max-width:600px){
  .social-float { right: 1rem; bottom: 1rem; gap: 0.7rem; }
  .social-ico { width: 40px; height: 40px; }
}
@media(max-width:900px){
  header{
    padding:0.8rem 1rem;
    gap:0.5rem;
  }
  .header-actions{
    gap:0.8rem;
    flex-wrap:nowrap;
  }
  .language-toggle{
    order:0;
    margin-right:0.5rem;
  }
  nav{
    order:1;
  }
}
@media(max-width:600px){
  .language-toggle{
    padding:0.15rem;
    border-radius:16px;
    background:rgba(255,255,255,0.15);
  }
  .lang-option{
    padding:0.3rem;
  }
  .lang-option span{
    display:none;
  }
  .lang-option img{
    width:18px;
    height:18px;
  }
}
