/* ========== CSS NOSOTROS.HTML - SERVIMAQ SPA ========== */

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== NAVBAR ========== */

.navbar {
  height: 80px;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 999;
}

.navbar-brand {
  font-weight: bold;
  color: #ffffff !important;
}

.nav-link {
  color: #ddd !important;
  margin-right: 15px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #fff !important;
}
.nav-link.active {
  color: #eea303 !important;
  font-weight: 600;
}
/* Menú colapsado en móviles */
@media (max-width: 992px) {
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.95);
    margin-top: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 0 !important;
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
}

/* ========== HERO CAROUSEL ========== */

/* Hero Carousel Principal */
.hero-carousel {
  position: relative;
  height: calc(100vh - 80px);
  overflow: hidden;
}

/* Contenedor de slides */
.slides {
  height: 100%;
  position: relative;
}

/* Cada slide individual */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
  opacity: 1;
  z-index: 1;
  transform: translateX(0);
}

/* Imagen de fondo de cada slide */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay con gradiente */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

/* Contenedor principal del contenido hero */
.hero-container {
  position: absolute;
  margin-left: 50px;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  margin-top: 73px;
}

/* Layout en dos columnas del contenido */
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

/* Columna de texto del hero */
.hero-text {
  color: #fff;
}

/* Título principal del hero */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Subtítulo del hero */
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 300;
}

/* Contenedor de botones CTA */
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Botón naranja personalizado */
.btn-orange {
  background-color: #eea303;
  color: white;
  font-weight: bold;
  border-color: #eea303;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(238, 163, 3, 0.3);
}

.btn-orange:hover {
  background-color: #fd7e14;
  border-color: #fd7e14;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 163, 3, 0.4);
  color: white;
}

/* Columna visual derecha */
.hero-visual {
  position: relative;
  height: 500px;
}

/* Elementos decorativos flotantes */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, #6c757d, #fd7e14);
  opacity: 0.8;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 20%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
  background: linear-gradient(45deg, #ffc107, #fd7e14);
}

.floating-element:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 50%;
  animation-delay: 4s;
  background: linear-gradient(45deg, #adb5bd, #ff6b35);
}

/* Animación de flotación */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

/* Indicadores de slides (dots) */
.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ec8702;
  transform: scale(1.2);
}

/* Barra de progreso del slide */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #f7a102;
  transition: width 5s linear;
  z-index: 3;
}

/* Controles de navegación (flechas) */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  backdrop-filter: blur(10px);
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav.prev {
  left: 30px;
}

.hero-nav.next {
  right: 30px;
}

/* ========== SECCIÓN NOSOTROS PRINCIPAL ========== */

/* Contenedor principal de la sección nosotros */
#nosotros-principal {
  position: relative;
  padding: 80px 0;
  background: #1a1a1a;
  overflow: hidden;
}

/* Elementos decorativos de fondo */
#nosotros-principal::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, rgba(238, 163, 3, 0.1), rgba(253, 126, 20, 0.1));
  border-radius: 50%;
  z-index: 1;
}

#nosotros-principal::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, rgba(108, 117, 125, 0.1), rgba(173, 181, 189, 0.1));
  border-radius: 50%;
  z-index: 1;
}

/* Contenedor con z-index superior */
#nosotros-principal .container {
  position: relative;
  z-index: 2;
}

/* Header de la sección */
.nosotros-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Título principal */
.nosotros-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

/* Línea decorativa debajo del título */
.nosotros-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #eea303, #fd7e14);
  border-radius: 2px;
}

/* Subtítulo descriptivo */
.nosotros-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contenedor de las cards expandido */
.nosotros-cards-expandido {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Card individual mejorada */
.nosotros-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Efecto hover en las cards */
.nosotros-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(238, 163, 3, 0.3);
}

/* Header de la card */
.nosotros-card-header {
  background: linear-gradient(135deg, #495057 0%, #6c757d 50%, #eea303 100%);
  padding: 20px 25px;
  position: relative;
  overflow: hidden;
}

/* Efecto decorativo en el header */
.nosotros-card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.nosotros-card:hover .nosotros-card-header::before {
  left: 100%;
}

/* Contenedor del título y icono */
.card-header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Icono del header */
.card-icon {
  font-size: 2rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nosotros-card:hover .card-icon {
  background: rgba(238, 163, 3, 0.3);
  transform: scale(1.1);
}

/* Título del header */
.card-header-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Cuerpo de la card */
.nosotros-card-body {
  padding: 30px 25px;
  background: rgba(0, 0, 0, 0.2);
}

/* Texto del cuerpo */
.card-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

/* ========== SECCIÓN VALORES ========== */

/* Contenedor principal de valores */
#valores {
  position: relative;
  padding: 80px 0;
  background: #000000;
  overflow: hidden;
}

/* Efectos decorativos de fondo valores */
#valores::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: linear-gradient(45deg, rgba(238, 163, 3, 0.08), rgba(253, 126, 20, 0.08));
  border-radius: 50%;
  z-index: 1;
}

#valores::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, rgba(108, 117, 125, 0.08), rgba(173, 181, 189, 0.08));
  border-radius: 50%;
  z-index: 1;
}

/* Contenedor con z-index superior */
#valores .container {
  position: relative;
  z-index: 2;
}

/* Header de valores */
.valores-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Título de valores */
.valores-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

/* Línea decorativa valores */
.valores-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(45deg, #eea303, #fd7e14);
  border-radius: 2px;
}

/* Subtítulo de valores */
.valores-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid de valores */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Item individual de valor */
.valor-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.valor-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  border-color: rgba(238, 163, 3, 0.4);
}

/* Icono del valor */
.valor-icon {
  font-size: 3rem;
  color: #eea303;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.valor-item:hover .valor-icon {
  color: #fd7e14;
  transform: scale(1.1);
}

/* Título del valor */
.valor-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Descripción del valor */
.valor-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* ========== SECCIÓN POR QUÉ ELEGIRNOS ========== */

/* Contenedor principal por qué elegirnos */
#por-que-elegirnos {
  position: relative;
  padding: 80px 0;
  background: #1a1a1a;
  overflow: hidden;
}

/* Elementos decorativos de fondo */
#por-que-elegirnos::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -25%;
  width: 450px;
  height: 450px;
  background: linear-gradient(45deg, rgba(238, 163, 3, 0.08), rgba(253, 126, 20, 0.08));
  border-radius: 50%;
  z-index: 1;
}

#por-que-elegirnos::after {
  content: '';
  position: absolute;
  bottom: -35%;
  left: -20%;
  width: 350px;
  height: 350px;
  background: linear-gradient(45deg, rgba(108, 117, 125, 0.08), rgba(173, 181, 189, 0.08));
  border-radius: 50%;
  z-index: 1;
}

/* Contenedor con z-index superior */
#por-que-elegirnos .container {
  position: relative;
  z-index: 2;
}

/* Header de elegir */
.elegir-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Título de elegir */
.elegir-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

/* Línea decorativa elegir */
.elegir-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: linear-gradient(45deg, #eea303, #fd7e14);
  border-radius: 2px;
}

/* Subtítulo de elegir */
.elegir-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid de razones */
.razones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Item individual de razón */
.razon-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.razon-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  border-color: rgba(238, 163, 3, 0.4);
}

/* Número de la razón */
.razon-numero {
  font-size: 3rem;
  font-weight: 800;
  color: #eea303;
  margin-bottom: 20px;
  opacity: 0.8;
  transition: all 0.3s ease;
  text-align: center; 
}

.razon-item:hover .razon-numero {
  color: #fd7e14;
  transform: scale(1.1);
}

/* Título de la razón */
.razon-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Texto de la razón */
.razon-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* CTA Final */
.cta-final {
  text-align: center;
  margin-top: 50px;
}

/* Botón CTA Final */
.btn-cta-final {
  background: linear-gradient(45deg, #eea303, #fd7e14);
  border: none;
  padding: 20px 45px;
  font-weight: 700;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(238, 163, 3, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta-final:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(238, 163, 3, 0.4);
  color: white;
  text-decoration: none;
}

.btn-cta-final:active {
  transform: translateY(-2px);
}

/* Icono del CTA final */
.cta-final-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-cta-final:hover .cta-final-icon {
  transform: scale(1.2) rotate(15deg);
}

/* ========== RESPONSIVE HERO ========== */

/* Responsive del Hero - Tablets */
@media (max-width: 768px) {
  .hero-carousel {
    height: 100vh;
  }
  
  .hero-container {
    padding: 1rem;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    margin-left: 0;
    margin-top: 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 0;
    align-items: center;
    margin-top: 0;
  }
  
  .hero-text {
    margin-top: 0;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 0;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-visual {
    display: none;
  }
  
  .floating-element {
    display: none;
  }
  
  .hero-nav {
    display: none;
  }
}

/* Responsive del Hero - Móviles */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .btn-orange {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .floating-element {
    display: none;
  }
}

/* ========== RESPONSIVE SECCIONES ========== */

/* Responsive para tablets */
@media (max-width: 768px) {
  /* Sección nosotros principal */
  #nosotros-principal {
    padding: 60px 0;
  }
  
  .nosotros-header {
    margin-bottom: 40px;
  }
  
  .nosotros-title {
    font-size: 2.4rem;
    letter-spacing: 1px;
  }
  
  .nosotros-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .nosotros-cards-expandido {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .nosotros-card-header {
    padding: 18px 20px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.7rem;
  }
  
  .card-header-title {
    font-size: 1.2rem;
  }
  
  .nosotros-card-body {
    padding: 25px 20px;
  }
  
  /* Sección valores */
  #valores {
    padding: 60px 0;
  }
  
  .valores-title {
    font-size: 2.2rem;
  }
  
  .valores-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }
  
  .valor-item {
    padding: 25px 18px;
  }
  
  .valor-icon {
    font-size: 2.5rem;
  }
  
  .valor-title {
    font-size: 1.2rem;
  }
  
  /* Sección por qué elegirnos */
  #por-que-elegirnos {
    padding: 60px 0;
  }
  
  .elegir-title {
    font-size: 2.2rem;
  }
  
  .razones-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .razon-item {
    padding: 25px 20px;
  }
  
  .razon-numero {
    font-size: 2.5rem;
  }
  
  .btn-cta-final {
    padding: 18px 35px;
    font-size: 1.1rem;
  }
}

/* Responsive para móviles */
@media (max-width: 480px) {
  /* Sección nosotros principal móvil */
  #nosotros-principal {
    padding: 50px 0;
  }
  
  .nosotros-title {
    font-size: 2rem;
    letter-spacing: 0.5px;
  }
  
  .nosotros-title::after {
    width: 60px;
    height: 3px;
  }
  
  .nosotros-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .nosotros-cards-expandido {
    gap: 20px;
  }
  
  .nosotros-card {
    border-radius: 12px;
  }
  
  .nosotros-card-header {
    padding: 15px 18px;
  }
  
  .card-header-content {
    gap: 12px;
  }
  
  .card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    border-radius: 8px;
  }
  
  .card-header-title {
    font-size: 1.1rem;
  }
  
  .nosotros-card-body {
    padding: 20px 18px;
  }
  
  .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Valores móvil */
  #valores {
    padding: 50px 0;
  }
  
  .valores-title {
    font-size: 1.8rem;
  }
  
  .valores-title::after {
    width: 50px;
    height: 3px;
  }
  
  .valores-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .valores-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .valor-item {
    padding: 20px 15px;
  }
  
  .valor-icon {
    font-size: 2.2rem;
  }
  
  .valor-title {
    font-size: 1.1rem;
  }
  
  .valor-description {
    font-size: 0.95rem;
  }
  
  /* Por qué elegirnos móvil */
  #por-que-elegirnos {
    padding: 50px 0;
  }
  
  .elegir-title {
    font-size: 1.8rem;
  }
  
  .elegir-title::after {
    width: 60px;
    height: 3px;
  }
  
  .elegir-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .razones-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .razon-item {
    padding: 20px 18px;
  }
  
  .razon-numero {
    font-size: 2.2rem;
  }
  
  .razon-title {
    font-size: 1.1rem;
  }
  
  .razon-text {
    font-size: 0.95rem;
  }
  
  .btn-cta-final {
    padding: 15px 30px;
    font-size: 1rem;
    letter-spacing: 0.5px;
  }
}


/* ========== ALERTAS ========== */

/* Alertas personalizadas */
.alert-custom {
  background-color: #343a40;
  color: #fff;
  border: none;
  border-radius: 8px;
}

/* ========== RESPONSIVE GENERAL ========== */

/* Responsive general para toda la página */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .nav-link {
    margin-right: 0;
  }
}
/* ========== FOOTER PROFESIONAL ========== */

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

/* Elementos decorativos de fondo */
footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, rgba(238, 163, 3, 0.1), rgba(253, 126, 20, 0.1));
  border-radius: 50%;
  z-index: 1;
}

/* Contenedor principal del footer */
.footer-content {
  position: relative;
  z-index: 2;
}

/* Grid del footer */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Sección de información de la empresa */
.footer-company {
  padding-right: 20px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #eea303;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: #eea303;
  width: 16px;
  text-align: center;
}

/* Sección de enlaces rápidos */
.footer-section h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #eea303;
  padding-left: 5px;
}

/* Sección de redes sociales */
.social-media {
  margin-top: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  transform: translateY(-3px);
  color: white;
  text-decoration: none;
}

.social-link.facebook:hover {
  background: #1877f2;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #E4405F, #C13584, #833AB4);
  box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

/* Línea separadora */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 30px 0;
}

/* Copyright */
.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* Responsive footer */
@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .footer-section {
    display: none;
  }
  
  .footer-section .social-media {
    display: block;
    text-align: center;
  }
  
  .footer-section .social-media h4 {
    display: block;
    margin-bottom: 15px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-company {
    padding-right: 0;
  }
  
  .social-links {
    justify-content: center;
  }
}
/* Botón WhatsApp personalizado */
.btn-wsp {
  background: linear-gradient(45deg, #25d366, #128c7e);
  color: white;
  font-weight: bold;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-wsp:hover {
  background: linear-gradient(45deg, #20b358, #0f6b5c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
  text-decoration: none;
}

.btn-wsp:focus {
  box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
  color: white;
  text-decoration: none;
}
/* ========== FIN CSS NOSOTROS ========== */