/*
Theme Name: QualityCleaning
Theme URI: https://qualitycleaning.ejemplo.com/
Author: Tu Nombre o Empresa
Author URI: https://tuweb.ejemplo.com/
Description: Plantilla básica compatible con Elementor, con header y footer personalizados.
Version: 1.1
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: qualitycleaning
*/

body {
  margin: 0 !important;
  font-family: 'Barlow', sans-serif;
}

a[href^="tel"] {
  color: #f46e1e;
  text-decoration: none;
}

a[href^="tel"]:hover {
  text-decoration: underline;
}

#arffrm_100_container .arf_fieldset{
  padding: 0 !important;
}

#arffrm_100_container .arf_wizard_style1 {
  padding: 0 !important;
  margin: 0 !important;
}

#arffrm_100_container .arf_wizard{
  box-shadow: 0 0 0 !important;
}
#arffrm_100_container div.arfsubmitbutton .previous_btn{
  font-weight: normal !important;
}

.qc-menu > li:last-child > a {
  background-color: #FF6C00;
  color: white !important;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.qc-menu > li:last-child > a:hover {
  background-color: #203E48;
  color: white !important;
}

.qc-menu > li:last-child > a::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  display: inline-block;
  color: white;
}

/*FIXED BANNER*/

.qc-fixed-banner {
  position: fixed;
  left: 0;
  bottom: 30px;
  background-color: #FF6C00;
  color: #fff;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  max-width: 240px;
  font-family: 'Barlow', sans-serif;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Cuando se vuelve visible */
.qc-fixed-banner.visible {
  animation: slideInFromLeft 0.5s ease-out forwards;
}

/* Animación */
@keyframes slideInFromLeft {
  to {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* Oculto completamente */
.qc-fixed-banner.hidden {
  display: none !important;
}

/* Estilo del texto */
.qc-banner-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
}

/* Botón visible, estilizado */
.qc-banner-btn {
  background: white;
  color: black;
  padding: 6px 12px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
  display: inline-block;
  transition: background 0.2s ease;
}

.qc-banner-btn:hover {
  background: #e0e0e0;
}

/* Ocultar en móvil */
@media (max-width: 320px) {
  .qc-fixed-banner {
    display: none !important;
  }
}

.qc-sr-button {
  font-family: 'Barlow', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: #FF6C00;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.qc-sr-button i {
  font-size: 18px;
}

.qc-sr-button:hover {
  background-color: #000;
  color: #fff;
}

