:root {
  --gold: #c9a961;
  --gold-light: #d4c4a8;
  --burgundy: #8b4b5b;
  --cream: #f5f0e8;
  --dark: #1a1a1a;
  --white: #ffffff;
  --gray: #6b6b6b;
  --whatsapp: #25d366;
}

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

body {
  font-family: "Lato", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}

html {
  scroll-behavior: smooth;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none; /* Quita el subrayado del enlace */
  color: inherit; /* Mantiene el color original del texto */
  transition: opacity 0.3s ease; /* Opcional: efecto suave al pasar el ratón */
}

.logo:hover {
  opacity: 0.8; /* Efecto visual sutil que indica que es clicable */
}

.logo-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border: none;
  border-radius: 0;
  display: block;
  box-shadow: none;
}

.logo-text h1 {
  font-size: 1.5rem;
  color: var(--dark);
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white) !important;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.btn-primary::after {
  display: none !important;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  min-height: 90vh;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-size: 3.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero-content .subtitle {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-content .tagline {
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--burgundy);
  margin-bottom: 2rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.btn-secondary {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.badge-1 {
  bottom: 80px;
  left: 0;
  animation: float 5s ease-in-out infinite;
}
.badge-2 {
  bottom: 100px;
  right: 0;
  animation: float 5s ease-in-out infinite 1s;
}

.floating-badge i {
  font-size: 2rem;
  color: var(--gold);
}
.floating-badge div strong {
  display: block;
  color: var(--dark);
  font-size: 1.1rem;
}
.floating-badge div span {
  color: var(--gray);
  font-size: 0.85rem;
}

/* Services Section */
.services {
  padding: 6rem 2rem;
  background: var(--white);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  font-weight: 600;
}
.section-header h2 {
  font-size: 3rem;
  color: var(--dark);
  margin: 1rem 0;
}
.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.service-icon {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  z-index: 1;
}

.service-content {
  padding: 2rem;
}
.service-content h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.service-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
  cursor: pointer;
}

.service-link:hover {
  gap: 1rem;
  color: var(--gold);
}

/* About Section */
.about {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.about-images img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-images .img-1 {
  grid-row: 1/3;
  height: 500px;
  object-fit: cover;
}
.about-images .img-2,
.about-images .img-3 {
  height: 240px;
  object-fit: cover;
}

.about-content h2 {
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.about-content .signature {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.about-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.feature-item i {
  color: var(--gold);
  font-size: 1.2rem;
}

/* Promotion Section */
.promotion {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--burgundy) 0%, #6b3d4a 100%);
  position: relative;
  overflow: hidden;
}
.promotion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
  background-size: 100px 100px;
  opacity: 0.3;
}

.promotion-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 30px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.promotion-content h3 {
  font-size: 2.5rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.promotion-content .offer {
  font-size: 3rem;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  margin: 1.5rem 0;
}
.promotion-content p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.promotion-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 15px;
}
.benefit i {
  font-size: 2.5rem;
  color: var(--burgundy);
  margin-bottom: 0.8rem;
}
.benefit strong {
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.benefit span {
  color: var(--gray);
  font-size: 0.9rem;
}

.promotion-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.promotion-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Gallery Section */
.gallery {
  padding: 6rem 2rem;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(201, 169, 97, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  color: var(--white);
  font-size: 2.5rem;
}

/* Why Choose Us */
.why-us {
  padding: 6rem 2rem;
  background: var(--cream);
}
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.why-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: 20px;
  transition: transform 0.3s ease;
}
.why-card:hover {
  transform: translateY(-10px);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}
.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}
.why-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* CTA Section */
.cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.cta h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.cta p {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta .btn-white {
  background: var(--white);
  color: var(--gold);
  padding: 1.2rem 3rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.cta .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Page Header (Contacto) */
.page-header {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header h1 {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.page-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Contact Main Section */
.contact-main {
  padding: 5rem 2rem;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 2px solid transparent;
}
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.contact-card.featured {
  background: linear-gradient(135deg, var(--whatsapp) 0%, #128c7e 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-card.featured::before {
  content: "★";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
}
.contact-card.featured h3,
.contact-card.featured p {
  color: var(--white);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}
.contact-card.featured .contact-icon {
  background: var(--white);
  color: var(--whatsapp);
}

.contact-card h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.contact-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.contact-card .phone-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--burgundy);
  display: block;
  margin: 1rem 0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-card.featured .phone-number {
  color: var(--white);
}
.contact-card .phone-number:hover {
  color: var(--gold);
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.btn-whatsapp {
  background: var(--white);
  color: var(--whatsapp);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
.btn-phone {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
}
.btn-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}
.btn-email {
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-email:hover {
  background: var(--gold);
  color: var(--white);
}

.badge-preferred {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Map Section */
.map-section {
  padding: 4rem 2rem;
  background: var(--cream);
}
.map-container {
  max-width: 1200px;
  margin: 0 auto;
}
.map-header {
  text-align: center;
  margin-bottom: 3rem;
}
.map-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.map-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 5px solid var(--white);
}
.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.location-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.location-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.location-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-top: 0.3rem;
}
.location-card h4 {
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.location-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* Hours Section */
.hours-section {
  padding: 4rem 2rem;
  background: var(--white);
}
.hours-container {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--burgundy) 0%, #6b3d4a 100%);
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(139, 75, 91, 0.3);
}
.hours-container h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.hour-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.hour-item .day {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}
.hour-item .time {
  font-size: 0.95rem;
  opacity: 0.9;
}
.hour-item.closed {
  background: rgba(0, 0, 0, 0.2);
  opacity: 0.7;
}

/* CTA WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--whatsapp);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}
.whatsapp-float a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6);
  }
}
.whatsapp-float i {
  font-size: 1.5rem;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-section h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}
.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 2;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: var(--gold);
}
.footer-section i {
  margin-right: 0.1rem;
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.social-links a:hover {
  background: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.footer-tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
  .nav-links {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .hero-container,
  .about-container,
  .promotion-container {
    grid-template-columns: 1fr;
  }
  .hero-content h2 {
    font-size: 2.5rem;
  }
  .hero-image {
    order: -1;
  }
  .hero-image img {
    max-width: 400px;
  }
  .floating-badge {
    display: none;
  }
  .section-header h2,
  .about-content h2,
  .cta h2,
  .page-header h1 {
    font-size: 2.2rem;
  }
  .promotion-content .offer {
    font-size: 2rem;
  }
  .about-features,
  .promotion-benefits {
    grid-template-columns: 1fr;
  }
  .contact-card .phone-number {
    font-size: 1.4rem;
  }
}

@media (max-width: 640px) {
  .hero-content h2 {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .services-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hours-container {
    padding: 2rem 1rem;
  }
  .whatsapp-float a span {
    display: none;
  }
  .whatsapp-float a {
    padding: 1rem;
    border-radius: 50%;
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-img {
  margin: auto;
  display: block;
  width: auto;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(201, 169, 97, 0.3);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--gold);
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lightbox-close:hover {
  color: var(--white);
  background: rgba(201, 169, 97, 0.2);
  transform: rotate(90deg);
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.1rem;
  text-align: center;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}

/* Logo en el Footer */
.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
}

/* Enlaces dentro del footer */
.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
}

/* Banner de Cookies */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--dark);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  border: 1px solid var(--gold);
}

.cookie-banner p {
  font-size: 0.9rem;
  margin: 0;
}

/* Contenedor de botones */
.cookie-buttons {
  display: flex;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}

/* Estilos de los botones (igual de visibles) */
.btn-accept,
.btn-reject {
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 150px;
  border: none;
  font-size: 1rem;
}

.btn-accept {
  background: var(--gold);
  color: var(--white);
}

.btn-accept:hover {
  background: var(--gold-light);
}

.btn-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Estilos del pie de página y crédito */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* Espacio entre el copyright y tu crédito */
}

.developer-credit {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4); /* Muy sutil */
}

.developer-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.developer-link:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
}

@media (max-width: 640px) {
  .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }
  .lightbox-img {
    max-width: 95%;
  }
  .lightbox-caption {
    font-size: 0.9rem;
    bottom: 15px;
    padding: 8px 15px;
  }
}
