@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-slider {
  overflow: hidden;
  background: #ffffff;
  padding: 15px 0;
  border-bottom: 2px solid #f0f0f0;
}

.brand-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.brand-track img {
  height: 40px;
  margin: 0 25px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.brand-track img:hover {
  opacity: 1;
}

/* Animación automática */
@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



/* Variables globales */
:root {
  --blue: #007bff;
  --gray-dark: #222;
  --gray: #555;
  --light-gray: #e0e0e0;
  --white: #ffffff;
  --accent: #20a456;
  font-family: "Poppins", Arial, sans-serif;
}

/* Título */
h1 {
  font-size: 38px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 8px;
  text-align: center;
}

h1 .accent {
  color: var(--blue);
}

@media (max-width: 600px) {
  h1 {
    font-size: 26px;
  }
}

/* Tagline */
.tagline {
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 18px;
  text-align: center;
}

/* Enlaces */
.links-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 35px;
}

.links-row a {
  color: var(--blue);
  text-decoration: none;
  font-size: 14px;
}

.links-row a:hover {
  text-decoration: underline;
}

/* Contact title */
.contact-title {
  color: var(--gray-dark);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 18px;
  text-align: center;
}

/* Iconos de contacto */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Icono redondo */
.icon-ct {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.icon-ct:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

.icon-ct svg path {
  fill: var(--blue);
  transition: fill 0.25s ease;
}

.icon-ct:hover svg path {
  fill: #fff;
}

/* Barra inferior decorativa */
.bottom-strip {
  margin-top: 32px;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #007bff, #20a456, #007bff);
  background-size: 200% 100%;
  animation: moveGradient 3s linear infinite;
}

@keyframes moveGradient {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}



.gsm-popup{
  max-width:520px;        /* ⬅️ más ancho */
  margin:0 auto;
  background:transparent;
  border-radius:0;
  padding:30px 10px;      /* ⬅️ más espacio interno */
  font-family:Arial,Helvetica,sans-serif;
  color:#0d2547;
}

/* Título */
.gsm-popup h2{
  text-align:center;
  margin:0 0 10px;
  font-size:28px;         /* ⬅️ más grande */
  font-weight:800;
}

.gsm-popup h2 span{
  color:#007bff;
}

/* Subtítulo */
.gsm-sub{
  text-align:center;
  font-size:16px;         /* ⬅️ más grande */
  color:#555;
  margin-bottom:22px;
}

/* Lista */
.gsm-list{
  list-style:none;
  padding:0;
  margin:0 0 26px;
}

.gsm-list li{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:16px;         /* ⬅️ más grande */
  margin-bottom:14px;
  color:#333;
}

.gsm-list svg{
  width:22px;             /* ⬅️ iconos más grandes */
  height:22px;
  fill:#007bff;
}

.gsm-list a{
  color:#007bff;
  text-decoration:none;
  font-weight:600;
}

/* Botón */
.gsm-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:linear-gradient(90deg,#00c6ff,#0072ff);
  color:#fff;
  padding:16px;           /* ⬅️ más alto */
  border-radius:40px;
  text-decoration:none;
  font-weight:bold;
  font-size:17px;
  margin:18px auto 20px;
  max-width:300px;        /* ⬅️ botón más ancho */
}

.gsm-btn svg{
  width:20px;
  height:20px;
  fill:#fff;
}

.gsm-popup{
  min-height:460px;          /* hace que rellene el popup */
  display:flex;
  flex-direction:column;
}

/* Footer */
.gsm-footer{
  margin-top:auto;           /* lo empuja abajo */
  text-align:center;
  font-size:15px;
  color:#6b7280;
  padding-top:18px;
  border-top:1px solid #e5e7eb;
  letter-spacing:.3px;
}
