/* ==========================================
   SECCIÓN HERO (INICIO)
   ========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  background-color: #050505;
}

/* Efecto de degradado ambiental de fondo */
.hero-glow {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, rgba(8, 8, 8, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--accent-gold);
  padding-left: 1rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-title span {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Marco decorativo premium para la imagen */
.hero-image-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--border-color);
  z-index: 1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  filter: grayscale(15%) contrast(105%);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper:hover .hero-image-frame {
  transform: translate(-10px, -10px);
  border-color: var(--accent-gold);
}

.hero-image-wrapper:hover .hero-image {
  filter: grayscale(0%) contrast(100%);
}

@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding: 140px 0 60px 0;
  }
  
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    text-align: center;
    align-items: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
}


/* ==========================================
   SECCIÓN SOBRE NOSOTROS (HISTORIA)
   ========================================== */
.about-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-side {
  position: relative;
  height: 500px;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 1.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-image-badge .number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--accent-gold);
  display: block;
  font-weight: 600;
  line-height: 1;
}

.about-image-badge .text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.about-text-side h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.about-text-side p {
  margin-bottom: 1.5rem;
}

/* Grid de Valores */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-gold);
}

.value-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-image-side {
    height: 400px;
    order: 2;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* ==========================================
   SECCIÓN SERVICIOS / MENÚ (PRODUCTOS)
   ========================================== */
.services-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.menu-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.menu-card:hover {
  border-color: var(--border-color);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.menu-card-image-wrapper {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.menu-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.menu-card:hover .menu-card-image {
  transform: scale(1.08);
}

.menu-card-content {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.menu-card-title {
  font-size: 1.5rem;
  font-weight: 500;
}

.menu-card-price {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.menu-card-text {
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.menu-card-features {
  list-style: none;
  border-top: 1px solid var(--border-light);
  padding-top: 1.2rem;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.menu-card-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.menu-card-features li::before {
  content: '•';
  color: var(--accent-gold);
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}


/* ==========================================
   SECCIÓN GALERÍA
   ========================================== */
.gallery-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1.4rem;
  color: var(--text-main);
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.gallery-overlay p {
  font-size: 0.8rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  
  .gallery-item.wide {
    grid-column: auto;
  }
  
  .gallery-item.tall {
    grid-row: auto;
  }
}


/* ==========================================
   SECCIÓN TESTIMONIOS (RESEÑAS REALISTAS)
   ========================================== */
.testimonials-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 3rem 2.2rem;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--border-color);
  transform: translateY(-5px);
}

.testimonial-quote {
  font-size: 2.5rem;
  font-family: var(--font-title);
  color: var(--accent-gold);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  opacity: 0.2;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.2;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}


/* ==========================================
   SECCIÓN PREGUNTAS FRECUENTES (FAQ)
   ========================================== */
.faq-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}


/* ==========================================
   SECCIÓN DE CONTACTO (FORMULARIO E INFO)
   ========================================== */
.contact-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-intro h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-intro p {
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.contact-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
}

.contact-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.map-container {
  width: 100%;
  height: 250px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) grayscale(100%);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-info-side {
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* ==========================================
   PLANTILLA DE PÁGINAS LEGALES
   ========================================== */
.legal-page {
  padding: 160px 0 80px 0;
  background-color: var(--bg-primary);
  min-height: 80vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-title {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1.2rem 0;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.5rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  list-style-type: square;
}

.legal-content li {
  margin-bottom: 0.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-content strong {
  color: var(--text-main);
}
