*, html{font-family:'Roboto';box-sizing: border-box;margin: 0;padding: 0;}
@font-face{
  font-family:'Roboto';
  src:url('../../fonts/Roboto-Regular.woff2') format('woff2'),
  url('../../fonts/Roboto-Regular.woff') format('woff');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
body{
  background: #dee1e3;
}

/* Sección principal */
section.hero{
  background:;
  margin: 0 auto;
  text-align: center;
  width: 70%;
}
/* Reseñas */
.reseña {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

/* Cuando se activa la clase 'visible' */
.reseña.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover profesional ya integrado */
.reseña.hovered {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
/* Footer general */
footer, .footer, #a {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Footer superior simple */
footer > div {
  text-align: center;
  padding: 8px 0;
}

footer strong {
  color: #0b374f;
}

/* Footer principal */
.footer {
  background-color: #f8f9fa;
  padding: 3rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  border-top: 4px solid #0077b6;
  border-radius: 12px 12px 0 0;
}

/* Footer columns */
.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
}

/* Marca */
.footer .brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer .brand img.logo {
  width: 60px;
  height: auto;
  object-fit: contain;
}

.footer .brand h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #0b374f;
}

.footer .brand span {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Texto y enlaces */
.footer p {
  margin: 0.5rem 0;
  color: #4b5563;
  font-size: 0.95rem;
}

.footer a.cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #0077b6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}

.footer a.cta:hover {
  background-color: #005f8c;
}

/* Títulos de columnas */
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0b374f;
}

/* Listas */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Sidebar contacto */
.footer-col p a {
  color: #0077b6;
  text-decoration: none;
}

.footer-col p a:hover {
  text-decoration: underline;
}

/* Horario */
.footer-col .horario {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Footer bottom */
#a {
  margin-top: 0px;
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 10px;
  color: #777;
  font-size: 16px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  section.hero{
    background:;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }
  .footer {
    flex-direction: column;
    padding: 2rem 1rem;
  }
  .footer-col {
    min-width: 100%;
  }
  .footer .brand {
    flex-direction: column;
    align-items: flex-start;
  }
}
section.hero h1{
  background:;
  font-size:2.5rem;
  line-height: 50px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  width: 100%;
}
section.hero p{
  text-align: justify;
}
section.hero p#lead{
  font-size:20px;
  line-height: 30px;
  margin-bottom:20px;
  text-align: justify;
}
