:root {
  /* Colores principales */
  --primary-color: #004d99;
  --primary-light: rgba(0, 69, 138, 0.1);
  --primary-dark: #004799;
  
  --secondary-color: #d4af37;
  --secondary-light: rgba(212, 175, 55, 0.1);
  
  /* Escala de grises */
  --dark-color: #1a1a1a;
  --darker-color: #0d0d0d;
  --light-color: #ffffff;
  --lighter-color: #fcfcfc;
  --gray-color: #f5f5f5;
  --gray-dark: #e0e0e0;
  
  /* Texto */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #f8f8f8;
  
  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  
  /* Bordes */
  --border-radius: 8px;
  --border-radius-lg: 12px;
  
  /* Transiciones */
  --transition-fast: all 0.2s ease;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  
  /* Espaciados */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
}

/* Estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--gray-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* Botones */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #004d99; /* dorado */
  border-color: #EFB810;
  color: white;
  transform: translateY(-3px);
}


.btn-secondary {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.btn-secondary:hover {
  background-color: #EFB810; /* dorado */
  border-color: #004d99;
  color: white;
  transform: translateY(-3px);
}


.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-outline:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

                                                /* Header */
/* Header general */
/* HEADER ACTUALIZADO */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.header.shrink {
  padding: 0.5rem 3rem;
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* LOGO MÁS GRANDE */
.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  
  
}

.logo-img {
  height: 70px;
  max-height: 70px;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 1.1rem;
  margin-left: auto;
}

.nav-link {
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link.active {
  color: #f2c94c;
  font-weight: bold;
}

.nav-link i {
  margin-right: 6px;
}

.nav-link:hover {
  color: #d4af37;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #f2c94c, #f2994a);
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #d4af37;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: left 0.3s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.show {
    left: 0;
  }

  .nav-link {
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.2rem;
  }
}



/* Ajustes generales para móvil */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    padding-top: 70px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-text {
    margin-left: 0;
    padding: 1.5rem;
  }
  
  .servicios-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 1rem;
    padding: 1rem;
  }
  
  .servicio-cuadro {
    min-height: 180px;
  }
  
  .servicios .contenido {
    max-width: 100%;
  }
  
  .servicios h2 {
    font-size: 2.2rem;
  }
  
  .contacto-form .form-container {
    flex-direction: column;
  }
  
  .form-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .feature-item {
    width: 100%;
  }
  
  .instagram-slide img {
    height: 180px;
  }
}


/* Hero Section */
/* Hero unificado */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  padding-top: 80px; /* Compensa el header fijo */
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed; /* Opcional para efecto parallax */
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .hero-slideshow .slide {
    background-position: center top;
    background-size: cover;
  }
}


.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-slideshow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}






.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--light-color), transparent);
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}



.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title span {
  color: var(--secondary-color);
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero:hover .hero-title span::after {
  transform: scaleX(1);
  transform-origin: left;
}


.hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

.feature-item i {
  color: var(--secondary-color);
}

.hero-carousel {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.carousel-slide {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.slide-overlay h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Animación de flotación para el carrusel */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  90% { transform: translateY(-20px); }
}
@media (max-width: 768px) {
  .hero::before {
    background-position: center top;
  }
}


.hero-carousel {
  animation: float 6s ease-in-out infinite;
  margin-left: auto; /* Empuja el carrusel a la derecha */
  max-width: 650px; /* Ajusta si es necesario */
  flex-shrink: 0;   /* Evita que se achique en pantallas grandes */
}
.carousel-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem;
  color: var(--light-color);
}

.slide-overlay h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 46, 93, 0.7);
  color: var(--light-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.carousel-arrow:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

.hero-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: var(--light-color);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 2s infinite;
}


/* Secciones comunes */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  position: relative;
  display: inline-block;
}

.section-header h2 span {
  color: var(--secondary-color);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

/* ==== SECCIÓN DE SERVICIOS CUADROS MEJORADOS ==== */


.servicios-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  font-family: 'Arial', sans-serif;
}

/* Contenedor de imagen ajustado */
.imagen-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Ajuste perfecto de imagen */
.cuadro-imagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.servicio-cuadro:hover .cuadro-imagen {
  transform: scale(1.05);
}

/* Estilos para los cuadros de servicio */
.servicio-cuadro {
  position: relative;
  color: white;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  cursor: pointer;
  min-height: 200px;
  transition: all 0.3s ease;

}

/* Overlay para mejor legibilidad */
.servicio-cuadro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
  transition: all 0.3s ease;
}

.servicio-cuadro:hover::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Contenido de los cuadros */
.contenido {
  position: relative;
  z-index: 3;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Tipografía */
h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0.5rem 0;
  text-transform: uppercase;
  line-height: 1.2;
}

.subtitulo {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.descripcion {
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
  max-width: 80%;
}

.telefono {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.5rem 0 1.5rem;
}

/* Botones con efecto dorado */
.btn-azul {
  display: inline-block;
  background-color: #0400ff;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

.btn-azul:hover {
  background-color: #EFB810; /* Fondo dorado */
  border-color: #FFD700;     /* Borde dorado */
  color: white;              /* Texto blanco para contraste */
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(255, 217, 0, 0.3);
}

/* Posicionamiento específico de los cuadros */
.servicios {
  grid-column: 1 / 2;
  grid-row: 1 / 4;
  justify-content: flex-start;
  align-items: center;
  min-height: 500px;
}

.galeria {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  justify-content: flex-end;
  align-items: flex-start;
}

.sobre-nosotros {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  justify-content: flex-end;
  align-items: flex-start;
}

.contacto {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  justify-content: flex-end;
  align-items: flex-start;
}

/* Estilos específicos para el cuadro principal */
.servicios .contenido {
  max-width: 80%;
}

.servicios h2 {
  font-size: 3.5rem;
  margin: 0.5rem 0 1rem;
}

.servicios .descripcion {
  font-size: 1.1rem;
  max-width: 90%;
}

.servicios .btn-rojo {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .servicios-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  
  .servicios {
    grid-column: 1;
    grid-row: 1;
    min-height: 400px;
  }
  
  .galeria, .sobre-nosotros, .contacto {
    grid-column: 1;
    min-height: 250px;
  }
  
  .galeria {
    grid-row: 2;
  }
  
  .sobre-nosotros {
    grid-row: 3;
  }
  
  .contacto {
    grid-row: 4;
  }
  
  .servicios .contenido {
    max-width: 90%;
  }
  
  .servicios h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .servicios-grid {
    padding: 1rem;
    gap: 1rem;
  }
  
  .contenido {
    padding: 1.5rem;
  }
  
  .servicios h2 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .descripcion {
    max-width: 100% !important;
    font-size: 0.9rem;
  }
  
  .telefono {
    font-size: 1.2rem;
  }
  
  .btn-rojo {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.contenedor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilos de la sección de redes sociales */
.redes-sociales {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f5 100%);
}

.titulo-seccion {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  position: relative;
  display: block; /* inline-block no es necesario aquí */
}

.titulo-seccion::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: #0099ff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.subtitulo-redes {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contenido-redes {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.plataforma {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plataforma:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.encabezado-plataforma {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, #001988 0%, #1a252f 100%);
    color: white;
}



.plataforma h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: auto;
}

.btn-visitar {
    padding: 8px 20px;
    border-radius: 30px;
    background-color: white;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-visitar:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contenido-embebido {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px;
}

.video-container-redes {
    position: relative;
    padding-bottom: 56.25%; /* Relación 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-container-redes iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.instagram-post {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.instagram-post iframe {
    width: 100%;
    border: none;
}

/* Estilos para otras redes */
.otras-redes {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.otras-redes h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.redes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.red-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.red-social i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.red-social span {
    font-weight: 600;
}

.red-social:hover {
    transform: translateY(-5px);
}

/* Colores específicos para cada red social */
.facebook {
    background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%);
}

.instagram {
    background: linear-gradient(135deg, #405DE6 0%, #5851DB 16%, #833AB4 34%, #C13584 51%, #E1306C 67%, #FD1D1D 83%, #F56040 100%);
}
/* Estilo para la plataforma Instagram */
.plataforma.instagram .encabezado-plataforma {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
}

.instagram-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.instagram-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.instagram-slide {
  min-width: 33.333%;
  position: relative;
  padding: 10px;
}

.instagram-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease;
}

.instagram-slide:hover img {
  transform: scale(1.03);
}

.instagram-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-slide:hover .instagram-overlay {
  opacity: 1;
}

.instagram-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.instagram-link i {
  color: #E1306C;
}


.instagram-arrow:hover {
  background-color: #E1306C;
}

.instagram-arrow.prev {
  left: 15px;
}

.instagram-arrow.next {
  right: 15px;
}

.instagram-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.instagram-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.instagram-dot.active {
  background-color: #E1306C;
  transform: scale(1.2);
}

/* Icono de plataforma */
.icono-plataforma {
    font-size: 1.8rem;
    margin-right: 15px;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .instagram-carousel-track {
    flex-wrap: nowrap;
  }

  .instagram-slide {
    min-width: 100%;
    padding: 5px;
  }

  .instagram-slide img {
    height: 200px;
    object-fit: cover;
  }

  .instagram-overlay {
    font-size: 0.8rem;
    padding: 8px;
  }
}
.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8ecf 100%);
}

.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #006097 100%);
}

.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}
.plataforma.youtube .encabezado-plataforma {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.plataforma.youtube {
    border: 1px solid #FF0000; /* Borde color YouTube */
}

.plataforma.youtube .icono-plataforma {
    color: #FF0000; /* Color del icono */
}

.plataforma.youtube h3 {
    color: #FF0000; /* Color del título */
}

.plataforma.youtube .btn-visitar {
    background-color: #ff0000;
    color: #ffffff;
    border: 1px solid #fff;
}

.plataforma.youtube .btn-visitar:hover {
    background-color: transparent;
    color: #ff0000;
    border: 1px solid #ff0000;
}
/* Transición para todos los elementos interactivos */
.plataforma.youtube .btn-visitar,
.plataforma.youtube .encabezado-plataforma {
    transition: all 0.3s ease;
}

.tiktok {
    background: linear-gradient(135deg, #000000 0%, #25F4EE 50%, #FE2C55 100%);
}

/* Responsive design */
@media (max-width: 992px) {
    .contenido-embebido {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .titulo-seccion {
        font-size: 2rem;
    }
    
    .subtitulo-redes {
        font-size: 1rem;
    }
    
    .encabezado-plataforma {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .icono-plataforma {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .plataforma h3 {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .redes-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Contacto */



/* ==== Contacto - Formulario Personalizado ==== */
.contacto-form .form-container {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 3rem;
}

.contacto-form .form-image {
  flex: 1 1 50%;
  background: #f5f5f5;
}

.contacto-form .contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contacto-form .form-content {
  flex: 1 1 50%;
  padding: 3rem;
  background-color: #fff;
}

.contacto-form .form-content h1 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contacto-form .form-content h2 {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid var(--gray-dark);
  border-radius: var(--border-radius);
  background: white;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group label {
  position: absolute;
  top: -10px;
  left: 14px;
  background: white;
  padding: 0 5px;
  font-size: 0.85rem;
  color: var(--text-medium);
  pointer-events: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.submit-btn {
    background: #4a89dc;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    width: 100%;
}

.submit-btn:hover {
    background: #3a70c2;
    transform: translateY(-2px);
}

/* Modal de éxito */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.success-modal {
    background: white;
    border-radius: 10px;
    padding: 30px;
    width: 350px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: #333;
}

.form-group select {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid var(--gray-dark);
  border-radius: var(--border-radius);
  background: white;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  appearance: none;
}


.modal-btn {
    background: #4a89dc;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-btn:hover {
    background: #3a70c2;
}

/* Responsive */
@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
    }
    
    .form-image {
        height: 200px;
    }
}






.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.contact-info-icon {
  background: rgba(255, 126, 95, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.contact-info-content {
  flex: 1;
}

.contact-info-content h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: white;
}

.contact-info-content p, 
.contact-info-content a {
  opacity: 0.8;
  font-size: 0.9rem;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-content a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  margin-top: 1.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: #ff6a4b;
}


/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 5% 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input {
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  .newsletter-btn {
    border-radius: 4px;
    padding: 12px;
  }
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.legal-links a {
  opacity: 0.8;
  transition: var(--transition);
}

.legal-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-carousel {
    max-width: 100%;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info, .contact-form {
    width: 100%;
  }
}



@media (max-width: 480px) {
  .hero {
    padding: 6rem 5% 3rem;
  }
  
  .hero-text h2 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .carousel-slide img {
    height: 300px;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.carousel-3d-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  perspective: 1000px;
  height: 500px;
  overflow: hidden;
}

.carousel-3d-track {
  display: flex;
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.carousel-3d-slide {
  position: absolute;
  width: 70%;
  height: 80%;
  left: 15%;
  top: 10%;
  transition: all 0.5s ease;
  transform-origin: center center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
}

.carousel-3d-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-3d-slide.active {
  opacity: 1;
  transform: translateZ(0);
  z-index: 10;
}

.carousel-3d-slide.prev {
  opacity: 0.7;
  transform: translateX(-60%) scale(0.8) rotateY(10deg);
  z-index: 5;
  filter: brightness(0.8);
}

.carousel-3d-slide.next {
  opacity: 0.7;
  transform: translateX(60%) scale(0.8) rotateY(-10deg);
  z-index: 5;
  filter: brightness(0.8);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 46, 93, 0.8), transparent);
  padding: 1.5rem;
  color: white;
}

.slide-overlay h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.carousel-3d-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 46, 93, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
}

.carousel-3d-arrow:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.carousel-3d-arrow.prev {
  left: 20px;
}

.carousel-3d-arrow.next {
  right: 20px;
}

.carousel-3d-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 20;
}

.carousel-3d-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}
  
.carousel-3d-dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}


.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 0.8rem 1.5rem;
  /* ... resto de propiedades mejoradas ... */
}



@keyframes zoomEffect {
  0%   { transform: scale(1); }
  100% { transform: scale(1.1); }
}
@media (max-width: 768px) {
  .hero {
    background-position: 60% center;
  }
}

/* Sección Nuestra Empresa */
.about-company {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 2rem 0;
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
  margin-left: 3rem; 
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
  animation: fadeIn 0.8s ease-in-out forwards;
  transition: var(--transition);
}

.about-text:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-text .highlight-text {
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(184, 21, 21, 0.1);
}

.section-title {
  display: flex;
  justify-content: center;
}
.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge {
  position: absolute;
  top: -20px;
  right: 10px;
  background: #d4af37;
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.experience-badge span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge p {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 5px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, rgba(133, 120, 5, 0.1), white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(133, 120, 5, 0.1);
}

.feature-box i {
  font-size: 1.8rem;
  color: #d4af37;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #2c3e50;
  font-weight: 600;
}

.feature-box p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}
.about-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

/* Sección de Servicios Rediseñada */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card.featured {
  position: relative;
}

.service-card.featured:before {
  content: "Más Popular";
  position: absolute;
  top: 15px;
  right: -30px;
  background: #e74c3c;
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.service-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 25px;
}

.service-features li {
  margin-bottom: 8px;
  color: #555;
  font-size: 0.95rem;
}

.service-features i {
  color: #2c3e50;
  margin-right: 8px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  color: #2c3e50;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.service-btn:hover {
  color: #e74c3c;
}

.service-btn:hover i {
  transform: translateX(5px);
}

.services-more {
  text-align: center;
  margin-top: 50px;
}


/* Footer mejorado */
/* Footer */
.footer-logo img.logo-image {
  max-width: 200px; /* Ajusta este valor según el tamaño deseado */
  height: auto;
  display: block;
  margin-bottom: 15px; /* Espacio entre el logo y el texto siguiente */
}


.logo-image {
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}


/* Opcional: si quieres mantener el estilo del span que tenía el texto original */
.footer-logo span {
  display: none; /* Oculta el span si ya no lo necesitas */
}
.footer {
  background: linear-gradient(135deg, #1a202c, #2d3748);
  color: var(--light-color);
  padding: 5rem 5% 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1518455027359-f3f8164ba6bd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
  opacity: 0.05;
  z-index: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-col {
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}



.footer-col h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-col p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
  opacity: 0.8;
  transition: var(--transition);
  position: relative;
  padding-left: 20px;
}

.footer-links li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  transition: var(--transition);
  opacity: 0;
}

.footer-links li:hover {
  opacity: 1;
  padding-left: 25px;
}

.footer-links li:hover::before {
  opacity: 1;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-links i {
  margin-right: 0.8rem;
  color: var(--secondary-color);
  width: 20px;
  text-align: center;
}
.footer-about {
  max-width: 300px;
}

.footer-social h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-contact {
  min-width: 250px;
}

.footer-cta {
  margin-top: 20px;
}
.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-bottom p {
  margin-bottom: 1rem;
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.footer-logo span {
  color: var(--secondary-color);
}



/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    order: -1;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .process-step:not(:last-child):after {
    display: none;
  }
  
  .service-card.featured:before {
    right: -25px;
    font-size: 0.7rem;
    padding: 5px 25px;
  }
}


.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--border-radius);
}

.video-container {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  position: relative;
}


.parallax-section {
  background-image: url('static/img/fondosredessociales.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px; /* ajusta según tu diseño */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  z-index: 1;
}

.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* oscurece el fondo si quieres más contraste */
  z-index: -1;
}

.btn-nav-whatsapp {
  background-color: #25D366;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  margin-left: 1rem;
  transition: background-color 0.3s ease;
}
.btn-nav-whatsapp:hover {
  background-color: #1ebe5c;
}
