* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
}

.site-header {
  width: 100%;
  background: #f3f3f3;
  position: relative;
  border-bottom: 1px solid #ececec;
}

/* Barra superior */
.top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 40px 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-email {
  font-size: 13px;
  color: #cfcfcf;
  text-decoration: none;
  transition: 0.3s;
}

.top-email:hover {
  color: #b89bc9;
}

.top-user {
  width: 24px;
  height: 24px;
  border: 1px solid #cfcfcf;
  color: #9e9e9e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  transition: 0.3s;
}

.top-user:hover {
  border-color: #b89bc9;
  color: #b89bc9;
}

/* Header principal */
.header-main {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px 18px;
  position: relative;
}

/* Izquierda */
.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 220px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e9cbed;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Logo centrado */
.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}

/* Menú */
.header-nav {
  margin-left: auto;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.header-nav ul li {
  position: relative;
}

.header-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #d8d8d8;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: #c7a3d6;
}

/* Dropdown */
.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown {
  position: absolute;
  top: 140%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 10px 0;
  display: none !important;
  z-index: 20;
}

.dropdown li {
  width: 100%;
}

.dropdown li a {
  display: block;
  padding: 10px 16px;
  color: #8e8e8e;
  font-size: 14px;
  font-weight: 600;
}

.dropdown li a:hover {
  background: #faf7fc;
  color: #c7a3d6;
}

.has-dropdown:hover .dropdown {
  display: block !important;
}

/* Botón menú mobile */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #b89bc9;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1100px) {
  .header-logo img {
    width: 100px;
    height: 100px;
  }

  .header-nav ul {
    gap: 18px;
  }

  .header-nav a {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .header-main {
    padding: 0 20px 20px;
    min-height: 95px;
  }

  .header-left {
    width: auto;
    gap: 10px;
  }

  .header-logo {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .header-logo img {
    width: 85px;
    height: 85px;
  }

  .menu-toggle {
    display: block;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    width: 260px;
    background: #ffffff;
    border: 1px solid #ececec;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 18px;
    display: none;
    z-index: 99;
  }

  .header-nav.open {
    display: block;
  }

  .header-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .dropdown {
    position: static;
    display: block !important;
    box-shadow: none;
    border: none;
    padding: 8px 0 0 10px;
  }

  .dropdown li a {
    padding: 6px 0;
  }
}

@media (max-width: 600px) {
  .top-bar {
    padding: 8px 15px 0;
  }

  .top-email {
    font-size: 11px;
  }

  .header-main {
    padding: 0 15px 15px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .header-logo img {
    width: 75px;
    height: 75px;
  }
}

.hero-parallax {
  position: relative;
  min-height: 100vh;

  /* 🔥 TU IMAGEN */
  background-image: url("/imagenes/Torta\ 1.jpg");

  background-size: cover;
  background-position: left center; /* 👈 clave para que se vea como tu captura */
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Overlay para que el texto se lea bien */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.1)
  );
  z-index: 1;
}

/* Contenido */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-left: 60px;
  margin-top: 120px;
}

/* Texto */
.hero-content h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.05;
  color: #fff;
}

/* Botón */
.hero-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7aa2, #ff4f87);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 79, 135, 0.3);
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    padding-left: 20px;
    margin-top: 80px;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }
}

/* 🔥 FUENTES (MUY IMPORTANTE) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@300;400;500&display=swap');

.about-wogh {
  background: #f4f5f6;
  padding: 100px 20px;
}

/* CONTENEDOR */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* IZQUIERDA */
.about-left {
  flex: 1;
}

.about-tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #7d8b99;
  display: block;
  margin-bottom: 25px;
}

/* 🔥 TITULO (este es el estilo de la imagen) */
.about-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.2;
  color: #1c2b39;
  font-weight: 600;
  max-width: 400px;
}

/* LINEA */
.about-line {
  width: 60px;
  height: 2px;
  background: #1c2b39;
  margin-top: 30px;
}

/* DERECHA */
.about-right {
  flex: 1.2;
}

/* TEXTO */
.about-right p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #3b4a59;
  margin-bottom: 20px;
  max-width: 520px;
}

/* NEGRITA */
.about-right strong {
  font-weight: 500;
  color: #1c2b39;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-left h2 {
    font-size: 32px;
  }

  .about-right p {
    font-size: 15px;
  }
}


.quote-section {
  position: relative;
  min-height: 100vh;
  background-image: url("/imagenes/Emprendimiento.jpg"); /* cambiá por tu imagen */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.quote-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
}

.quote-mark {
  font-size: 110px;
  line-height: 1;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 0.95;
}

.quote-content p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.2vw, 4rem);
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
  max-width: 1500px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}


.productos {
  background: #f3d9d7;
  padding: 90px 20px;
}

.productos-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.productos-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: #17365d;
  margin-bottom: 22px;
  font-weight: 700;
}

.productos-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #17365d;
  margin-bottom: 8px;
}

.productos-medidas p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #17365d;
  margin: 0;
}

.productos-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.producto-card {
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform: scale(1);
}

.producto-card img {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  margin: 0 auto 24px;
  transition: transform 0.35s ease;
}

.producto-card h3 {
  font-size: 2rem;
  color: #17365d;
  margin-bottom: 18px;
  font-weight: 700;
}

.producto-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #17365d;
  max-width: 260px;
  margin: 0 auto 24px;
}

.btn-producto {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: #ff6f93;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-producto:hover {
  transform: translateY(-2px);
  background: #ff5d86;
}

.producto-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.producto-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 1000px) {
  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .productos {
    padding: 70px 16px;
  }

  .productos-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .producto-card h3 {
    font-size: 1.7rem;
  }

  .producto-card p,
  .productos-intro,
  .productos-medidas p {
    font-size: 1rem;
  }
}

.beneficios {
  background: #b57f68; /* mismo tono que tu imagen */
  padding: 70px 20px;
}

.beneficios-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  text-align: center;
}

/* ITEM */
.beneficio-item {
  flex: 1;
  color: #fff;
}

/* ICONO */
.beneficio-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

/* TEXTO */
.beneficio-item p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

/* 🔥 EFECTO INICIAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* 🔥 CUANDO APARECE */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .beneficios-container {
    flex-direction: column;
    gap: 40px;
  }

  .beneficio-item p {
    font-size: 20px;
  }
}

/* ===== COMENTARIOS ===== */
.comentarios {
  background: #f3f4f6;
  padding: 90px 20px 110px;
}

.comentarios-container {
  max-width: 1240px;
  margin: 0 auto;
}

.comentarios-header {
  margin-bottom: 60px;
}

.comentarios-header h2 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 700;
  color: #17365d;
  margin: 0;
}

.comentarios-line {
  width: 66px;
  height: 2px;
  background: #17365d;
  margin-top: 38px;
}

.comentarios-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  column-gap: 130px;
  row-gap: 65px;
  align-items: start;
}

.comentario-card {
  max-width: 470px;
}

.comentario-texto {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #415a77;
  font-weight: 600;
  margin: 0 0 26px;
}

.comentario-nombre {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: #4e6078;
  line-height: 1.2;
}

/* ===== EFECTO APARICIÓN ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(55px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .comentarios-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 48px;
  }

  .comentario-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .comentarios {
    padding: 70px 16px 90px;
  }

  .comentarios-header {
    margin-bottom: 44px;
  }

  .comentarios-line {
    margin-top: 24px;
  }

  .comentario-texto {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .comentario-nombre {
    font-size: 1.7rem;
  }
}

.site-footer {
  background: #b57f68;
  color: #fff;
  padding: 70px 20px 25px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.footer-brand h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-brand p {
  max-width: 360px;
  line-height: 1.8;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links h4,
.footer-contacto h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-links ul,
.footer-contacto ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contacto li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contacto a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover,
.footer-contacto a:hover {
  opacity: 0.75;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}