/*
Theme Name: Barbosa Desentupidora
Theme URI: 
Author: Douglas Editor
Author URI: 
Description: 
Version: 1.0
*/

/* Este arquivo style.css é carregado pelo functions.php */
/* Este é o CSS customizado do seu index.html */

body {
    font-family: 'Poppins', sans-serif;
}
/* A classe .hero-bg é definida no header.php para usar caminhos PHP */
.hero-bg {
    background-size: cover;
    background-position: center;
}
/* New Blue Color Scheme */
.brand-blue {
    background-color: #1d4ed8; /* blue-700 */
}
.brand-blue-text {
    color: #1d4ed8; /* blue-700 */
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Styling for the select dropdown */
#location-selector {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%236b7280%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.6em;
    padding-right: 2.5rem;
}
/* FAQ accordion styling */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details summary:after {
    content: '\f078'; /* Font Awesome down arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    transition: transform 0.2s ease-in-out;
}
details[open] summary:after {
    transform: rotate(180deg);
}

/* --- ANIMAÇÕES ADICIONADAS --- */

/* Animação de pulsar para o botão */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
}
.animate-pulse-slow {
  animation: pulse 2s infinite;
}

/* Animação de fade-in ao rolar a página */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}
.fade-in-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

