/* css/styles.css - Versión con márgenes amplios */
:root {
  /* Colores principales */
  --primary: #0d0d0d; /* Negro elegante */
  --primary-light: #1f1f1f; /* Gris oscuro moderno */

  --secondary: #faf7f9; /* Rosa muy suave y limpio */
  --secondary-light: #fdfbfc; /* Fondo claro aún más delicado */

  /* Acentos premium */
  --accent: #e6b7c7; /* Rosa empolvado profesional */
  --accent-strong: #d98aa4; /* Rosa más intenso para hover */
  --accent-dark: #b36982; /* Toque profundo y elegante */

  /* Dorado moderno (no muy amarillo) */
  --gold: #d4af37; /* Dorado premium */
  --gold-dark: #b8941f;

  /* Texto */
  --text: #2f2f2f; /* Gris muy oscuro */
  --text-light: #6e6e6e; /* Gris elegante */

  /* Fondos */
  --white: #ffffff;
  --gray-light: #f3f3f3;
  --border: #e7c9d3; /* Rosa pálido para bordes suaves */

  /* Sombras */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 18px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 35px rgba(0, 0, 0, 0.18);

  /* Transiciones */
  --transition: all 0.3s ease;
  --transition-slow: all 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
  font-weight: 300;
  overflow-x: hidden;
}

/* Tipografía elegante */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

h1 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

h2:hover::after {
  width: 100px;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
}
p {
  margin-bottom: 1.5rem;
}

address,
p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* CONTENEDOR PRINCIPAL CON MÁRGENES AMPLIOS */
.container {
  max-width: 1400px; /* Más ancho que antes */
  margin: 0 auto;
  padding: 0 4rem; /* Márgenes laterales más grandes */
}

.map-container-pc {
  max-width: 1400px;
  margin: 0 auto;
}
.category {
  margin-top: 30px;
}

/* CONTENEDOR EXTRA-AMPLIO PARA HEADER Y HERO */
.container-wide {
  max-width: 1600px; /* Aún más ancho */
  margin: 0 auto;
  padding: 0 6rem; /* Márgenes laterales muy amplios */
}

/* Header y Navegación - Elegante con márgenes amplios */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: fixed;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.logo h2 {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--primary);
  margin: 0;
  letter-spacing: 2px;
}

.logo img {
  height: 74px;
  width: auto;
  margin-left: 30px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--accent);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section - Sofisticada CON MÁRGENES AMPLIOS */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 50px;
  margin-top: 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, rgba(212, 175, 55, 0.03) 100%);
}

.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
  padding-right: 2rem; /* Espacio adicional entre texto e imagen */
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-weight: 300;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
}

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

/* --- SLIDER --- */
.slider {
  position: relative;
  width: 604px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* --- DOTS --- */
.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
  background-color: var(--accent);
}

/* Galería - Minimalista */
.gallery {
  background: var(--white);
}

.gallery h2 {
  text-align: center;
  margin-bottom: 4rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item .image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Estilos del Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  margin: auto;
  display: block;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  top: 50%;
  transform: translateY(-50%);
  animation: zoomIn 0.3s ease;
}

.modal-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 1001;
}

.close:hover {
  color: #ccc;
}

.modal-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  box-sizing: border-box;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 1);
}

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

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

/* SECCIÓN DE VIDEO */
.video-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0ebf8 100%);
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
}

.video-header {
  text-align: center;
  margin-bottom: 3rem;
}

.video-header h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.video-header p {
  font-size: 1.2rem;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
}

.video-content {
  display: flex;
  gap: 3rem;
  /* align-items: center; */
}

.video-wrapper {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.video-player {
  width: 100%;
  height: 600px;
  background-color: #000;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
}

.video-placeholder i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.video-placeholder h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.video-placeholder button i {
  margin: 0;
  line-height: 1;
}

.video-info {
  flex: 1;
  padding: 2rem;
}

.video-info h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.video-features {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}

.video-features li {
  display: flex;
  align-items: flex-start; /* clave para multiline */
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1.05rem; /* un poco menor en mobile */
  line-height: 1.4; /* evita saltos raros */
}

.video-features i {
  color: var(--primary);
  font-size: 1.1rem;
  line-height: 1; /* evita desfasaje vertical */
  margin-top: 2px; /* alinea con la 1ra línea */
  flex-shrink: 0;
}

.video-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 2rem;
  border-radius: 15px;
  color: white;
  text-align: center;
}

.video-cta h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.video-cta .btn {
  margin-top: 1rem;
}

.video-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.video-control-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary);
  font-size: 1.2rem;
}

.video-control-btn:hover {
  background: white;
  transform: scale(1.1);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 2rem; /* Espacio adicional entre imagen y texto */
}

.image-placeholder {
  width: 604px;
  height: 500px;
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--border) 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Recorta sin deformar */
  object-position: center; /* Centra el recorte */
  border-radius: 10px; /* opcional: esquinas redondeadas */
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  position: relative;
  z-index: 2;
}

.image-placeholder p {
  position: relative;
  z-index: 2;
  font-size: 1rem;
}

/* Secciones generales */
section {
  padding: 100px 0;
  position: relative;
}

.intro {
  background: var(--white);
  text-align: center;
}

.intro h2 {
  margin-bottom: 2rem;
}

.intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Servicios - Elegantes */
.services {
  background: var(--gray-light);
}

.services h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  /* Cambiamos auto-fit por auto-fill */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  /* Asegura que todas las filas mantengan la alineación inicial */
  justify-content: start;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Alinea los elementos uno debajo de otro */
  /* Para que todas las tarjetas midan lo mismo en la fila */
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem;
  color: var(--white);
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-weight: 400;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.btn-agendar {
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.6rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
    /* box-shadow: 0 4px 12px color-mix(in srgb, var(--accent), transparent 75%); */
  position: relative; /* asegurar que esté “arriba” del flujo */
  z-index: 10; /* por encima de pseudo-elementos */
  pointer-events: auto; /* asegurarse que pueda recibir clicks */
  cursor: pointer; /* para feedback visual */
  margin-top: auto; /* ¡ESTA ES LA CLAVE! Empuja el botón al fondo */
  display: inline-flex;
  justify-content: center; /* Centra el texto del botón */
}

.btn-agendar i {
  font-size: 1rem;
}

.btn-agendar:hover {
  background: var(--accent);
  transform: translateY(-3px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent), transparent 65%);
}
.price {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

/* Testimonios - Refinados */
.testimonials {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.testimonials h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials h2::after {
  background: var(--accent);
}

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

.testimonial-card {
  display: flex; /* 1. Habilitamos Flexbox */
  flex-direction: column; /* 2. Elementos uno bajo el otro */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.stars {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-card span {
  margin-top: auto; /* 3. Empuja el nombre al final */
  display: block; /* 4. Asegura que se comporte como bloque */
  font-weight: 600; /* Opcional: para que resalte más */
  color: var(--accent); /* Opcional: para darle un toque de color */
  font-size: 0.95rem;
  padding-top: 1rem; /* Espacio mínimo arriba del nombre */
}

.client {
  font-weight: 500;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Equipo - Elegante */
.team {
  background: var(--white);
}

.team h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.team-image .image-placeholder {
  width: 100%;
  height: 500px;
}

.team-info h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

.team-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* CTA Final - Impactante */
.cta-final {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.cta-final h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
}

.cta-final h2::after {
  background: var(--white);
}

.cta-final p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.cta-final .btn {
  background: var(--white);
  color: var(--accent);
  font-size: 1rem;
  padding: 1.5rem 3rem;
  position: relative;
}

.cta-final .btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Footer - Sofisticado */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-info h3 {
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-contact h4 {
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 400;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer-contact address a {
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  width: 20px;
  color: var(--accent);
}

.footer-copy {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* Estilos para los enlaces de contacto */
.contact-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
  margin-bottom: 0.8rem;
}

.contact-link:hover {
  transform: translateX(5px);
  color: var(--accent);
}

.contact-link p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.contact-link:hover p {
  color: var(--accent);
}

/* Para el footer con fondo oscuro */
footer .contact-link:hover p {
  color: var(--accent);
}

footer .contact-link p {
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1024px) {
  .hero-content {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1024px) {
  .nav-menu a {
    font-size: 0.8rem;
  }

  .hero {
    min-height: 85vh;
    flex-direction: column;
    text-align: center;
    padding: 120px 0 50px;
  }

  .hero-image {
    padding-left: 0;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container-wide {
    padding: 0 4rem; /* Reducir márgenes en pantallas más pequeñas */
  }

  .container {
    padding: 0 3rem;
  }
}

@media (max-width: 968px) {
  .nav-menu {
    gap: 25px;
  }
  .nav-menu a {
    font-size: 0.7rem;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .team-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .container-wide {
    padding: 0 3rem;
  }

  .container {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    padding: 2rem 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .cta-final h2 {
    font-size: 2.2rem;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }

  .modal-content {
    width: 95%;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .close {
    font-size: 30px;
    top: 10px;
    right: 20px;
  }

  .container-wide {
    padding: 0 2rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .video-content {
    flex-direction: column;
  }

  .video-info h3 {
    text-align: center;
  }

  .video-features li {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }
  .logo img {
    margin-left: 0px;
    height: 48px;
    width: auto;
  }
  .container-wide {
    padding: 0 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .video-section {
    padding: 3rem 1rem;
  }

  .video-header h2 {
    font-size: 2rem;
  }

  .video-player {
    height: 500px;
  }

  .video-features li {
    align-items: flex-start;
  }

  .video-features i {
    margin-top: 3px;
  }

  .footer-copy {
    text-align: center;
    font-size: 0.9rem;
  }
}

/* Animaciones suaves */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll personalizado */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}
