:root {
  --verde: #6A704C;
  --crema: #6A704C;
  --gris: #2D2C2A;
  --marron: #7F6044;
}

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

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--crema);
  color: var(--gris);
  line-height: 1.6;
}

@font-face {
  font-family: 'Vividly';
  src: url('/static/fonts/Vividly-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}


/* HEADER */
header {
  position: sticky;
  top: 0;
  background-color: #6A704C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
  z-index: 10;
}

.logo img {
  height: 36px;
}
/* Links del menú */
header nav a {
  font-family: 'Vividly', 'Quicksand', 'Poppins', sans-serif;
  text-transform: none;
  letter-spacing: 0.12em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.4rem;
}

.site-nav a {
  font-family: 'Vividly', sans-serif;
  text-transform: none;
  letter-spacing: 0.12em;
  font-size: 1.32rem;
  color: #ccb89d;
  text-decoration: none; /* elimina el subrayado */
  margin-left: 0;
  font-weight: 400;
  transition: color 0.3s ease, opacity 0.3s ease;
}


.site-nav a:hover {
  color: #ccb89d;
  opacity: 0.85;
}

.site-nav a.active {
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(204, 184, 157, 0.5);
  background: transparent;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background-color: #ccb89d;
  display: block;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* PORTADA LISA */
.hero-flat {
  width: 100%;
  height: 78vh;
  min-height: 420px;
  background-color: #6a704c;
}

/* ACCESOS RAPIDOS HOME */
.home-shortcuts {
  background-color: #6A704C;
  padding: 2rem 1.5rem 3rem;
}

.shortcut-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.shortcut-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  min-height: 130px;
  border-radius: 12px;
  background-color: #ccb89d;
  color: #2D2C2A;
  text-decoration: none;
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shortcut-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.shortcut-card h3 {
  font-family: 'Vividly', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.shortcut-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  line-height: 1.35;
}

/* ABOUT */
.about {
  display: flex;
  justify-content: center;
  padding: 6rem 1.5rem;
  background-color: #6A704C;
}

.about h2,
.about-content h2 {
  font-family: 'Vividly', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.20em;
  text-align: center;
  margin-bottom: 2rem;
  color: #ccb89d;
  font-weight: 400;
  text-transform: uppercase;
}

.about-content {
  max-width: 800px;
  text-align: center;
}

.about-content p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ccb89d;
}

/* SHOP */
.shop {
  padding: 6rem 2rem;
  text-align: center;
  background-color: #6A704C;
}

.shop h2 {
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--verde);
  margin-bottom: 2rem;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem; /* más aire entre productos */
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.product {
  background-color: white;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.product img {
  width: 100%;
  height: 380px; /* más grande */
  object-fit: cover;
}

.product h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.product p {
  font-size: 0.95rem;
  color: var(--marron);
  margin-bottom: 1.5rem;
}

/* FOOTER */
footer {
  background-color: #6A704C;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding: 2rem;
  text-align: center;
  color: #ccb89d;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* EVENTOS */
.eventos {
  background-color: #6A704C;
  padding: 6rem 2rem;
  text-align: center;
}

.eventos h2 {
  font-family: 'Vividly', sans-serif;
  font-size: 1.6rem;           /* → más grande (antes ~1rem) */
  letter-spacing: 0.20em;      /* → estilo manual de marca */
  text-align: center;
  margin-bottom: 2rem;         /* → espacio elegante */
  color: #ccb89d;
  font-weight: 400;            /* → Vividly es regular */
}

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .eventos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shortcut-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .eventos-grid {
    grid-template-columns: 1fr;
  }

  .shortcut-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.evento {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evento:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.evento img {
  width: 100%;
  height: 420px; /* más grande */
  object-fit: cover;
}

.evento-info {
  padding: 1.5rem;
}

/* Texto de tarjetas de eventos */
.evento-info h3 {
  font-family: 'Vividly', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: var(--gris);
}

.evento-info .fecha {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--verde);
  letter-spacing: 0.12em;
}

.evento-info .detalle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--marron);
  margin-top: 0.4rem;
}

/* PAGINAS DE SECCIONES */
.feature-page {
  min-height: calc(100vh - 180px);
  background-color: #6A704C;
  padding: 5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card {
  width: min(100%, 760px);
  background-color: transparent;
  border-radius: 0;
  padding: 2.5rem 1rem;
  text-align: center;
  box-shadow: none;
}

.feature-card h1 {
  font-family: 'Vividly', sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #ccb89d;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.feature-card p {
  font-family: 'Vividly', sans-serif;
  color: #ccb89d;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-size-adjust: 0.52;
  margin-bottom: 1.6rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background-color: transparent;
  border: 1px solid #ccb89d;
  color: #ccb89d;
  font-family: 'Vividly', sans-serif;
  font-weight: 400;
  font-size: 1.55rem;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size-adjust: 0.52;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
  background-color: rgba(204, 184, 157, 0.12);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.cta-button-secondary {
  background-color: #ccb89d;
  color: #2D2C2A;
}

.cta-button.is-placeholder {
  border: 1px dashed rgba(45, 44, 42, 0.5);
}

.placeholder-note {
  margin-top: 0.9rem;
  font-family: 'Vividly', sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
  font-size-adjust: 0.52;
  color: #ccb89d;
  opacity: 0.9;
}

.section-chips-row {
  margin-top: 0;
}

.section-subtitle {
  margin-bottom: 1.2rem;
}

.section-main-cta-row {
  margin-bottom: 1.2rem;
}

.payment-soon {
  margin-top: 0.5rem;
}

.catalog-section {
  background-color: #6A704C;
  padding: 0 1.5rem 4rem;
}

.catalog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.catalog-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.catalog-card .cta-button,
.form-card .cta-button,
.confirmation-card .cta-button {
  background-color: #6A704C;
  border: none;
  color: #ccb89d;
}

.catalog-card .cta-button-secondary,
.form-card .cta-button-secondary,
.confirmation-card .cta-button-secondary {
  background-color: #ccb89d;
  color: #2D2C2A;
}

.catalog-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.catalog-body {
  padding: 1rem;
}

.catalog-body h3 {
  font-family: 'Vividly', sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
}

.catalog-body p {
  margin-bottom: 0.35rem;
  font-family: 'Vividly', sans-serif;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-size-adjust: 0.52;
}

.price-list {
  margin: 0 0 0.5rem 1rem;
  font-family: 'Vividly', sans-serif;
  font-size: 1.08rem;
  font-size-adjust: 0.52;
  color: #ccb89d;
  text-align: left;
}

.price-list li {
  margin: 0.2rem 0;
}

.event-card-cta {
  margin-top: 0.65rem;
}

.form-card {
  width: min(100%, 860px);
  text-align: left;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  padding: 2.5rem 2rem;
}

.form-card h1,
.form-card p {
  color: #2D2C2A;
}

.inscripcion-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.inscripcion-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #2D2C2A;
}

.inscripcion-form input {
  border: 1px solid rgba(45, 44, 42, 0.25);
  border-radius: 8px;
  min-height: 42px;
  padding: 0.55rem 0.7rem;
  font-size: 0.95rem;
}

.inscripcion-form .cta-row {
  grid-column: 1 / -1;
  justify-content: flex-start;
  margin-top: 0.3rem;
}

.form-error {
  color: #b53f2e;
  font-size: 0.8rem;
}

.confirmation-card {
  max-width: 760px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  padding: 2.5rem 2rem;
}

.confirmation-card h1,
.confirmation-card p {
  color: #2D2C2A;
}

.payment-placeholder {
  margin: 1rem 0 1.2rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: #f7f2ea;
  border: 1px dashed #ccb89d;
  text-align: left;
}

.payment-placeholder h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.payment-placeholder p {
  margin-bottom: 0.45rem;
}

@media (max-width: 920px) {
  header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo toggle"
      "nav nav";
    row-gap: 0.7rem;
    align-items: center;
    padding: 0.8rem 1rem;
  }

  .logo {
    grid-area: logo;
    display: inline-flex;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
    grid-area: toggle;
    justify-self: end;
  }

  .site-nav {
    grid-area: nav;
    display: none;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.7rem;
    padding-top: 0.1rem;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    font-size: 1.1rem;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inscripcion-form {
    grid-template-columns: 1fr;
  }

  .cta-button {
    font-size: 1.35rem;
  }
}

@media (max-width: 520px) {
  .shortcut-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }
}
