:root {
  --color-bg: #f4f6f8;
  --color-card: #ffffff;
  --color-dark: #0c0f14;
  --color-dark-2: #141922;
  --color-text: #1b2430;
  --color-muted: #697586;
  --color-border: #dbe2ea;
  --color-blue: #0d6efd;
  --color-blue-hover: #0b5ed7;
  --color-green: #25d366;
  --shadow-soft: 0 12px 30px rgba(12, 15, 20, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #eef2f6 0%, #f7f9fb 100%);
  color: var(--color-text);
}

a {
  text-decoration: none;
}

.topbar {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  color: #fff;
  border-bottom: 3px solid var(--color-blue);
}

.topbar-inner,
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.socials,
.footer-links {
display: flex;
justify-content: center;
align-items: center;
gap: 18px;
flex-wrap: wrap;
margin-top: 10px;
}

.socials a,
.footer-links a {
  color: #fff;
  font-weight: 700;
  opacity: 0.92;
}

.socials a:hover,
.footer-links a:hover {
  opacity: 1;
  color: #8cc2ff;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px 110px;
}

.card {
  background: var(--color-card);
  border: 1px solid rgba(219, 226, 234, 0.9);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-soft);
}

.hero {
  padding: 34px 28px;
}

.hero-badge {
  display: inline-block;
  background: rgba(13, 110, 253, 0.1);
  color: var(--color-blue);
  border: 1px solid rgba(13, 110, 253, 0.16);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.05;
  color: #0d1520;
  max-width: 780px;
}

.hero p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-muted);
  max-width: 760px;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 14px;
}

.search-box input {
  width: 100%;
  padding: 18px 16px;
  font-size: 17px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  outline: none;
  transition: 0.2s ease;
}

.search-box input:focus {
  border-color: rgba(13, 110, 253, 0.45);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.08);
}

.search-box button {
  border: none;
  border-radius: var(--radius-md);
  background: var(--color-blue);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.search-box button:hover {
  background: var(--color-blue-hover);
  transform: translateY(-1px);
}

.mensaje {
  margin-top: 16px;
  min-height: 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-blue);
}

.hidden {
  display: none;
}

.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.section-title-wrap h2,
.about-card h2,
.schedule-card h2,
.map-card h2 {
  margin: 0;
  font-size: 30px;
  color: #0d1520;
}

.section-chip {
  display: inline-block;
  background: #eff5ff;
  color: var(--color-blue);
  border: 1px solid #d6e6ff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fafcff;
}

.row strong {
  font-size: 14px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.row span {
  font-size: 18px;
  font-weight: 700;
  color: #142031;
  word-break: break-word;
}

.wa-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 22px;
  border-radius: 14px;
  background: var(--color-green);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  transition: 0.2s ease;
}

.wa-btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.97);
}

.info-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 22px;
}

.about-card p {
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-muted);
}

.schedule-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.schedule-list li span {
  color: var(--color-muted);
  font-weight: 700;
}

.schedule-list li strong {
  color: #132033;
}

.address-text {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 17px;
}

.map-link {
  color: var(--color-blue);
  font-weight: 800;
}

.map-embed {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  min-height: 360px;
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
  z-index: 999;
}
.footer {
  background: #000;
  color: #fff;
  border-top: 3px solid var(--color-blue);
  margin-top: 40px;
  padding: 28px 20px;
}

.footer-brand {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-text {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 34px;
  }

  .data-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .footer-inner,
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    font-size: 24px;
  }

  .hero {
    padding: 24px 18px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p,
  .about-card p,
  .address-text {
    font-size: 16px;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .search-box button,
  .search-box input,
  .wa-btn {
    width: 100%;
  }

  .card {
    padding: 20px;
    border-radius: 16px;
  }

  .section-title-wrap h2,
  .about-card h2,
  .schedule-card h2,
  .map-card h2 {
    font-size: 24px;
  }

  .row span {
    font-size: 16px;
  }
}
.estado {
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}

.estado.verde {
  color: #0f7a35;
  background-color: #e6f7ee;
}

.estado.amarillo {
  color: #a36b00;
  background-color: #fff5d6;
}

.estado.rojo {
  color: #b30000;
  background-color: #ffe6e6;
}
.socials a {
font-size: 22px;
margin-left: 18px;
color: white;
transition: 0.3s ease;
}

.socials a:hover {
color: #2b6cff;
transform: scale(1.1);
}
/* BOTON FLOTANTE WHATSAPP */
.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

/* ANIMACION SUAVE EN BOTONES */
button,
.wa-btn,
.map-link {
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

button:hover,
.wa-btn:hover,
.map-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  opacity: 0.96;
}

/* ANIMACION GENERAL EN TARJETAS */
.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
/* Animación aparición resultado */

.resultado {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.resultado.show {
  opacity: 1;
  transform: translateY(0);
}
/* Estado de carga del botón */
#buscarBtn.loading {
  opacity: 0.85;
  cursor: wait;
}

/* Spinner de búsqueda */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: girar 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.resenas {
  padding: 28px 14px 10px;
  background: #0f1117;
  border-radius: 30px;
  margin: 20px 12px 16px;
}

.resenas .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.resenas .section-title-wrap h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 10px;
}
.map-card .section-title-wrap h2 {
  color: #111111;
}
.section-title-wrap p {
  color: #bfc7d5;
}

.section-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border: 1px solid rgba(74, 144, 226, 0.35);
  border-radius: 999px;
  color: #4a90e2;
  font-size: 0.9rem;
}

.resenas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.resena-card {
  background: #171b24;
  border-radius: 22px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.08);
}

.resena-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.resena-avatar {
  width: 45px;
  height: 45px;
  background: #1f5ea8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.resena-header h3 {
  color: white;
  margin: 0;
  font-size: 1rem;
}

.resena-header span {
  color: #bfc7d5;
  font-size: 0.85rem;
}

.resena-stars {
  color: #ffc107;
  margin: 10px 0;
}

.resena-card p {
  color: #d7dde5;
}

@media (max-width: 768px) {
  .resenas {
    padding: 32px 14px;
    margin: 24px 12px;
    border-radius: 24px;
  }

  .resenas .container {
    max-width: 100%;
  }

  .resenas-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .resena-card {
    padding: 18px;
    border-radius: 18px;
  }

  .resena-header {
    gap: 10px;
    margin-bottom: 10px;
  }

  .resena-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .resena-header h3 {
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .resena-header span {
    font-size: 0.82rem;
  }

  .resena-stars {
    margin: 8px 0;
    font-size: 1rem;
  }

  .resena-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
  }

  .resenas .section-title-wrap {
    margin-bottom: 20px;
  }

  .resenas .section-title-wrap h2 {
    font-size: 1.55rem;
    line-height: 1.05;
    margin-bottom: 8px;
  }

  .resenas .section-title-wrap p {
    font-size: 0.9rem;
    line-height: 1.35;
    margin: 0;
  }

  .section-badge {
    margin-bottom: 10px;
    padding: 5px 12px;
    font-size: 0.82rem;
  }
}
.servicios {
  padding: 40px 20px;
}

.servicio {
  background: #111;
  color: white;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #0d6efd;
  transition: 0.3s ease;
}

.servicio h3 {
  margin-bottom: 8px;
  color: white;
}

.servicio p {
  color: #ccc;
}

.servicio:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
}

.volver {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  display: inline-block;
  margin-top: 20px;
}

/* MENU HAMBURGUESA */
.menu-desplegable {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2000;
}

.menu-checkbox {
  display: none;
}

.menu-boton {
  display: inline-block;
  color: white;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  user-select: none;
}

.menu {
  display: none;
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.95);
  padding: 12px;
  border-radius: 10px;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.menu-checkbox:checked + .menu-boton + .menu {
  display: flex;
}
/* AJUSTE MOBILE HEADER + MENU */
@media (max-width: 768px) {
  .topbar {
    position: relative;
  }

  .menu-desplegable {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3000;
  }

  .menu-boton {
    font-size: 30px;
  }

  .topbar-inner {
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .brand-block {
    width: 100%;
  }

  .brand {
    font-size: 1.9rem;
    line-height: 1.1;
  }

  .brand-subtitle {
    font-size: 1rem;
    line-height: 1.35;
  }

  .socials {
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
  }
}
.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  border-top: 3px solid #1e3a8a;
}

.footer p {
  margin: 5px 0;
  opacity: 0.8;
}
<footer class="footer">
  <div class="footer-inner">
    <p class="footer-brand">© 2026 Hangar Centro de Lubricación</p>
    <p class="footer-text">Tu vehículo en buenas manos</p>
  </div>
</footer>
@media (max-width: 768px) {
  .footer {
    margin-top: 30px;
    padding: 24px 16px;
  }

  .footer-brand {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-text {
    font-size: 12px;
    line-height: 1.5;
  }
}
.brand-subtitle {
opacity: 0.85;
font-size: 14px;
letter-spacing: 0.3px;
}
.btn-servicio {
display: inline-block;
margin-top: 15px;
padding: 10px 18px;
background: #0d6efd;
color: white;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
transition: 0.3s;
}

.btn-servicio:hover {
background: #0b5ed7;
}
<section class="rating-google">
  <div class="rating-box">
    <div class="rating-score">
      <span class="rating-number">4.9</span>
      <span class="rating-stars">★★★★★</span>
    </div>

    <p class="rating-text">
      Basado en <strong>127 opiniones reales</strong> de Google.
    </p>

    <div class="rating-highlights">
      <span>Atención rápida</span>
      <span>Profesionalismo</span>
      <span>Buenos precios</span>
    </div>
  </div>
</section>
.rating-inline {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 22px;
}

.rating-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(74, 144, 226, 0.35);
  background: rgba(74, 144, 226, 0.08);
  color: #4a90e2;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.rating-inline p {
  margin: 0;
  color: #bfc7d5;
  font-size: 0.9rem;
}
.resenas-slider-wrap {
  width: 100%;
}

.resenas-dots {
  display: none;
}

@media (max-width: 768px) {
  .resenas {
    padding: 28px 14px 18px;
    margin: 20px 12px;
    border-radius: 24px;
  }

  .resenas .section-title-wrap {
    margin-bottom: 18px;
  }

  .resenas .section-title-wrap h2 {
    font-size: 1.8rem;
    line-height: 1.05;
    margin-bottom: 10px;
  }

  .rating-inline {
    margin-top: 10px;
    margin-bottom: 18px;
  }

  .resenas-slider-wrap {
    overflow: hidden;
  }

  .resenas-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .resenas-grid::-webkit-scrollbar {
    display: none;
  }

  .resena-card {
    min-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 18px;
    border-radius: 18px;
  }

  .resena-header {
    gap: 10px;
    margin-bottom: 10px;
  }

  .resena-avatar {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .resena-header h3 {
    font-size: 1rem;
    line-height: 1.2;
    margin: 0;
  }

  .resena-header span {
    font-size: 0.82rem;
  }

  .resena-stars {
    margin: 8px 0 10px;
    font-size: 1rem;
  }

  .resena-card p {
    font-size: 0.98rem;
    line-height: 1.4;
    margin: 0;
  }

  .resenas-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .resena-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.25);
    padding: 0;
    cursor: pointer;
  }

  .resena-dot.active {
    background: #4a90e2;
  }
}
.resenas-controls {
  display: none;
}

.resena-arrow {
  background: rgba(74, 144, 226, 0.08);
  border: 1px solid rgba(74, 144, 226, 0.35);
  color: #4a90e2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

@media (max-width: 768px) {
  .resenas {
    padding: 28px 14px 10px;
    margin: 20px 12px 16px;
    border-radius: 24px;
  }

  .resenas-slider-wrap {
    overflow: hidden;
  }

  .resena-card {
    min-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 18px;
    border-radius: 18px;
    margin-bottom: 0;
  }

  .resenas-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
  }

  .resenas-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
  }

  .resena-arrow {
    flex-shrink: 0;
  }
}
.resenas-google-link {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(74, 144, 226, 0.3);
  color: #4a90e2;
  font-size: 0.8rem;
  text-decoration: none;
}
.brand {
display: flex;
align-items: center;
gap: 12px;
}

.logo {
height: 45px;
width: auto;
}