
:root{
  --primary:#005EB8;
  --accent:#00A1C9;
  --text:#1F2937;
  --muted:#6B7280;
  --bg:#FFFFFF;
  --alt:#F3F4F6;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,'Noto Sans',sans-serif;color:var(--text);background:var(--bg)}
img{max-width:100%;display:block}
.container{width:100%;max-width:1080px;margin:0 auto;padding:0 1rem}

.topbar{position:sticky;top:0;background:#fff;border-bottom:1px solid #e5e7eb;z-index:10}
.topbar .container{display:flex;align-items:center;justify-content:space-between;padding:0.75rem 1rem}
.brand{display:flex;gap:.75rem;align-items:center;color:var(--text);text-decoration:none;font-weight:700}
.brand img{width:44px;height:44px;object-fit:contain}
.nav{display:flex;gap:1rem}
.nav a{color:var(--text);text-decoration:none;padding:.5rem .75rem;border-radius:.5rem}
.nav a:hover{background:var(--alt)}

.hero{background:linear-gradient(135deg, #eaf7ff, #ffffff);padding:4rem 0}
.hero .container{display:grid;grid-template-columns:1.2fr 0.8fr;gap:2rem;align-items:center}
.hero h1{font-size:clamp(1.8rem,3vw,2.6rem);margin:0 0 .75rem}
.hero p{color:var(--muted);margin:0 0 1.5rem}
.btn{display:inline-block;padding:.75rem 1rem;border:1px solid #d1d5db;border-radius:.6rem;color:var(--text);text-decoration:none;font-weight:600}
.btn.primary{background:var(--primary);border-color:var(--primary);color:#fff}
.btn:hover{filter:brightness(0.95)}

.section{padding:3rem 0}
.section.alt{background:var(--alt)}
.section h2{font-size:1.6rem;margin:0 0 1rem}
.lead{color:var(--muted)}

.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.card{background:#fff;border:1px solid #e5e7eb;border-radius:.75rem;padding:1rem}
.card h3{margin-top:0}

.brand-list{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem;list-style:none;padding:0}
.brand-list li{background:#fff;border:1px dashed #d1d5db;border-radius:.5rem;padding:.75rem;text-align:center;color:var(--muted)}

.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:1rem}
.contact-form{background:#fff;border:1px solid #e5e7eb;border-radius:.75rem;padding:1rem}
.contact-form label{display:block;margin-bottom:.75rem}
.contact-form input, .contact-form textarea{width:100%;padding:.6rem;border:1px solid #d1d5db;border-radius:.5rem}
.form-note{color:var(--muted);font-size:.9rem}
.contact-info{background:#fff;border:1px solid #e5e7eb;border-radius:.75rem;padding:1rem}

.footer{border-top:1px solid #e5e7eb;padding:1rem 0;color:var(--muted);text-align:center}

@media (max-width:900px){
  .hero .container{grid-template-columns:1fr}
  .cards{grid-template-columns:repeat(2,1fr)}
  .brand-list{grid-template-columns:repeat(2,1fr)}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width:520px){
  .cards{grid-template-columns:1fr}
  .brand-list{grid-template-columns:1fr}
}

.carrusel-imagenes {
  display: flex; /* Coloca los elementos hijos (imágenes) en fila */
  justify-content: center; /* Centra las imágenes horizontalmente */
  gap: 20px; /* Espacio entre las imágenes (opcional) */
  /* Puedes usar 'space-between', 'space-around', etc., para distribución */
}

.carrusel-imagenes img {
  width: 300px; /* Ajusta el ancho de las imágenes */
  height: auto; /* Mantiene la proporción */
}

.carrusel-imagenes-ancho {
  display: flex; /* Coloca los elementos hijos (imágenes) en fila */
  justify-content: center; /* Centra las imágenes horizontalmente */
  gap: 20px; /* Espacio entre las imágenes (opcional) */
  /* Puedes usar 'space-between', 'space-around', etc., para distribución */
}

.carrusel-imagenes-ancho img {
  width: 800px; /* Ajusta el ancho de las imágenes */
  height: auto; /* Mantiene la proporción */
}


Estilos CSS
Aquí tienes un CSS completo y sencillo que cubre las clases del HTML anterior y añade diseño, tipografía y respuesta móvil. Pégalo en tu archivo CSS o dentro de un <style> en la página.
/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Contenedor general */
.contact-phone,
.contact-phones {
  max-width: 980px;
  margin: 24px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
}

/* Títulos */
.contact-phone h2,
.office h3 {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0b3b66;
  margin-bottom: 10px;
  font-size: 18px;
}

/* Estructura para múltiples oficinas */
.contact-phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

/* Tarjeta de oficina */
.office {
  padding: 16px;
  border-radius: 6px;
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
  border: 1px solid rgba(11,59,102,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.office:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(11,59,102,0.06);
}

/* Etiqueta pequeña (TELÉFONO) */
.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #6b7b8c;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Número de teléfono */
.phone {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  color: #0b3b66;
}

/* Enlace clicable */
.phone a,
.contact-phone a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Pequeño icono estilo teléfono con CSS (opcional) */
.phone a::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0b3b66,#1f7bbf);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.57.57a1 1 0 011 1V20a1 1 0 01-1 1C10.07 21 3 13.93 3 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.24.2 2.45.57 3.57a1 1 0 01-.24 1.01l-2.21 2.21z"/></svg>') center/60% no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.57.57a1 1 0 011 1V20a1 1 0 01-1 1C10.07 21 3 13.93 3 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.24.2 2.45.57 3.57a1 1 0 01-.24 1.01l-2.21 2.21z"/></svg>') center/60% no-repeat;
}

/* Accesibilidad: foco visible en enlaces */
.phone a:focus,
.contact-phone a:focus {
  outline: 3px solid rgba(31,123,191,0.18);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Texto secundario si lo necesitas */
.office p.small {
  font-size: 13px;
  color: #4b5966;
  margin-top: 8px;
}

/* Responsive: una columna en pantallas pequeñas */
@media (max-width: 880px) {
  .contact-phones {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .contact-phones {
    grid-template-columns: 1fr;
  }

  .contact-phone,
  .contact-phones {
    padding: 14px;
    margin: 16px;
  }

  .phone {
    font-size: 18px;
  }

  .phone a::before {
    width: 30px;
    height: 30px;
    background-size: 60%;
  }
}




