/* Variables CSS para consistencia */
:root {
  --primary-color: #0066ff;
  --primary-dark: #0052cc;
  --text-dark: #1a1a1a;
  --text-medium: #4d4d4d;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Reset y estilos base mejorados */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-medium);
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header mejorado */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(5px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand h1 {
  color: var(--text-dark);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Navbar mejorado */
.navbar {
  display: flex;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(1);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

/* Menú Hamburguesa mejorado */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Sección 1 - Hero mejorada */
.seccion1 {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  margin-top: 70px;
  overflow: hidden;
}

.seccion1-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}

.seccion1-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 900px;
  padding: 0 20px;
}

.seccion1-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-out;
  line-height: 1.2;
  font-weight: 700;
}

.seccion1-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin: 1.5rem 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  animation: fadeIn 1.5s ease-out;
  font-weight: 300;
}

.seccion1-phone {
  display: inline-block;
  font-size: 1.1rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 12px 30px;
  border-radius: 50px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition);
  animation: fadeIn 2s ease-out;
  font-weight: 500;
}

.seccion1-phone:hover {
  background-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* Sección 2 - Carrusel mejorado */
.seccion2 {
  display: flex;
  flex-wrap: wrap;
  min-height: 600px;
  background-color: var(--bg-light);
  position: relative;
}

.seccion2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,102,255,0.03) 0%, rgba(0,102,255,0.01) 100%);
  z-index: 0;
}

.seccion2-carrusel {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.carrusel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: opacity;
}

.carrusel-item.active {
  opacity: 1;
}

.seccion2-content {
  flex: 1 1 50%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white);
  position: relative;
  z-index: 1;
}

.seccion2-text {
  max-width: 520px;
}

.seccion2-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  line-height: 1.3;
  position: relative;
  font-weight: 600;
}

.seccion2-text h2:not(:first-child) {
  margin-top: 2.5rem;
}

.seccion2-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

.btn-contacto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  margin-top: 1rem;
  box-shadow: var(--shadow-sm);
}

.btn-contacto:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-contacto i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-contacto:hover i {
  transform: translateX(3px);
}
/* Contenedor de imagen para encuadre perfecto */
.carrusel-img-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Estilo para las imágenes del carrusel */
.carrusel-img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  /* Asegura que la moto esté siempre centrada y visible */
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
}

/* Ajustes para diferentes orientaciones de imagen */
.carrusel-item.portrait .carrusel-img {
  width: 100%;
  height: auto;
}

.carrusel-item.landscape .carrusel-img {
  width: auto;
  height: 100%;
}

/* Contenido del lado derecho (se mantiene igual que antes) */
.seccion2-content {
  flex: 1 1 50%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white);
  position: relative;
  z-index: 1;
}

/* Navegación del carrusel mejorada */
.carrusel-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carrusel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition);
}

.carrusel-dot.active {
  background-color: var(--white);
  transform: scale(1.3);
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive mejorado */
@media (max-width: 992px) {
  .seccion2-content {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .navbar.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  
  .hamburger {
    display: block;
  }
  
  .seccion2 {
    flex-direction: column;
  }
  
  .seccion2-carrusel,
  .seccion2-content {
    flex: 1 1 100%;
  }
  
  .seccion2-carrusel {
    min-height: 400px;
    order: 2;
  }
  
  .seccion2-content {
    padding: 50px 30px;
    order: 1;
  }
  
  .seccion1-content h1 {
    font-size: 2.5rem;
  }
  
  .seccion1-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .seccion2-content {
    padding: 40px 25px;
  }
  
  .seccion2-text h2 {
    font-size: 1.8rem;
  }
  
  .btn-contacto {
    padding: 12px 25px;
    width: 100%;
    text-align: center;
  }
}

/* Sección 3 - Selector */
.seccion3 {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.selector-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.selector-option {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.selector-option:hover {
    transform: translateY(-10px);
}

.option-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.option-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.selector-option h3 {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
}

.selector-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 30px;
    background-color: #0066ff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    z-index: 2;
    border: 2px solid #0066ff;
}

.selector-btn:hover {
    background-color: transparent;
    color: #0066ff;
}


/* Sección 4 - Diseño Prolijo */
.seccion4 {
    padding: 80px 0;
    background: #fff;
}

.seccion4-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.seccion4-info h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    display: block;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: #0066ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.feature-text h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.seccion4-imagen {
    text-align: center;
}

.seccion4-imagen img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
/* Sección 5 - Con imagen de fondo */
.seccion5 {
    position: relative;
    padding: 100px 0;
    background: url('../assets/fondo-financiamiento.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
}

.seccion5-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.seccion5 .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #00c3ff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 35px 25px;
    border-radius: 8px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.benefit-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00c3ff;
}

.benefit-header h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.benefit-title {
    font-size: 1.8rem;
    color: #0066ff;
    font-weight: 700;
    margin: 0;
}

.benefit-desc {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-top: 15px;
}
.financing-button-container {
  text-align: center;
  margin-top: 20px;
}

.financing-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  color: #fff;
  background-color: #007BFF;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.financing-button:hover {
  background-color: #0056b3;
}


/* Estilos para Carrusel Horizontal Giratorio */
.horizontal-carousel {
    padding: 60px 0;
    background: #f8f9fa;
    overflow: hidden;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
  }
  
  .carousel-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .carousel-slider {
    display: flex;
    width: calc(200px * 8); /* Ancho total para 8 items (4 originales + 4 duplicados) */
    animation: slide-horizontal 20s linear infinite;
  }
  
  .carousel-item {
    width: 180px;
    height: 120px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .carousel-item:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  }
  
  .carousel-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
  }
  
  /* Animación horizontal infinita */
  @keyframes slide-horizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 4)); } /* Mover el ancho de 4 items */
  }
  
  /* Efectos de borde difuminado */
  .carousel-wrapper::before,
  .carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
  }
  
  .carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, rgba(248, 249, 250, 0));
  }
  
  .carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, rgba(248, 249, 250, 0));
  }
  
 /* Estilos para Sección de Servicios */
.services-section {
    padding: 80px 0;
    background: #ffffff;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0066ff;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #0066ff;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f5f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066ff;
    font-size: 1.8rem;
    transition: all 0.3s;
  }
  
  .service-card:hover .service-icon {
    background: #0066ff;
    color: white;
    transform: scale(1.1);
  }
  
  .service-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
  }
  
  .service-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
  }
  /* Estilos para Sección de Ubicación */
.location-section {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0066ff;
  }
  
  .location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .schedule-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .schedule-container h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .schedule-days, .schedule-hours {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .schedule-days p, .schedule-hours p {
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
  }
  
  .schedule-days {
    font-weight: 600;
    color: #333;
  }
  
  .schedule-hours {
    color: #666;
  }
  
  .contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  
  .contact-info p {
    margin: 10px 0;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .contact-info i {
    color: #0066ff;
    width: 20px;
    text-align: center;
  }
  /* Estilos para Sección Compacta */
.compact-location-section {
    padding: 60px 20px;
    background: #f8f9fa;
  }
  
  .compact-section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
  }
  
  .compact-location-wrapper {
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
    align-items: stretch;
  }
  
  .compact-map-container {
    flex: 1;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }
  
  .compact-schedule-box {
    width: 250px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
  }
  
  .schedule-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066ff;
    text-align: center;
  }
  
  .schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  
  .schedule-list li {
    margin: 5px 0;
    font-size: 0.95rem;
    color: #555;
  }
  
  .schedule-list span {
    font-weight: 600;
    color: #333;
    display: inline-block;
    width: 70px;
  }
  /* Estilos del Footer */
.site-footer {
    background-color: #222;
    color: #fff;
    padding: 50px 0 20px;
    font-family: 'Roboto', sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-column {
    margin-bottom: 20px;
  }
  
  .footer-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066ff;
    display: inline-block;
  }
  
  .footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
  }
  
  .footer-contact i {
    color: #0066ff;
    width: 20px;
    text-align: center;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background-color: #0066ff;
    transform: translateY(-3px);
  }
  
  .footer-column p {
    color: #ccc;
    margin: 8px 0;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
  }
  /* Estilos para integración con Google */
.google-rating {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-badge {
    background: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.rating {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    display: block;
}

.based-on {
    font-size: 0.8rem;
    color: #666;
}

.btn-google {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-google span {
    font-weight: 500;
}

.review-loader {
    text-align: center;
    padding: 40px;
    grid-column: 1 / -1;
    color: #666;
}

.review-loader i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0066ff;
}

.featured-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card.featured {
    border: 1px solid #e0e0e0;
}

.review-card .fa-google {
    color: #4285F4;
}
/* Estilos para integración con Google */
.google-rating {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-badge {
    background: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.rating {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    display: block;
}

.based-on {
    font-size: 0.8rem;
    color: #666;
}

.btn-google {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-google span {
    font-weight: 500;
}

.review-loader {
    text-align: center;
    padding: 40px;
    grid-column: 1 / -1;
    color: #666;
}

.review-loader i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0066ff;
}

.featured-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card.featured {
    border: 1px solid #e0e0e0;
}

.review-card .fa-google {
    color: #4285F4;
}

/* Asegura consistencia visual en Contact */
.footer-contact li{
  display:flex;
  align-items:center;
  gap:.6rem;
}
.footer-contact i{
  width:18px; text-align:center; opacity:.9;
}

/* Estilo uniforme para los links (tel y WhatsApp) */
.footer-contact a.footer-contact-link{
  color:#e9ecef;                 /* mismo color que el texto del footer */
  text-decoration:none;
  transition:color .2s ease;
}
.footer-contact a.footer-contact-link:hover{
  color:#1f22d3;                 /* verde sutil al hover */
}

  /* Responsive */
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .footer-column {
      margin-bottom: 30px;
    }
  }
  /* Responsive */
  @media (max-width: 768px) {
    .compact-location-wrapper {
      flex-direction: column;
    }
    
    .compact-map-container {
      height: 250px;
    }
    
    .compact-schedule-box {
      width: 100%;
    }
    
    .schedule-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    
    .schedule-list li {
      margin: 3px 0;
    }
  }
  
  @media (max-width: 480px) {
    .schedule-list {
      grid-template-columns: 1fr;
    }
  }
  /* Responsive */
  @media (max-width: 768px) {
    .location-content {
      grid-template-columns: 1fr;
    }
    
    .map-container, .schedule-container {
      height: auto;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .schedule-container h3 {
      font-size: 1.5rem;
    }
  }
  /* Responsive */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .service-card {
      padding: 25px;
    }
  }
  /* Responsive */
  @media (max-width: 768px) {
    .section-title {
      font-size: 1.6rem;
      margin-bottom: 30px;
    }
    
    .carousel-slider {
      width: calc(150px * 8);
      animation-duration: 15s;
    }
    
    .carousel-item {
      width: 140px;
      height: 100px;
      margin: 0 10px;
    }
    
    .carousel-wrapper::before,
    .carousel-wrapper::after {
      width: 50px;
    }
  }


/* Responsive */
@media (max-width: 768px) {
    .seccion5 {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .seccion4-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .seccion4-imagen {
        order: -1;
    }
    
    .seccion4-info h2 {
        font-size: 1.8rem;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .selector-container {
        flex-direction: column;
    }
    
    .option-image {
        height: 300px;
    }
    
    .selector-option h3 {
        font-size: 1.5rem;
        bottom: 70px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .navbar.active {
        left: 0;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}