/* Reset y configuración base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: #0a0a0a;
}

/* Variables de color para gaming theme */
:root {
  --primary-gold: #FFD700;
  --secondary-gold: #FFA500;
  --dark-black: #0a0a0a;
  --light-black: #1a1a1a;
  --gaming-blue: #00D4FF;
  --gaming-purple: #8A2BE2;
  --gaming-green: #39FF14;
  --white: #ffffff;
  --gray: #666666;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

.section {
  scroll-margin-top: 80px;
}

/* =========================
   Navigation
   ========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--dark-black), var(--light-black));
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  border-bottom: 2px solid var(--primary-gold);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-gold);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  position: relative;
}

.nav-link:hover {
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  color: var(--dark-black);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* =========================
   Hero Section
   ========================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,215,0,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(0,212,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(57,255,20,0.1)"/></svg>');
  animation: gamingFloat 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes gamingFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centra horizontal */
    justify-content: center; /* centra vertical */
    text-align: center;
    gap: 2rem;
  }

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content .highlight {
  background: linear-gradient(45deg, var(--primary-gold), var(--gaming-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-content p {
  font-size: 2rem;
  color: #ccc;
  margin-bottom: 2rem;
  font-weight: 300;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  color: var(--dark-black);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--primary-gold);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, var(--gaming-blue), var(--primary-gold));
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.bus-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(255, 215, 0, 0.3));
  animation: gamingBounce 3s ease-in-out infinite;
}

@keyframes gamingBounce {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

/* =========================
   Section Styles
   ========================= */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 3rem;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-gold), var(--gaming-blue));
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

/* =========================
   About Section
   ========================= */
.about {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 20px;
  margin: 2rem auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--primary-gold);
}

.banner {
  font-size: 2rem;   /* ajusta según lo que necesites */
  color: #ccc;         /* color de texto (puedes cambiarlo) */
  text-align: center;  /* centrado opcional */
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  font-size: 2rem;
  color: #ccc;
  line-height: 1.8;
}

.about-image {
  background: linear-gradient(135deg, var(--dark-black), var(--primary-gold));
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  color: var(--white);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-gold);
}

.map-container-about {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.map-container-about h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.map-wrapper-about {
  width: 100%;
  max-width: 800px; /* opcional, controla el ancho máximo */
  margin: 0 auto;
}

.map-image {
  width: 100%;       /* se ajusta al ancho del contenedor */
  height: auto;      /* mantiene proporción original */
  object-fit: contain; /* asegura que no se deforme */
  border-radius: 15px; /* mismo estilo que el iframe */
  display: block;
}

.modal-image.map-image {
  width: 95vw;        /* ocupa casi todo el ancho de la ventana */
  height: auto;       /* mantiene proporción */
  max-height: 85vh;   /* evita que se salga de la pantalla */
  object-fit: contain;
  border-radius: 15px;
}

.map-wrapper-about iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.service-text {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  background: rgba(255, 215, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid var(--primary-gold);
}

/* =========================
   Experience Section
   ========================= */
.experience {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--primary-gold), var(--gaming-blue), var(--gaming-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
  border-color: var(--primary-gold);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.service-card h3 {
  color: var(--primary-gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.service-card p {
  color: #ccc;
  position: relative;
  z-index: 2;
}

/* =========================
   Gallery Section
   ========================= */
.gallery {
  background: linear-gradient(135deg, var(--dark-black), var(--light-black));
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
  cursor: grab;
  user-select: none;
  position: relative;
}

.gallery-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: transform 0.5s ease-out;
  will-change: transform;
}

.gallery-item {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  border: 2px solid var(--primary-gold);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) contrast(1.1);
}

.gallery-item.active {
  width: 450px;
  height: 300px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  border: 4px solid var(--primary-gold);
  transform: scale(1.1);
}

.gallery-item.active img {
  filter: brightness(1) contrast(1.2);
}

.gallery-item:not(.active) {
  transform: scale(0.7);
  opacity: 0.7;
  z-index: 1;
}

.gallery-item:not(.active).hidden {
  transform: scale(0.5);
  opacity: 0;
}

/* =========================
   Dark Section Background
   ========================= */
.dark-section {
  background: linear-gradient(135deg, var(--dark-black), var(--light-black));
  border-top: 2px solid var(--primary-gold);
  border-bottom: 2px solid var(--primary-gold);
}

/* =========================
   Testimoniales con Fotos
   ========================= */
.testimonials {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.testimonials-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-photo-card {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 4/5;
  border: 2px solid var(--primary-gold);
}

.testimonial-photo-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.testimonial-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: brightness(0.8);
}

.testimonial-photo-card:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: var(--primary-gold);
  padding: 2rem 1rem 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.testimonial-photo-card:hover .photo-overlay {
  transform: translateY(0);
}

.photo-overlay span {
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* =========================
   Modal de imagen
   ========================= */
.image-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

.image-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.close-button {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--white);
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--dark-black);
}

.close-button:hover {
  background: linear-gradient(135deg, var(--gaming-blue), var(--primary-gold));
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
  cursor: grab;
  position: relative;
  border: 2px solid var(--primary-gold);
}

.modal-image:active {
  cursor: grabbing;
}

/* =========================
   Contact Section
   ========================= */
.contact {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: var(--white);
  text-align: center;
  border-radius: 20px;
  margin: 2rem auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--primary-gold);
}

.contact h2 {
  color: var(--primary-gold);
  margin-bottom: 2rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
  text-align: left;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #ccc;
}

.contact-info strong {
  color: var(--primary-gold);
}

.social-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.social-item {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  min-height: 340px;       /* mismo alto base */
  max-height: 380px;
}

.facebook-mockup,
.instagram-mockup {
  flex: 1;
  height: 100% !important;
}

.facebook-widget {
  padding: 0;
  transition: all 0.3s ease;
}

.facebook-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.facebook-widget:hover .facebook-mockup {
  background: linear-gradient(135deg, #4267B2 0%, var(--primary-gold) 100%);
}

.facebook-mockup {
  background: linear-gradient(135deg, #1877f2 0%, #4267B2 100%);
  color: var(--white);
  height: 340px;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-gold);
}

.facebook-header-link,
.facebook-footer-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.facebook-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  background: rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.facebook-header-link:hover .facebook-header {
  background: rgba(255, 215, 0, 0.2);
}

.facebook-icon {
  font-size: 1.5rem;
}

.facebook-content {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(255, 215, 0, 0.05);
}

.facebook-content .fb-page {
  width: 100% !important;
  height: 100% !important;
}

.facebook-content iframe {
  border-radius: 0 !important;
  border: none !important;
}

.facebook-footer {
  padding: 1rem;
  background: rgba(255, 215, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.facebook-footer-link:hover .facebook-footer {
  background: rgba(255, 215, 0, 0.2);
}

.facebook-footer p {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.facebook-link {
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 215, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 500;
}

.facebook-footer-link:hover .facebook-link {
  background: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.instagram-preview {
  padding: 0;
}

.instagram-button {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.instagram-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.instagram-button:hover .instagram-mockup {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gaming-purple) 100%);
}

.instagram-mockup {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: var(--white);
  height: 340px;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-gold);
}

.instagram-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  background: rgba(255, 215, 0, 0.1);
}

.instagram-icon {
  font-size: 1.5rem;
}

.instagram-image {
  flex: 1;
  overflow: hidden;
}

.instagram-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: brightness(0.8);
}

.instagram-button:hover .instagram-image img {
  transform: scale(1.05);
  filter: brightness(1);
}

.instagram-footer {
  padding: 1rem;
  background: rgba(255, 215, 0, 0.1);
  text-align: center;
}

.instagram-footer p {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.instagram-link {
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 215, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 500;
}

.instagram-button:hover .instagram-link {
  background: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

/* =========================
   Footer
   ========================= */
.footer {
  background: linear-gradient(135deg, var(--dark-black), var(--light-black));
  padding: 15px 0;
  z-index: 10;
  border-top: 2px solid var(--primary-gold);
}

.footer-content {
  text-align: center;
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* =========================
   Ultra-wide helpers
   ========================= */
@media (min-width: 1400px) {
  .about-content,
  .gallery-grid,
  .services-grid,
  .testimonials-photos-grid {
    justify-items: center;
    align-items: start;
  }
}

/* =========================
   Mobile Responsive
   ========================= */
@media (max-width: 768px) {
  /* Solo logo visible en mobile */
  .nav-menu { 
    display: none !important; 
  }
  
  .navbar {
    position: sticky;
    top: 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text {
    order: 1;
    font-size: 1.2rem;
  }
  
  .about-image {
    order: 2;
    min-height: 220px;
    padding: 1.2rem;
  }
  
  .map-container-about {
    max-width: none;
  }
  
  .map-wrapper-about {
    height: auto !important; /* deja que la altura se ajuste sola */
  }

  .map-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .map-container-about h3 {
    font-size: 1.1rem;
  }
  
  .service-text {
    font-size: 0.9rem;
  }

  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0 !important;
    padding-bottom: 2rem;
  }

  .hero-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
  }

  .hero-content {
    order: 1;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-image {
    order: 2;
    display: flex;
    justify-content: center;
  }

  .bus-image {
    max-width: min(85vw, 340px);
    height: auto;
  }

  .contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info {
    align-items: center;
    text-align: center;
  }
  
  .contact-info .cta-button {
    width: 100%;
    max-width: 320px;
    margin: .5rem auto 0;
  }

  .social-media {
    grid-template-columns: 1fr;
  }

  .social-item { 
    min-height: 280px; 
  }
  
  .testimonials-photos-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .modal-content {
    max-width: 95%;
    max-height: 85%;
  }
  
  .close-button {
    top: -40px;
    right: -10px;
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section h2 {
    font-size: 2rem;
  }
}

/* Extra pequeño */
@media (max-width: 420px) {
  .social-item { 
    min-height: 240px; 
  }

  .testimonials-photos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .testimonial-photo-card {
    aspect-ratio: 3/4;
  }

  .about-image {
    min-height: 200px;
    padding: 1rem;
    order: 2;
  }
  
  .about-text {
    order: 1;
    font-size: 1.1rem;
  }
  
  .map-wrapper-about {
    height: auto !important;
    max-width: 100% !important; /* ocupar todo el ancho en pantallas pequeñas */
  }

  .map-image {
    width: 100%;
    height: auto;
  }
  
  .map-container-about h3 {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    font-size: 2.5rem;
  }
}