/*
Theme Name: Eco Inova Solar
Theme URI: https://ecoinovasolar.com.br
Author: Eco Inova Solar
Author URI: https://ecoinovasolar.com.br
Description: Landing Page oficial da Eco Inova Energia Solar — Pioneira na Baixada Fluminense desde 2016.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: ecoinova-solar
*/

/* =========================================================
   RESET E BASE
   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    background-color: #0d0d0d;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* =========================================================
   VARIÁVEIS DE COR
   ========================================================= */
:root {
    --color-blue-dark: #0a1f5c;
    --color-green-neon: #7ed321;
    --color-green-bright: #39d353;
    --color-yellow: #f5c518;
    --color-white: #ffffff;
    --color-bg-dark: #0d0d0d;
    --color-bg-secondary: #111827;
}

/* =========================================================
   CONTAINER GLOBAL
   ========================================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

section {
    padding: 4rem 0;
}

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.btn-primary {
    background-color: var(--color-green-neon);
    color: #0a1f5c;
    box-shadow: 0 4px 20px rgba(126, 211, 33, 0.4);
}

.btn-primary:hover {
    background-color: var(--color-green-bright);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(57, 211, 83, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-green-neon);
    border: 2px solid var(--color-green-neon);
}

.btn-secondary:hover {
    background-color: var(--color-green-neon);
    color: #0a1f5c;
}

@media (min-width: 768px) {
    .btn {
        width: auto;
    }
}

/* =========================================================
   HEADER STICKY (TOP BAR)
   ========================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 31, 92, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(126, 211, 33, 0.2);
    transition: background-color 0.3s ease, padding 0.3s ease;
}

body.nav-open {
    overflow: hidden;
}

.site-header.scrolled {
    background-color: rgba(5, 5, 15, 0.95);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    gap: 1rem;
}

.site-header__logo img {
    max-height: 90px;
    width: auto;
}

.site-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    width: min(86vw, 360px);
    padding: 5.5rem 1.5rem 2rem;
    background: linear-gradient(180deg, #050a19 0%, #0a1f5c 100%);
    border-left: 1px solid rgba(126, 211, 33, 0.35);
    box-shadow: -18px 0 45px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
 
}

.site-header__nav.is-open {
    transform: translateX(0);
    visibility: visible;
    height: 100vh;
}

.site-header__nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
}

.site-header__nav a {
    display: block;
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.3s ease, transform 0.3s ease;
}

.site-header__nav a:hover {
    color: var(--color-green-neon);
    transform: translateX(-4px);
}

.site-header__nav .nav-cta {
    background-color: var(--color-green-neon);
    color: #0a1f5c !important;
    padding: 0.9rem 1.25rem;
    border-radius: 50px;
    border-bottom: 0;
    font-weight: 700;
    margin-top: 0.75rem;
    text-align: center;
}

.site-header__nav .nav-cta:hover {
    background-color: var(--color-green-bright);
    color: #0a1f5c !important;
    transform: translateY(-2px);
}

.site-header__close {
    position: absolute;
    top: 1.1rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(126, 211, 33, 0.35);
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
}

.site-header__close:hover,
.site-header__close:focus {
    border-color: var(--color-green-neon);
    color: var(--color-green-neon);
}

.site-header__backdrop {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.72);
    border: 0;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-header.is-menu-open .site-header__backdrop {
    opacity: 1;
    visibility: visible;
}

.site-header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1003;
}

.site-header__toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-green-neon);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.site-header.is-menu-open .site-header__toggle {
    opacity: 0;
    pointer-events: none;
}

.site-header__cta {
    display: none; /* aparece só no desktop */
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (min-width: 900px) {
    body.nav-open {
        overflow: auto;
    }

    .site-header__inner {
        justify-content: flex-start;
    }

    .site-header__nav {
        position: static;
        width: auto;
        padding: 0;
        background: transparent;
        border-left: 0;
        box-shadow: none;
        transform: none;
        visibility: visible;
        flex: 1;
        display: flex;
        justify-content: center; /* centraliza o menu */
    }

    .site-header__nav ul {
        flex-direction: row;
        align-items: center;
        gap: 1.75rem;
    }

    .site-header__nav a {
        display: inline-block;
        font-size: 0.95rem;
        padding: 0;
        border-bottom: 0;
    }

    .site-header__nav a:hover {
        transform: none;
    }

    .site-header__nav .nav-cta {
        display: none; /* CTA fica à direita no desktop */
    }

    .site-header__toggle {
        display: none;
    }

    .site-header__close,
    .site-header__backdrop {
        display: none;
    }

    .site-header__cta {
        display: inline-flex;
        width: auto;
        align-items: center;
        justify-content: center;
    }
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 1.25rem 4rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(270deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.55) 35%,
            rgba(0, 0, 0, 0.05) 75%,
            rgba(0, 0, 0, 0) 100%
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.75rem);
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero h1 .highlight {
    color: var(--color-yellow);
    display: block;
    margin-top: 0.5rem;
}

.hero .subheadline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem 1.25rem;
    background-color: rgba(126, 211, 33, 0.15);
    border: 1px solid var(--color-green-neon);
    border-radius: 50px;
    color: var(--color-green-neon);
    font-size: 0.875rem;
    font-weight: 600;
}

@media (max-width: 767px) {
    section {
        padding: 3rem 0;
    }

    .site-header__inner {
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
    }

    .site-header__logo img {
        max-height: 42px;
    }

    .hero {
        min-height: 100svh;
        align-items: flex-end;
        background-position: center right;
        padding: 7rem 1.25rem 5.5rem;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(0, 0, 0, 0.15) 0%,
                rgba(0, 0, 0, 0.45) 38%,
                rgba(0, 0, 0, 0.82) 100%
            ),
            linear-gradient(270deg,
                rgba(0, 0, 0, 0.62) 0%,
                rgba(0, 0, 0, 0.35) 48%,
                rgba(0, 0, 0, 0.08) 100%
            );
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.7rem);
        margin-bottom: 1rem;
    }

    .hero .subheadline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero .badge {
        width: 100%;
        justify-content: center;
        font-size: 0.78rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .formulario-wrapper {
        padding: 1.25rem;
    }

    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
        width: 54px;
        height: 54px;
        font-size: 1.55rem;
    }
}

/* =========================================================
   SEÇÃO VANTAGENS
   ========================================================= */
.vantagens {
    background-color: var(--color-bg-dark);
    text-align: center;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--color-white);
}

.section-title .highlight {
    color: var(--color-green-neon);
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: linear-gradient(145deg, rgba(10, 31, 92, 0.6), rgba(13, 13, 13, 0.9));
    border: 1px solid rgba(126, 211, 33, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--color-green-neon);
    box-shadow: 0 10px 30px rgba(126, 211, 33, 0.2);
}

.card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.card h3 {
    font-size: 1.25rem;
    color: var(--color-yellow);
    margin-bottom: 0.75rem;
}

.card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================================
   SEÇÃO SIMULAÇÃO DE PARCELAS
   ========================================================= */
.simulacao {
    background-color: var(--color-blue-dark);
    text-align: center;
}

.simulacao .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.simulacao-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
    text-align: left;
}

.simulacao-grid > *,
.simulacao-conteudo {
    min-width: 0;
}

.simulacao-img {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(126, 211, 33, 0.25);
}

.simulacao-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

@media (min-width: 1024px) {
    .simulacao-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    }
}

.tabela-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
}

.tabela-simulacao {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background-color: rgba(13, 13, 13, 0.7);
    border-radius: 12px;
    overflow: hidden;
}

.tabela-simulacao thead {
    background-color: var(--color-bg-dark);
}

.tabela-simulacao th {
    padding: 1.25rem 1rem;
    color: var(--color-green-neon);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--color-green-neon);
}

.tabela-simulacao td {
    padding: 1.25rem 1rem;
    color: var(--color-yellow);
    font-weight: 700;
    font-size: 1.125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabela-simulacao tr:last-child td {
    border-bottom: none;
}

.tabela-simulacao tr:hover {
    background-color: rgba(126, 211, 33, 0.05);
}

.legenda {
    margin: 2rem auto;
    padding: 1rem 1.5rem;
    background-color: rgba(126, 211, 33, 0.1);
    border-left: 4px solid var(--color-green-neon);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 1.05rem;
    max-width: 700px;
    text-align: left;
}

/* Como funciona (3 passos) */
.como-funciona {
    width: 100%;
}

.passos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0 0.75rem;
}

.passos-grid--4 {
    margin-bottom: 1.25rem;
}

.passo-card {
    background: rgba(13, 13, 13, 0.55);
    border: 1px solid rgba(126, 211, 33, 0.25);
    border-radius: 14px;
    padding: 1.25rem 1.25rem 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    min-height: 170px;
}

.passo-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-yellow);
    font-size: 1.1rem;
}

.passo-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.7;
}

.passo-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(126, 211, 33, 0.18);
    border: 1px solid rgba(126, 211, 33, 0.45);
    color: var(--color-green-neon);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

@media (min-width: 900px) {
    .passos-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
    .passo-card {
        padding: 1.5rem 1.5rem 1.25rem;
    }
}

@media (min-width: 768px) and (max-width: 899px) {
    .passos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Bloco inferior: imagem + CTA */
.simulacao-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: center;
    margin-top: 1.25rem;
}

.simulacao-cta .legenda {
    max-width: none;
    margin: 0 0 1rem;
}

.simulacao-cta .btn {
    width: 100%;
}

@media (min-width: 1024px) {
    .simulacao-bottom {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        gap: 1.75rem;
    }
    .simulacao-cta .btn {
        width: auto;
    }
}

@media (max-width: 767px) {
    .simulacao {
        overflow: hidden;
    }

    .simulacao-grid {
        gap: 1.5rem;
    }

    .simulacao .section-subtitle {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .simulacao-img {
        border-radius: 12px;
    }

    .tabela-wrapper {
        margin: 1.5rem 0;
    }

    .tabela-simulacao {
        min-width: 480px;
    }

    .tabela-simulacao th,
    .tabela-simulacao td {
        padding: 0.9rem 0.75rem;
        font-size: 0.9rem;
    }

    .legenda {
        margin: 1.5rem 0;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
}

/* =========================================================
   SEÇÃO DEPOIMENTOS
   ========================================================= */
.depoimentos {
    background-color: var(--color-bg-dark);
    text-align: center;
}

.depoimentos .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.depoimento-card {
    text-align: left;
    background: linear-gradient(145deg, rgba(10, 31, 92, 0.35), rgba(13, 13, 13, 0.85));
    border: 1px solid rgba(126, 211, 33, 0.22);
    border-radius: 14px;
    padding: 1.5rem 1.4rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.depoimento-topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.depoimento-nome {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--color-white);
    margin: 0;
}

.depoimento-nota {
    margin: 0;
    letter-spacing: 2px;
    color: var(--color-yellow);
    font-size: 1.05rem;
    white-space: nowrap;
}

.depoimento-texto {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.98rem;
}

.depoimentos-cta {
    margin-top: 2rem;
    width: 100%;
    max-width: 420px;
}

@media (min-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
    .depoimentos-cta {
        width: auto;
    }
}

/* =========================================================
   SEÇÃO SOBRE
   ========================================================= */
.sobre {
    background-color: var(--color-bg-dark);
    text-align: center;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.sobre-img-destaque {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(126, 211, 33, 0.2);
}

.sobre-img-destaque img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.6s ease;
    scale: 1.2;
}

.sobre-img-destaque:hover img {
    transform: scale(1.05);
}

.sobre .sobre-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-align: left;
}

.sobre .sobre-text p {
    margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
    .sobre-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Galeria de instalações — Carrossel */
.galeria-titulo {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-green-neon);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    text-align: center;
}

.galeria-carrossel {
    position: relative;
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(126, 211, 33, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.galeria-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.galeria-item {
    flex: 0 0 100%;
    min-width: 0;
    overflow: hidden;
    padding: 0.5rem; /* respiro entre imagens sem alterar cálculo do slide */
}

@media (min-width: 768px) {
    .galeria-item {
        flex: 0 0 50%;
    }
}

.galeria-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 13;
    display: block;
    border-radius: 12px;
    transition: transform 0.6s ease;
}


/* Dots de navegação */
.galeria-dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.galeria-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(5, 10, 25, 0.55);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.galeria-arrow:hover,
.galeria-arrow:focus {
    background: rgba(10, 31, 92, 0.65);
    border-color: rgba(126, 211, 33, 0.6);
}

.galeria-arrow:active {
    transform: translateY(-50%) scale(0.98);
}

.galeria-arrow span {
    font-size: 2.2rem;
    line-height: 1;
    margin-top: -2px;
}

.galeria-arrow--prev {
    left: 0.75rem;
}

.galeria-arrow--next {
    right: 0.75rem;
}

@media (max-width: 767px) {
    .galeria-arrow {
        width: 40px;
        height: 40px;
    }
    .galeria-arrow--prev { left: 0.5rem; }
    .galeria-arrow--next { right: 0.5rem; }
}

.galeria-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.galeria-dot.is-active {
    background-color: var(--color-green-neon);
    border-color: var(--color-green-neon);
    transform: scale(1.25);
}

.galeria-dot:hover {
    background-color: rgba(126, 211, 33, 0.6);
}

@media (min-width: 768px) {
    .galeria-dot {
        width: 12px;
        height: 12px;
    }
}

.numeros-destaque {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.numero-bloco {
    background: linear-gradient(145deg, var(--color-blue-dark), rgba(10, 31, 92, 0.5));
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border-top: 4px solid var(--color-green-neon);
}

.numero-bloco .numero {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-yellow);
    margin-bottom: 0.5rem;
}

.numero-bloco .numero-label {
    font-size: 1rem;
    color: var(--color-white);
    font-weight: 600;
}
.wpcf7-list-item-label a {
    text-decoration: underline;
}
@media (min-width: 768px) {
    .numeros-destaque {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================================
   SEÇÃO ORÇAMENTO / FORMULÁRIO
   ========================================================= */
.orcamento {
    background: linear-gradient(135deg, #0a1f5c 0%, #0d0d0d 100%);
    text-align: center;
    position: relative;
}

.orcamento .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.formulario-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(13, 13, 13, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(126, 211, 33, 0.3);
    text-align: left;
}

/* Estilos para Contact Form 7 */
.formulario-wrapper .wpcf7-form p {
    margin-bottom: 1rem;
}

.formulario-wrapper label {
    display: block;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.formulario-wrapper input[type="text"],
.formulario-wrapper input[type="email"],
.formulario-wrapper input[type="tel"],
.formulario-wrapper input[type="number"],
.formulario-wrapper textarea,
.formulario-wrapper select {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(126, 211, 33, 0.3);
    border-radius: 8px;
    color: var(--color-white);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.formulario-wrapper select option,
.formulario-wrapper select optgroup {
    background-color: #0b1220;
    color: var(--color-white);
}

.formulario-wrapper select option:checked,
.formulario-wrapper select option:hover {
    background-color: rgba(126, 211, 33, 0.25);
    color: var(--color-white);
}

.formulario-wrapper input:focus,
.formulario-wrapper textarea:focus,
.formulario-wrapper select:focus {
    outline: none;
    border-color: var(--color-green-neon);
    background-color: rgba(255, 255, 255, 0.12);
}

.formulario-wrapper textarea {
    min-height: 120px;
    resize: vertical;
}

.formulario-wrapper input[type="submit"],
.formulario-wrapper .wpcf7-submit {
    background-color: var(--color-green-neon);
    color: #0a1f5c;
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(126, 211, 33, 0.4);
}

.formulario-wrapper input[type="submit"]:hover,
.formulario-wrapper .wpcf7-submit:hover {
    background-color: var(--color-green-bright);
    transform: translateY(-2px);
}

.wpcf7-not-valid-tip {
    color: #ff6b6b !important;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.wpcf7 .wpcf7-response-output {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    color: var(--color-white);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background-color: #050505;
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 1.5rem;
    border-top: 2px solid var(--color-green-neon);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-block h4 {
    color: var(--color-green-neon);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-block p,
.footer-block a {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-block a:hover {
    color: var(--color-green-neon);
}

.footer-block .contato-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-block .contato-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-top: 0.15rem;
    color: var(--color-green-neon);
}

.footer-block .contato-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .formulario-wrapper input[type="submit"], .formulario-wrapper .wpcf7-submit {
        font-size: 14px;
        text-transform: lowercase;
    }
}

@media (max-width: 767px) {
 
    .formulario-wrapper input[type="submit"], .formulario-wrapper .wpcf7-submit {
        font-size: 14px;
        text-transform: lowercase;
        padding: 15px;
    }
}
/* =========================================================
   UTILIDADES E ANIMAÇÕES
   ========================================================= */
.text-highlight {
    color: var(--color-yellow);
}

.text-green {
    color: var(--color-green-neon);
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* =========================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    z-index: 99;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-whatsapp 2.4s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    display: block;
    fill: var(--color-white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), 0 0 0 18px rgba(37, 211, 102, 0);
    }
}

.hero h1 { animation-delay: 0.1s; }
.hero .subheadline { animation-delay: 0.3s; }
.hero .btn { animation-delay: 0.5s; }
.hero .badge { animation-delay: 0.7s; }
