/*
Theme Name: Azul Solar
Theme URL: https://github.com/manuseiro/azulsolar
Description: Tema WordPress desenvolvido para empresas de energia solar, com simulador fotovoltaico avançado totalmente refatorado na versão 2.0.8. Esta versão introduz uma arquitetura moderna baseada em desacoplamento de serviços, centralização de regras de negócio no back-end e comunicação via REST API nativa do WordPress.
Author: Manue Silva (Manuseiro)
Author URL: hhttps://manuseiro.github.io/
Version: 5.4.6 02.04.2026
Tags: responsive, page-builder, drag&drop, clean, modern, corporate, multi-purpose, multi-color, business, clean, mobile
*/

:root {
    --azul-primary: #0B7CC0;
    --azul-dark: #085a8c;
    --amarelo-solar: #FDC500;
    --amarelo-hover: #e5b100;
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

/* Header & Nav */
.navbar {
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--azul-primary) !important;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(11, 124, 192, 0.9) 0%, rgba(11, 124, 192, 0.7) 100%);

}

.hero-section h1 {
    /*color: var(--bg-light);*/
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section h1 p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: var(--azul-primary) !important;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 124, 192, 0.85), rgba(253, 197, 0, 0.25)),
        radial-gradient(circle at 20% 50%, rgba(11, 124, 192, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(253, 197, 0, 0.3) 0%, transparent 50%);
    animation: floatBg 20s ease-in-out infinite;
}

@keyframes floatBg {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }
}

/* Buttons */
.btn-warning {
    background: var(--amarelo-solar);
    color: var(--text-dark);
    font-weight: 700;
    border: none;
    padding: 0.8rem 2rem;
    /*border-radius: 50px;*/
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-warning:hover {
    background: var(--amarelo-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(253, 197, 0, 0.5), 0 0 15px rgba(253, 197, 0, 0.3);
}

.btn-warning::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-warning:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline-light {
    font-weight: 600;
    border: 2px solid var(--bg-light);
    padding: 0.8rem 2rem;
    /* border-radius: 50px;*/
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-outline-light:hover {
    color: var(--azul-primary);
}

.btn-outline-primary {
    background: transparent;
    color: var(--azul-primary);
    border: 2px solid var(--azul-primary);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 8px;
}

.btn-outline-primary:hover {
    background: var(--azul-primary);
    color: var(--white);
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px 0 rgba(11, 124, 192, 0.04);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(11, 124, 192, 0.2) !important;
    box-shadow: 0 20px 40px rgba(11, 124, 192, 0.12);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Simulador */
.quick-simulator-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    border-color: var(--azul-primary);
    box-shadow: 0 0 0 0.25rem rgba(11, 124, 192, 0.1);
}

/* Footer */
.footer {
    background: #0a6aa8;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer h5 {
    color: var(--amarelo-solar);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--amarelo-solar);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
}

.social-icons a:hover {
    background: var(--azul-primary);
}

/* Utilities */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.text-primary {
    color: var(--azul-primary) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--azul-primary) 0%, #11998e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }

    .hero-section .d-flex {
        justify-content: center;
    }
}

/*PAGINA SERVICO*/
.servico-card-modern img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.servico-card-modern:hover img {
    transform: scale(1.09);
}

.card-overlay {
    background: linear-gradient(transparent, rgba(11, 124, 192, 0.92));
    opacity: 0;
    transition: all 0.4s ease;
}

.servico-card-modern:hover .card-overlay {
    opacity: 1;
}


/* Process Cards - Como Funciona */
.process-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(11, 124, 192, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: rgba(11, 124, 192, 0.2);
    box-shadow: 0 20px 40px rgba(11, 124, 192, 0.15);
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--azul-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.process-icon img {
    transition: transform 0.5s ease;
}

.process-card:hover .process-icon img {
    transform: scale(1.08);
}

/* Ajuste no hero light se necessário */
.hero-section-light {
    background: #f8f9fa;
}

/* ====================================================================
   ESTILOS DE SUPORTE — SEÇÕES DE ALTA CONVERSÃO (Homepage)
   ==================================================================== */

/* --- Badge de Economia (Depoimentos) --- */
.badge-economia {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 14px rgba(253, 197, 0, 0.35);
    animation: badgePulse 2.5s ease-in-out infinite;
    z-index: 2;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(253, 197, 0, 0.35);
    }

    50% {
        box-shadow: 0 6px 22px rgba(253, 197, 0, 0.55);
    }
}

/* --- Depoimentos: Avatar glow --- */
.card .avatar {
    box-shadow: 0 0 0 3px rgba(11, 124, 192, 0.15);
    transition: box-shadow 0.4s ease;
}

.card:hover .avatar {
    box-shadow: 0 0 0 5px rgba(11, 124, 192, 0.3), 0 0 20px rgba(11, 124, 192, 0.12);
}

/* --- Estatísticas de Impacto: Cards Glassmorphism Premium --- */
.bg-primary .card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease;
}

.bg-primary .card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(253, 197, 0, 0.35) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(253, 197, 0, 0.08);
}

.bg-primary .card .display-6 {
    text-shadow: 0 2px 12px rgba(253, 197, 0, 0.2);
}

/* --- Cases de Sucesso: Card hover com overlay --- */
.servico-card-modern .card-overlay {
    background: linear-gradient(0deg, rgba(11, 124, 192, 0.9) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.servico-card-modern:hover .card-overlay {
    opacity: 1;
}

.servico-card-modern:hover img {
    transform: scale(1.08);
}

.servico-card-modern .badge {
    transition: transform 0.3s ease;
}

.servico-card-modern:hover .badge {
    transform: scale(1.08);
}

/* --- FAQ Accordion: Glassmorphism + transições premium --- */
.accordion-item {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 124, 192, 0.06) !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(11, 124, 192, 0.15) !important;
    box-shadow: 0 8px 25px rgba(11, 124, 192, 0.08);
}

.accordion-button {
    background: transparent !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    transition: color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--azul-primary) !important;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(11, 124, 192, 0.15);
}

.accordion-button::after {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.8;
}

/* --- Diferenciais: ícone hover glow --- */
.section .card .h1 i {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.4s ease;
}

.section .card:hover .h1 i {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 4px 12px rgba(253, 197, 0, 0.5));
}

/* --- Scroll-Reveal: Micro-animações de entrada --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.delay-100 {
    transition-delay: 0.1s;
}

.scroll-reveal.delay-200 {
    transition-delay: 0.2s;
}

.scroll-reveal.delay-300 {
    transition-delay: 0.3s;
}

.scroll-reveal.delay-400 {
    transition-delay: 0.4s;
}

/* --- Seção de Estatísticas: fundo gradiente premium --- */
.bg-primary.position-relative::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 197, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatOrb 12s ease-in-out infinite;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-30px, 20px) scale(1.1);
    }

    66% {
        transform: translate(20px, -15px) scale(0.95);
    }
}

/* --- Tracking utilitário --- */
.tracking-wider {
    letter-spacing: 0.1em;
}

/* --- Counter animação para os números de impacto --- */
@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.bg-primary .card .display-6 {
    animation: countUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ====================================================================
   MELHORIAS DE LAYOUT v6.0
   Topbar · Marcas · Eyebrow · Financiamento · CTA Mid · Footer+
   ==================================================================== */

/* --- Navbar: scroll effect via JS class ----------------------------- */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10) !important;
    border-bottom: 1px solid rgba(11, 124, 192, 0.1) !important;
}

/* --- Topbar --------------------------------------------------------- */
.topbar {
    background: #0D2136;
    padding: 8px 0;
    font-size: 0.8rem;
}

.topbar-inner {
    min-height: 32px;
}

.topbar-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.topbar-link:hover {
    color: var(--amarelo-solar);
}

.topbar-badge {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.topbar-badge--stars {
    color: var(--amarelo-solar);
    font-weight: 600;
}

/* --- Hero trust signals -------------------------------------------- */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-top: 1.5rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* --- Section eyebrow label ----------------------------------------- */
.section-eyebrow {
    display: inline-block;
    background: rgba(253, 197, 0, 0.15);
    color: var(--azul-primary);
    border: 1px solid rgba(11, 124, 192, 0.2);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
}

.section-eyebrow--light {
    background: rgba(253, 197, 0, 0.2);
    color: var(--amarelo-solar);
    border-color: rgba(253, 197, 0, 0.3);
}

.section-eyebrow--dark {
    background: rgba(11, 124, 192, 0.1);
    color: var(--azul-primary);
    border-color: rgba(11, 124, 192, 0.25);
}

/* --- Section underline accent -------------------------------------- */
.section-underline {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--azul-primary), var(--amarelo-solar));
    border-radius: 2px;
    margin-top: 0.75rem;
}

/* --- Brands strip -------------------------------------------------- */
.brands-section {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--white);
}

.brands-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #aab4c0;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.brand-item i {
    font-size: 1.1rem;
}

.brand-item:hover {
    color: var(--azul-primary);
}

.brand-item--cert {
    color: #85a0b4;
    border: 1px dashed #d0dce8;
    border-radius: 8px;
}

.brand-item--cert:hover {
    color: var(--azul-dark);
    border-color: var(--azul-primary);
    background: rgba(11, 124, 192, 0.04);
}

/* --- Financing Section --------------------------------------------- */
.financing-section {
    background: linear-gradient(135deg, #0D2136 0%, #085a8c 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.financing-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 197, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.financing-comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.financing-compare-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    flex: 1;
    min-width: 140px;
}

.financing-compare-item--before {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.financing-compare-item--after {
    background: rgba(25, 135, 84, 0.15);
    border: 1px solid rgba(25, 135, 84, 0.3);
}

.financing-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.financing-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.financing-value small {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.financing-compare-item--before .financing-value {
    color: #ff8a94;
}

.financing-compare-item--after .financing-value {
    color: #6ddea0;
}

.financing-compare-arrow {
    font-size: 1.5rem;
    color: var(--amarelo-solar);
    flex-shrink: 0;
}

.financing-banks {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.financing-banks-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amarelo-solar);
    margin-bottom: 1rem;
}

.financing-bank-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    transition: background 0.3s, border-color 0.3s;
}

.financing-bank-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(253, 197, 0, 0.3);
}

.financing-bank-icon {
    font-size: 1.5rem;
    color: var(--amarelo-solar);
    flex-shrink: 0;
}

.financing-bank-card strong {
    display: block;
    font-size: 0.9rem;
}

.financing-bank-card small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

/* --- CTA mid-page -------------------------------------------------- */
.cta-mid-section {
    padding: 3rem 0;
    background: #f0f6ff;
    border-top: 1px solid rgba(11, 124, 192, 0.08);
    border-bottom: 1px solid rgba(11, 124, 192, 0.08);
}

.cta-mid-inner {
    background: var(--white);
    border: 1px solid rgba(11, 124, 192, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(11, 124, 192, 0.07);
}

.cta-mid-icon {
    font-size: 2rem;
    color: var(--amarelo-solar);
}

/* --- Newsletter section -------------------------------------------- */
.newsletter-section {
    background: linear-gradient(135deg, #0D2136 0%, #0B7CC0 100%);
    padding: 60px 0;
}

.newsletter-inner {
    border-left: 4px solid var(--amarelo-solar);
    padding-left: 2rem;
}

/* --- Footer melhorado ---------------------------------------------- */
.footer {
    background: #0D2136;
}

.footer-certs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-cert-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.footer-cert-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-company-info p {
    line-height: 1.6;
}

.footer-hours {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--amarelo-solar);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0 0;
    margin-top: 2rem;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.text-white-80:hover {
    color: var(--amarelo-solar);
}

.contact-info li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
}

/* WhatsApp flutuante — z-index acima de sticky headers */
.whatsapp-float {
    z-index: 1050;
}

/* --- Responsive improvements --------------------------------------- */
@media (max-width: 767px) {
    .financing-comparison {
        flex-direction: column;
    }

    .financing-compare-item {
        min-width: 100%;
    }

    .financing-compare-arrow {
        transform: rotate(90deg);
    }

    .cta-mid-inner {
        padding: 1.5rem;
    }

    .newsletter-inner {
        border-left: none;
        padding-left: 0;
        border-top: 4px solid var(--amarelo-solar);
        padding-top: 1.5rem;
    }

    .footer-certs {
        flex-direction: column;
        text-align: center;
    }

    .footer-cert-divider {
        display: none;
    }

    .brands-grid {
        gap: 0.4rem 1rem;
    }
}

@media (max-width: 575px) {
    .hero-trust {
        gap: 0.5rem 1rem;
    }
    .hero-trust-item {
        font-size: 0.8rem;
    }
}

/* ================================================================
   v7 — Novos componentes: Blog, Stats Glass, Hover Lift, Steps
   ================================================================ */

/* Blog card home */
.blog-card-home { transition: transform .25s ease, box-shadow .25s ease; }
.blog-card-home:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(11,124,192,.12) !important; }
.blog-card-home img.transition { transition: transform .4s ease; }
.blog-card-home:hover img.transition { transform: scale(1.05); }

/* Stat card glassmorphism */
.stat-card-glass {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 1.25rem;
    transition: transform .25s ease;
}
.stat-card-glass:hover { transform: translateY(-4px); }

/* Hover lift genérico */
.hover-lift { transition: transform .25s ease, box-shadow .25s ease; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(11,124,192,.1) !important; }

/* Orçamento steps */
.orcamento-steps .step-circle { font-size: .9rem; font-weight: 700; border: 2px solid #dee2e6; }
.orcamento-steps .step-item.active .step-circle { border-color: var(--azul-primary); }
.orcamento-steps .step-label { font-size: .7rem; letter-spacing: .04em; }

/* Brand logo */
.brand-logo { max-height: 40px; max-width: 120px; object-fit: contain; filter: grayscale(1); opacity: .65; transition: filter .2s, opacity .2s; }
.brand-item:hover .brand-logo { filter: grayscale(0); opacity: 1; }

/* Services link item */
.servico-link-item { transition: background .2s; }
.servico-link-item:hover { background: #f0f7ff !important; }

/* Blog pagination list */
.page-numbers { list-style: none; display: flex; justify-content: center; gap: .5rem; padding: 0; }
.page-numbers li a, .page-numbers li span {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    font-weight: 600; font-size: .9rem; border: 1px solid #dee2e6; text-decoration: none;
    color: var(--azul-primary); transition: background .2s, color .2s;
}
.page-numbers li .current,
.page-numbers li a:hover { background: var(--azul-primary); color: #fff; border-color: var(--azul-primary); }

/* ================================================================
   BOTÃO WHATSAPP — btn-whatsapp
   Cor oficial: #43cd66 | hover: opacity 0.75
   ================================================================ */
.btn-whatsapp {
    background-color: #43cd66;
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 0.8rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-whatsapp i { color: #fff; }
.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background-color: #43cd66;
    opacity: 0.75;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(67, 205, 102, 0.45);
}
.btn-whatsapp:active {
    opacity: 0.85;
    transform: translateY(0);
}

/* Setor badge nos cards de projeto */
.badge-setor {
    font-size: .7rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* Thumbnail padronizada para cards de serviço */
.servico-thumb-wrap {
    overflow: hidden;
    height: 220px;
    position: relative;
    background: var(--azul-primary);
}
.servico-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.servico-thumb-wrap:hover img {
    transform: scale(1.05);
}

/* Archive servicos — cards CPT */
.archive-servico-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

/* single-projetos melhorias */
.projeto-metric-box {
    background: #fff;
    border-radius: .75rem;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    height: 100%;
}
.projeto-metric-box .metric-value {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
}
.projeto-metric-box .metric-label {
    font-size: .75rem;
    color: #888;
    margin-top: .25rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ================================================================
   single-projetos.php — v9.0 "Solar Project Case Study"
   Todos os estilos de página única de projeto.
   ================================================================ */

/* ── Hero ─────────────────────────────────────────────────────── */
.sp-hero {
    min-height: 480px;
    display: flex;
    align-items: center;
}
.sp-hero__bg {
    top: 0; left: 0;
}
.sp-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.sp-hero__overlay {
    top: 0; left: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 90, 140, .88) 0%,
        rgba(11, 22, 54, .72) 100%
    );
}
.sp-hero__title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: #fff;
    line-height: 1.15;
}
.sp-hero__location {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
}
.sp-badge {
    font-size: .8rem;
    padding: .4em .9em;
    border-radius: 50rem;
}
.sp-breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,.4); }
.sp-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.7); text-decoration: none; }
.sp-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.sp-breadcrumb .breadcrumb-item.active { color: #fff; font-weight: 700; }
.sp-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* ── Faixa de Métricas ────────────────────────────────────────── */
.sp-metrics-strip {
    padding: 0;
    border-bottom: 2px solid rgba(255,255,255,.08);
}
.sp-metric {
    padding: 1.25rem 1rem;
    border-right: 1px solid rgba(255,255,255,.1);
    transition: background .2s;
}
.sp-metric:last-child { border-right: 0; }
.sp-metric:hover { background: rgba(255,255,255,.06); }
.sp-metric--highlight { background: rgba(255,255,255,.07); }
.sp-metric__value {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    white-space: nowrap;
}
.sp-metric--highlight .sp-metric__value { color: #4ade80; }
.sp-metric__label {
    font-size: .7rem;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: .25rem;
}
@media (max-width: 575.98px) {
    .sp-metrics-strip .row { flex-wrap: wrap; }
    .sp-metric { width: 50%; border-bottom: 1px solid rgba(255,255,255,.1); }
    .sp-metric:nth-child(2n) { border-right: 0; }
}

/* ── Seções do conteúdo ───────────────────────────────────────── */
.sp-section__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid #e5f0fa;
    display: flex;
    align-items: center;
}
.sp-section__body { font-size: 1rem; line-height: 1.8; }

/* ── Carousel ─────────────────────────────────────────────────── */
.sp-carousel { background: #111; }
.sp-carousel__img {
    height: 460px;
    object-fit: cover;
    transition: transform .4s ease;
}
.sp-carousel .carousel-item:hover .sp-carousel__img { transform: scale(1.02); }
.sp-carousel__zoom {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.35);
    opacity: 0;
    transition: opacity .25s;
}
/* [FIX-3] Hover via CSS — sem onmouseover inline */
.sp-gal-trigger:hover .sp-carousel__zoom,
.sp-gal-trigger:focus-visible .sp-carousel__zoom { opacity: 1; }
.sp-carousel__caption {
    background: rgba(0,0,0,.55);
    border-radius: .375rem;
    padding: .25rem .6rem;
    left: 50%; transform: translateX(-50%);
    width: auto; max-width: 80%;
}

/* ── [FIX-3] Filmstrip — CSS puro para estados ativos ────────── */
.sp-filmstrip {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .5rem;
}
.sp-filmstrip__btn {
    width: 70px; height: 70px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: .5rem;
    overflow: hidden;
    cursor: pointer;
    opacity: .55;
    transition: opacity .2s, border-color .2s, transform .15s;
    background: none;
}
.sp-filmstrip__btn img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
/* Estado ativo e hover — zero JS para o visual */
.sp-filmstrip__btn--active,
.sp-filmstrip__btn:hover,
.sp-filmstrip__btn:focus-visible {
    opacity: 1;
    border-color: var(--azul-primary);
    transform: translateY(-2px);
    outline: none;
}

/* ── Mapa ─────────────────────────────────────────────────────── */
.sp-map { height: 400px; width: 100%; }

/* ── [FIX-1] Depoimento ───────────────────────────────────────── */
.sp-testimonial { position: relative; }
.sp-testimonial__icon {
    font-size: 4rem;
    color: var(--azul-primary);
    opacity: .15;
    line-height: 1;
    display: block;
    margin-bottom: .5rem;
}
.sp-testimonial__text { margin-bottom: 0; }
.sp-testimonial__avatar {
    width: 48px; height: 48px;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── Sidebar ──────────────────────────────────────────────────── */
.sp-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}
@media (max-width: 991.98px) {
    .sp-sidebar { position: static; }
}

/* ── Card padrão (ficha + resultados) ─────────────────────────── */
.sp-card { border-radius: 1rem; }
.sp-card__header {
    border-radius: 1rem 1rem 0 0 !important;
}

/* ── Ficha Técnica — lista de definições ─────────────────────── */
.sp-ficha { margin: 0; }
.sp-ficha__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1.25rem;
    border-bottom: 1px solid #f0f4f8;
    transition: background .15s;
}
.sp-ficha__row:last-child { border-bottom: 0; }
.sp-ficha__row:hover { background: #f8fbff; }
.sp-ficha dt {
    font-weight: 600;
    font-size: .85rem;
    color: #6c757d;
    flex-shrink: 0;
    margin: 0;
}
.sp-ficha dd {
    font-weight: 700;
    font-size: .9rem;
    color: #212529;
    text-align: right;
    margin: 0;
    max-width: 60%;
}

/* ── Resultados boxes ─────────────────────────────────────────── */
.sp-result-box {
    background: #fff;
    border-radius: .75rem;
    padding: .875rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    height: 100%;
}
.sp-result-box--subtle { background: #f0f7ff; }
.sp-result-box__val {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
}
.sp-result-box__lbl {
    font-size: .7rem;
    color: #888;
    margin-top: .25rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ── [UI-3] Barra de Payback animada via CSS ──────────────────── */
.sp-payback__track {
    height: 10px;
    background: #e5f0fa;
    border-radius: 5px;
    overflow: hidden;
    margin: .25rem 0;
}
.sp-payback__bar {
    height: 100%;
    background: linear-gradient(90deg, #0B7CC0, #25D366);
    border-radius: 5px;
    width: 0;  /* começa em 0, animado para --pb-width */
    animation: spPaybackGrow .9s cubic-bezier(.4,0,.2,1) .4s forwards;
}
@keyframes spPaybackGrow {
    from { width: 0; }
    to   { width: var(--pb-width, 0%); }
}

/* ── CTA box ──────────────────────────────────────────────────── */
.sp-cta-box {
    background: linear-gradient(135deg, var(--azul-primary) 0%, var(--azul-dark) 100%);
}

/* ── [UI-5] WhatsApp fixo mobile ─────────────────────────────── */
.sp-wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px; height: 56px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(37,211,102,.4);
    z-index: 1050;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}
.sp-wa-float:hover, .sp-wa-float:focus-visible {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37,211,102,.55);
    outline: none;
}

/* ── Projetos relacionados ────────────────────────────────────── */
.sp-related .servico-card-modern { transition: transform .25s, box-shadow .25s; }
.sp-related .servico-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(11,124,192,.13) !important;
}

/* ── Responsividade geral ─────────────────────────────────────── */
@media (max-width: 767.98px) {
    .sp-hero { min-height: 360px; }
    .sp-carousel__img { height: 240px; }
    .sp-filmstrip__btn { width: 56px; height: 56px; }
    .sp-map { height: 260px; }
    .sp-sidebar { position: static; }
}
