/* style.css - VERSÃO FINAL ATUALIZADA */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --brand-blue: #1F7399;
    --brand-dark-blue: #144a63; /* Azul mais escuro para o footer */
    --brand-orange: #F49434;
    --brand-orange-hover: #d97b1f;
    --text-dark: #2c3e50;
    --light-bg: #f4f7f6;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

/* --- Navbar --- */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 10px 0;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.nav-link {
    color: var(--brand-blue) !important;
    font-weight: 600;
    margin: 0 10px;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--brand-orange) !important;
}

.btn-header-cta {
    background-color: var(--brand-blue);
    color: white;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-header-cta:hover {
    background-color: var(--brand-orange);
    color: white;
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero-section {
    background: url('https://favarodesentupidora.com.br/wp-content/uploads/2024/09/menos-listras.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-title, .hero-subtitle, .trust-indicators {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); 
}



.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--brand-orange);
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
    max-width: 600px;
}

/* Pills no Header */
.service-pill-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.service-pill {
    background: rgba(31, 115, 153, 0.6); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
}

.service-pill i { color: var(--brand-orange); }

/* Botões do Hero */
.btn-hero-primary {
    background-color: var(--brand-orange);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    text-shadow: none;
}

.btn-hero-primary:hover {
    background-color: var(--brand-orange-hover);
    transform: translateY(-3px);
    color: white;
}

.btn-hero-secondary {
    background-color: rgba(31, 115, 153, 0.8);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    padding: 13px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    margin-left: 15px;
    transition: all 0.3s;
    text-shadow: none;
}

.btn-hero-secondary:hover {
    background-color: white;
    color: var(--brand-blue);
}

/* Stats Bar */
.trust-indicators {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.3);
    display: flex;
    gap: 50px;
}

.trust-item h4 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--brand-orange);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.trust-item p {
    font-size: 0.9rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Seção de Serviços --- */
.text-orange { color: var(--brand-orange); }
.tracking-wide { letter-spacing: 2px; }

.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--brand-orange);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(31, 115, 153, 0.1);
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.8rem;
    transition: 0.3s;
}

.service-card:hover .icon-wrapper {
    background-color: var(--brand-blue);
    color: #fff;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-whatsapp-card {
    background-color: #25D366;
    color: white;
    font-weight: 700;
    border-radius: 50px;
    padding: 8px 20px;
    width: 100%;
    transition: 0.3s;
    font-size: 0.85rem;
}

.btn-whatsapp-card:hover {
    background-color: #1ebc57;
    color: white;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* --- Depoimentos --- */
.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover { transform: translateY(-5px); }

.quote-icon {
    font-size: 2rem;
    color: rgba(31, 115, 153, 0.1);
    position: absolute;
    top: 20px;
    right: 20px;
}

.stars i { color: #FFD700; font-size: 0.9rem; }

.review-text {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.avatar-circle {
    width: 45px;
    height: 45px;
    background-color: var(--brand-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

/* --- Sobre Nós --- */
.about-image-wrapper {
    position: relative;
    padding: 10px;
    background: #fff;
    border-radius: 20px; 
}

.about-image-wrapper img {
    border-radius: 15px;
    object-fit: cover;
    min-height: 400px;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background-color: var(--brand-blue);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
    border: 4px solid #fff;
    text-align: center;
    line-height: 1.2;
}

/* --- FAQ (NOVO) --- */
.accordion-button:not(.collapsed) {
    background-color: rgba(31, 115, 153, 0.1);
    color: var(--brand-blue);
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(31, 115, 153, 0.1);
}
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

/* --- Footer "Bonito" (NOVO) --- */
.footer-enhanced {
    background-color: var(--brand-dark-blue);
    color: #fff;
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Deixa a logo branca */
}

.footer-title {
    color: var(--brand-orange);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--brand-orange);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #ddd;
}

.footer-contact-item i {
    color: var(--brand-orange);
    font-size: 1.2rem;
}

.copyright-line {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}

/* --- Botão Flutuante WhatsApp (NOVO) --- */
/* --- Botão Flutuante WhatsApp (CORRIGIDO) --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse-green 2s infinite;
    
    /* CORREÇÕES AQUI: */
    text-decoration: none !important; /* Remove o sublinhado branco */
    line-height: 0; /* Garante que o ícone não tenha espaço extra vertical */
    padding-bottom: 2px; /* Ajuste fino óptico para centralizar o ícone visualmente */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none !important; /* Garante que não apareça ao passar o mouse */
}

.whatsapp-float i {
    margin-top: 2px; /* Pequeno ajuste se o ícone parecer muito alto */
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .btn-hero-secondary { margin-left: 0; margin-top: 15px; width: 100%; display: block; text-align: center; }
    .btn-hero-primary { width: 100%; display: block; }
    .trust-indicators { flex-direction: column; gap: 20px; }
    .experience-badge { left: 20px; bottom: 20px; padding: 15px 20px; }
    .about-image-wrapper img { min-height: 300px; }
    .whatsapp-float { width: 55px; height: 55px; font-size: 30px; bottom: 20px; right: 20px; }
}