/* ============================================================
   Control Total — Overrides de marca sobre el template Selecao
   Amarillo #F4E01F · Negro #0D0D0D · Blanco
   ============================================================ */
:root {
  --accent-color: #F4E01F;
  --heading-color: #14151c;
  --nav-hover-color: #F4E01F;
  --nav-dropdown-hover-color: #d4b90a;
}

.dark-background {
  --background-color: #14151c;
  --surface-color: #23242e;
}

/* Texto oscuro sobre botones amarillos (el template usa blanco) */
.call-to-action .cta-btn:hover,
.contact .php-email-form button[type="submit"],
.cotizador .btn-cotizar {
  color: #14151c !important;
  font-weight: 600;
}

/* Boton del hero: letra blanca sobre fondo oscuro; negra al llenarse de amarillo */
.hero .btn-get-started { color: #ffffff !important; font-weight: 600; }
.hero .btn-get-started:hover { background: var(--accent-color); color: #14151c !important; }
.call-to-action .cta-btn:hover { background: var(--accent-color); border-color: var(--accent-color); }

/* Links con amarillo oscuro para que se lean sobre blanco */
a { color: #b5a008; }
a:hover { color: #14151c; }

/* Logo en el header */
.header .logo img { max-height: 44px; margin-right: 10px; border-radius: 50%; }

/* Servicios: iconos en amarillo sobre círculo negro */
.services .service-item .icon i { color: var(--accent-color) !important; }

/* Cotizador */
.cotizador .quote-card {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0,0,0,.08);
  height: 100%;
}
.cotizador .quote-result {
  background: #14151c;
  color: #fff;
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cotizador .quote-result .precio {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--accent-color);
  margin: 8px 0 12px;
}
.cotizador .quote-result .nota { font-size: .85rem; color: #b8b9c1; }
.cotizador label { font-weight: 600; font-size: .9rem; margin-bottom: 6px; margin-top: 14px; display: block; }
.cotizador .btn-cotizar,
.btn-cotizar {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  display: inline-block;
  background: var(--accent-color);
  color: #14151c;
  border: 2px solid var(--accent-color);
  padding: 12px 28px;
  border-radius: 50px;
  margin-top: 18px;
  transition: .3s;
  cursor: pointer;
}
.btn-cotizar:hover { background: #e5d012; border-color: #e5d012; color: #14151c; transform: translateY(-1px); }

/* Boton secundario (contorno) */
.btn-cotizar.btn-sec {
  background: transparent;
  border: 2px solid #14151c;
  color: #14151c;
}
.btn-cotizar.btn-sec:hover { background: #14151c; color: var(--accent-color); }

/* Botón flotante de WhatsApp */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  transition: transform .15s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float i { color: #fff; font-size: 30px; }

/* El scroll-top no debe tapar el botón de WhatsApp */
.scroll-top { bottom: 90px !important; }
