/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --verde:          #5C7A62;
  --verde-claro:    #8FAF95;
  --verde-fondo:    #EDF2EE;
  --durazno:        #C8785A;
  --durazno-claro:  #E4A98C;
  --durazno-fondo:  #FBF0EA;
  --lavanda:        #9B8CB5;
  --lavanda-fondo:  #F2EFF7;
  --beige:          #F2EBE0;
  --beige-oscuro:   #DDD0BC;
  --blanco:         #FDFAF6;
  --texto:          #2C2118;
  --texto-suave:    #6B5848;
  --sombra:         rgba(44,33,24,0.08);
  --radio:          14px;
  --transicion:     0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--blanco);
  color: var(--texto);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.25;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.contenedor {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.seccion { padding: 80px 0; }

.etiqueta {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--durazno);
  margin-bottom: 16px;
}

/* BUTTONS */
.btn-principal {
  display: inline-block;
  background: var(--durazno);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: background var(--transicion), transform var(--transicion);
  cursor: pointer;
  border: none;
}
.btn-principal:hover { background: #b06042; transform: translateY(-2px); }

.btn-secundario {
  display: inline-block;
  background: transparent;
  color: var(--verde);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--verde);
  transition: all var(--transicion);
}
.btn-secundario:hover { background: var(--verde); color: #fff; }

/* =============================================
   NAVEGACIÓN
============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--beige-oscuro);
  padding: 16px 0;
}

nav .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--verde);
}

.nav-logo span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--texto-suave);
  letter-spacing: 1px;
}

.nav-cta {
  background: var(--durazno);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transicion);
}
.nav-cta:hover { background: #b06042; }

/* =============================================
   HERO
============================================= */
#hero {
  background: linear-gradient(145deg, var(--durazno-fondo) 0%, var(--beige) 50%, var(--lavanda-fondo) 100%);
  padding: 160px 0 100px;
  overflow: hidden;
  position: relative;
}

.hero-deco-1 {
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
  background: rgba(200,120,90,0.09);
  pointer-events: none;
}

.hero-deco-2 {
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
  background: rgba(92,122,98,0.07);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--beige-oscuro);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--texto-suave);
  margin-bottom: 24px;
}

.hero-badge strong { color: var(--durazno); }

#hero h1 {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  color: var(--texto);
  margin-bottom: 20px;
  font-weight: 600;
}

#hero h1 em {
  font-style: italic;
  color: var(--durazno);
}

.hero-puv {
  font-size: 17px;
  color: var(--texto-suave);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-botones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-credenciales {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--texto-suave);
  font-weight: 500;
}

.hero-cred-item .icono {
  width: 32px; height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 2px 8px var(--sombra);
}

.hero-imagen {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-foto-wrap {
  width: 420px;
  height: 520px;
  border-radius: 50% 50% 42% 42% / 45% 45% 38% 38%;
  background: var(--beige-oscuro);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(44,33,24,0.14);
}

.hero-foto-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-card-flotante {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: #fff;
  border-radius: var(--radio);
  padding: 16px 20px;
  box-shadow: 0 8px 32px var(--sombra);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 200px;
}

.hero-card-flotante .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--durazno);
  line-height: 1;
}

.hero-card-flotante p {
  font-size: 11px;
  color: var(--texto-suave);
  line-height: 1.4;
}

/* =============================================
   ¿TE IDENTIFICAS?
============================================= */
#identificas {
  background: var(--texto);
  padding: 80px 0;
}

#identificas .etiqueta { color: var(--durazno-claro); }

#identificas h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 48px;
  max-width: 620px;
  font-weight: 500;
}

.identificas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.identificas-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radio);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background var(--transicion), border-color var(--transicion);
}

.identificas-item:hover {
  background: rgba(200,120,90,0.1);
  border-color: rgba(200,120,90,0.3);
}

.identificas-item .punto {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--durazno-claro);
  margin-top: 8px;
  flex-shrink: 0;
}

.identificas-item p { color: rgba(255,255,255,0.85); font-size: 15px; }

.identificas-cierre {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-bottom: 32px;
}

.identificas-cierre strong { color: #fff; }

/* =============================================
   SOBRE
============================================= */
#sobre { background: var(--blanco); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.sobre-foto-wrap {
  border-radius: 50% 50% 30% 30% / 40% 40% 25% 25%;
  overflow: hidden;
  background: var(--beige);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px var(--sombra);
  position: relative;
}

.sobre-foto-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.sobre-foto-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(200,120,90,0.12), transparent);
  pointer-events: none;
}

.sobre-contenido h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 8px;
  font-weight: 600;
}

.sobre-contenido .subtitulo {
  color: var(--durazno);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.historia-placeholder {
  background: linear-gradient(135deg, var(--durazno-fondo), var(--lavanda-fondo));
  border-left: 4px solid var(--durazno);
  border-radius: 0 var(--radio) var(--radio) 0;
  padding: 28px;
  margin-bottom: 28px;
  position: relative;
}

.historia-placeholder::before {
  content: '✏️ HISTORIA PERSONAL';
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--durazno);
  margin-bottom: 12px;
}

.historia-placeholder p {
  color: var(--texto-suave);
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
}

.sobre-texto {
  color: var(--texto-suave);
  margin-bottom: 20px;
  font-size: 16px;
}

.credenciales-lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.credencial-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--beige);
  border-radius: var(--radio);
}

.credencial-item .icono { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.credencial-item div { font-size: 14px; }
.credencial-item strong { display: block; color: var(--texto); margin-bottom: 2px; }
.credencial-item span { color: var(--texto-suave); }

/* =============================================
   FRASE DESTACADA
============================================= */
#frase {
  background: linear-gradient(135deg, var(--verde) 0%, #3a5840 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#frase::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 40% 60% 45% 55%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

#frase::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 250px; height: 250px;
  border-radius: 60% 40% 55% 45%;
  background: rgba(200,120,90,0.1);
  pointer-events: none;
}

#frase .contenedor { position: relative; z-index: 1; }

#frase blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto 20px;
  font-weight: 400;
}

#frase .comilla {
  font-size: 1.2em;
  color: rgba(255,255,255,0.35);
}

#frase cite {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: normal;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =============================================
   SERVICIOS
============================================= */
#servicios { background: var(--beige); }

#servicios h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
  font-weight: 600;
}

#servicios .intro {
  color: var(--texto-suave);
  max-width: 560px;
  margin-bottom: 48px;
  font-size: 16px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.servicio-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: transform var(--transicion), box-shadow var(--transicion);
  border: 2px solid transparent;
}

.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px var(--sombra);
}

.servicio-card.principal {
  border-color: var(--durazno);
  background: linear-gradient(160deg, #fff 60%, var(--durazno-fondo));
}

.servicio-card.taller {
  border-color: var(--lavanda);
  background: linear-gradient(160deg, #fff 60%, var(--lavanda-fondo));
}

.servicio-card .badge-principal {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--durazno);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
}

.servicio-emoji { font-size: 40px; margin-bottom: 20px; }

.servicio-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--texto);
  font-weight: 600;
}

.servicio-card p {
  color: var(--texto-suave);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.75;
}

.servicio-card .btn-servicio {
  display: inline-block;
  color: var(--verde);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 2px solid var(--verde);
  padding-bottom: 2px;
  transition: opacity var(--transicion);
}

.servicio-card .btn-servicio:hover { opacity: 0.7; }

.servicio-card.principal .btn-servicio {
  background: var(--durazno);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
}
.servicio-card.principal .btn-servicio:hover { opacity: 1; background: #b06042; }

.servicio-card.taller .btn-servicio { color: var(--lavanda); border-color: var(--lavanda); }

/* =============================================
   PROCESO
============================================= */
#proceso { background: var(--blanco); }

#proceso h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
  font-weight: 600;
}

#proceso .intro {
  color: var(--texto-suave);
  max-width: 560px;
  margin-bottom: 64px;
  font-size: 16px;
}

.proceso-lista {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.proceso-lista::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--durazno), var(--lavanda), var(--verde));
}

.proceso-item {
  display: flex;
  gap: 32px;
  padding: 0 0 48px;
  position: relative;
}

.proceso-item:last-child { padding-bottom: 0; }

.proceso-num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--durazno), var(--durazno-claro));
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--durazno-fondo);
}

.proceso-contenido { padding-top: 12px; }

.proceso-contenido h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--texto);
  font-weight: 600;
}

.proceso-contenido p {
  color: var(--texto-suave);
  font-size: 15px;
  line-height: 1.75;
}

.proceso-cierre {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--durazno-fondo), var(--lavanda-fondo));
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.proceso-cierre .icono { font-size: 36px; flex-shrink: 0; }
.proceso-cierre p { font-size: 15px; color: var(--texto-suave); }
.proceso-cierre strong { color: var(--texto); }

/* =============================================
   TALLERES
============================================= */
#talleres {
  background: var(--verde-fondo);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#talleres::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 350px; height: 350px;
  border-radius: 40% 60% 55% 45%;
  background: rgba(92,122,98,0.08);
  pointer-events: none;
}

#talleres h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
  font-weight: 600;
}

#talleres .intro {
  color: var(--texto-suave);
  max-width: 600px;
  margin-bottom: 48px;
  font-size: 16px;
}

.taller-destacado {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  position: relative;
  box-shadow: 0 12px 48px var(--sombra);
  border: 2px solid var(--verde-claro);
  max-width: 820px;
  margin: 0 auto 32px;
}

.taller-badge {
  position: absolute;
  top: -14px; left: 36px;
  background: var(--verde);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
}

.taller-contenido {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

.taller-icono { font-size: 56px; flex-shrink: 0; }

.taller-texto h3 {
  font-size: 2rem;
  color: var(--texto);
  margin-bottom: 12px;
  font-weight: 600;
}

.taller-texto p {
  color: var(--texto-suave);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.75;
}

.taller-beneficios {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.taller-beneficios li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--texto-suave);
}

.taller-beneficios li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--verde-fondo);
  color: var(--verde);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.talleres-nota {
  text-align: center;
  font-size: 15px;
  color: var(--texto-suave);
}

.talleres-nota a {
  color: var(--verde);
  font-weight: 600;
  border-bottom: 1px solid var(--verde);
}

/* =============================================
   TESTIMONIOS
============================================= */
#testimonios { background: var(--blanco); }

#testimonios h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 48px;
  font-weight: 600;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonio-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px var(--sombra);
  border: 1px solid var(--beige-oscuro);
}

.testimonio-card.placeholder {
  border: 2px dashed var(--beige-oscuro);
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
}

.testimonio-card.placeholder::before {
  content: '⭐ TESTIMONIO PENDIENTE';
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--durazno);
  margin-bottom: 12px;
}

.testimonio-card.placeholder p {
  font-size: 13px;
  color: var(--texto-suave);
}

/* =============================================
   FAQ
============================================= */
#faq { background: var(--beige); }

#faq h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 48px;
  font-weight: 600;
}

.faq-lista {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--beige-oscuro);
  border-radius: var(--radio);
  overflow: hidden;
  background: #fff;
}

.faq-pregunta {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--texto);
  transition: background var(--transicion);
}

.faq-pregunta:hover { background: var(--durazno-fondo); }
.faq-pregunta.activa { background: var(--durazno-fondo); color: var(--durazno); }

.faq-icono {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--durazno);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transicion);
}

.faq-pregunta.activa .faq-icono {
  transform: rotate(45deg);
  background: var(--durazno);
  color: #fff;
}

.faq-respuesta {
  display: none;
  padding: 0 24px 20px;
  background: var(--durazno-fondo);
  color: var(--texto-suave);
  font-size: 15px;
  line-height: 1.75;
}

.faq-respuesta.visible { display: block; }

/* =============================================
   CTA FINAL
============================================= */
#cta-final {
  background: linear-gradient(135deg, var(--durazno) 0%, #9e5238 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

#cta-final::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

#cta-final h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  font-weight: 600;
}

#cta-final p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-botones {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-blanco {
  background: #fff;
  color: var(--durazno);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: transform var(--transicion), box-shadow var(--transicion);
}

.btn-blanco:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-borde-blanco {
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all var(--transicion);
}

.btn-borde-blanco:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.cta-disponibilidad {
  margin-top: 32px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  position: relative;
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--texto);
  padding: 48px 0 32px;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-logo span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.footer-desc { font-size: 14px; line-height: 1.7; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

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

.footer-col ul li { font-size: 14px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transicion);
}

.footer-col ul li a:hover { color: var(--durazno-claro); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; }
.footer-bottom a { color: var(--durazno-claro); }

/* =============================================
   WHATSAPP FLOTANTE
============================================= */
.whatsapp-flotante {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transicion), box-shadow var(--transicion);
}

.whatsapp-flotante:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-flotante svg { width: 32px; height: 32px; }

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--texto);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transicion);
}

.whatsapp-flotante:hover .whatsapp-tooltip { opacity: 1; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 768px) {
  .seccion { padding: 60px 0; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-imagen { order: -1; }
  .hero-foto-wrap { width: 280px; height: 340px; margin: 0 auto; }
  .hero-card-flotante { left: 0; bottom: 20px; }
  #hero { padding: 120px 0 60px; }
  .hero-deco-1, .hero-deco-2 { display: none; }

  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .proceso-lista::before { left: 22px; }
  .proceso-num { width: 46px; height: 46px; font-size: 18px; }

  .taller-contenido { flex-direction: column; }
  .taller-destacado { padding: 32px 24px; }
  .taller-icono { font-size: 40px; }

  .hero-botones { flex-direction: column; }
  .btn-principal, .btn-secundario { text-align: center; }
}

@media (max-width: 480px) {
  .cta-botones { flex-direction: column; align-items: center; }
  .hero-credenciales { flex-direction: column; gap: 12px; }
  .proceso-cierre { flex-direction: column; }
}
