body {
  font-family: 'Segoe UI', sans-serif;
}

.hero-header {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: white;
  padding: 100px 20px;
  position: relative; /* necesario para que la flecha se posicione dentro del header */
}

.hero-header .logo {
  max-width: 50px;
  height: auto;
}

.hero-header h1 {
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-header .tagline {
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.features i {
  font-size: 2rem;
  color: #0d6efd;
}

.pricing .card {
  border: 1px solid #ddd;
}

footer {
  background: #f8f9fa;
  padding: 20px;
  text-align: center;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.scroll-down {
  position: fixed;      /* ahora es fija en la ventana */
  bottom: 20px;         /* separada del borde inferior */
  left: 20px;           /* pegada al borde izquierdo */
  font-size: 2.5rem;    /* tamaño de la flecha */
  color: black;
  cursor: pointer;
  animation: bounce 1.5s infinite; /* animación */
  z-index: 1000;        /* asegura que quede encima de otros elementos */
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Contenedor Principal */
.clients-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #333;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tarjeta de Cliente */
.client-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
}

.client-logo {
    max-width: 100px;
    height: auto;
    filter: grayscale(100%); /* Efecto elegante */
    opacity: 0.7;
    transition: 0.3s;
    margin-bottom: 15px;
}

.client-card:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.client-name {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #222;
}

.client-location {
    font-size: 0.85rem;
    color: #777;
}

.cta-container {
    margin-top: 50px;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 30px;
    background-color: #007bff; /* Cambia al color de SysmmoTech */
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-view-all:hover {
    background-color: #0056b3;
}
/* Estilo para la previsualización del mapa */
.map-preview {
    width: 100%;
    height: 100px; /* Altura fija para mantener uniformidad */
    overflow: hidden;
    border-radius: 8px;
    margin: 10px 0;
    border: 1px solid #eee;
}

.static-map {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la imagen sin deformarla */
    transition: transform 0.3s ease;
}

.client-card:hover .static-map {
    transform: scale(1.1); /* Efecto zoom al pasar el mouse */
}

/* Estilo para el enlace de ubicación */
.client-location-link {
    font-size: 0.85rem;
    color: #007bff;
    text-decoration: none;
    display: block;
    margin-top: 8px;
    font-weight: 500;
}

.client-location-link:hover {
    text-decoration: underline;
    color: #0056b3;
}
