/* =============================================
   POWER SOLAR DOURADOS - STYLESHEET
   Identidade Visual: Verde Escuro, Amarelo/Dourado, Branco
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
    --green-dark: #1a5c1a;
    --green-mid: #2d8a2d;
    --green-light: #3aaa3a;
    --green-bg: #0f3d0f;
    --yellow: #f5a623;
    --yellow-light: #ffc947;
    --yellow-dark: #e09000;
    --blue: #2b6cb0;
    --blue-light: #4299e1;
    --white: #ffffff;
    --gray-100: #f7f7f7;
    --gray-200: #e8e8e8;
    --gray-500: #718096;
    --gray-700: #4a5568;
    --gray-900: #1a202c;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font: 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== UTILITY CLASSES ===== */
.text-yellow { color: var(--yellow); }
.text-green { color: var(--green-mid); }
.white { color: var(--white) !important; }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.35);
}
.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: var(--transition);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--green-mid);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid var(--green-mid);
    transition: var(--transition);
}
.btn-outline:hover {
    background: var(--green-mid);
    color: var(--white);
}
.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 10px;
    transition: var(--transition);
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}
.btn-whatsapp-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 8px;
    transition: var(--transition);
    margin-top: 10px;
}
.btn-whatsapp-sm:hover { background: #128c7e; transform: translateY(-2px); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 92, 26, 0.1);
    color: var(--green-dark);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.section-badge.light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}
.navbar { width: 100%; }
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 24px;
    gap: 20px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--green-dark);
    letter-spacing: 0.5px;
}
.logo-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--yellow-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--green-dark);
    background: rgba(26,92,26,0.08);
    font-weight: 600;
}
.btn-fale-conosco {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--gray-900);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(245,166,35,0.3);
}
.btn-fale-conosco:hover {
    background: var(--yellow-dark);
    transform: translateY(-1px);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 8px;
    border-radius: 8px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--green-bg) 0%, var(--green-dark) 40%, #2d6b1e 70%, #4a8c2a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-title .highlight {
    color: var(--yellow);
    position: relative;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 24px;
    margin-bottom: 36px;
    border: 1px solid rgba(255,255,255,0.15);
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    text-align: center;
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    margin: 0 16px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-card-float {
    position: relative;
    width: 100%;
    max-width: 460px;
}
.hero-solar-visual {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}
.sun-icon-big { font-size: 3rem; animation: spin-sun 10s linear infinite; }
@keyframes spin-sun {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.panel-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--blue);
    padding: 8px;
    border-radius: 8px;
}
.panel-row { display: flex; gap: 4px; }
.panel-cell {
    width: 42px;
    height: 32px;
    background: var(--blue-light);
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}
.panel-cell::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: panel-shine 3s ease-in-out infinite;
}
.panel-cell:nth-child(1)::after { animation-delay: 0s; }
.panel-cell:nth-child(2)::after { animation-delay: 0.5s; }
.panel-cell:nth-child(3)::after { animation-delay: 1s; }
.panel-cell:nth-child(4)::after { animation-delay: 1.5s; }
@keyframes panel-shine {
    0% { left: -100%; }
    50% { left: 200%; }
    100% { left: 200%; }
}
.energy-flow-line {
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, var(--yellow), transparent);
    animation: flow 1.5s ease-in-out infinite;
}
@keyframes flow {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}
.house-icon { font-size: 2.5rem; }
.saving-badge {
    background: var(--yellow);
    color: var(--gray-900);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.saving-badge span { font-size: 0.7rem; font-weight: 600; }
.saving-badge strong { font-size: 1rem; font-weight: 800; }

/* Float Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    animation: float-anim 3s ease-in-out infinite;
}
.float-card i { font-size: 1.4rem; color: var(--green-mid); }
.float-card div { display: flex; flex-direction: column; }
.float-card strong { font-size: 0.85rem; color: var(--gray-900); font-weight: 700; }
.float-card span { font-size: 0.75rem; color: var(--gray-500); }
.card-1 { top: 10px; left: -30px; animation-delay: 0s; }
.card-2 { top: 10px; right: -20px; animation-delay: 1s; }
.card-3 { bottom: 10px; left: -10px; animation-delay: 2s; }
@keyframes float-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
}
.hero-wave svg { display: block; width: 100%; }

/* ============================================
   SOBRE NÓS
   ============================================ */
.sobre {
    padding: 100px 0;
    background: var(--white);
}
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.sobre-text {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}
.sobre-items { margin: 24px 0; }
.sobre-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-700);
}
.sobre-item i { color: var(--green-mid); font-size: 1.1rem; flex-shrink: 0; }
.sobre-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }

.sobre-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.sobre-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}
.sobre-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sobre-stat-card i { font-size: 2rem; margin-bottom: 10px; }
.sobre-stat-card h3 { font-size: 2rem; font-weight: 900; margin-bottom: 4px; }
.sobre-stat-card p { font-size: 0.8rem; font-weight: 600; opacity: 0.9; }
.card-green { background: var(--green-dark); color: var(--white); }
.card-yellow { background: var(--yellow); color: var(--gray-900); }
.card-blue { background: var(--blue); color: var(--white); }
.card-dark { background: var(--gray-900); color: var(--white); }

.sobre-mission {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--gray-100);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--green-mid);
}
.sobre-mission i { color: var(--green-mid); font-size: 1.5rem; margin-top: 2px; flex-shrink: 0; }
.sobre-mission h4 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.sobre-mission p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }

/* ============================================
   VANTAGENS
   ============================================ */
.vantagens {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.vantagens-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-bg) 0%, var(--green-dark) 50%, #2d6b1e 100%);
    z-index: 0;
}
.vantagens .container { position: relative; z-index: 1; }
.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.vantagem-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    color: var(--white);
    transition: var(--transition);
}
.vantagem-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.vantagem-icon {
    width: 60px;
    height: 60px;
    background: var(--green-mid);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.vantagem-icon i { font-size: 1.5rem; color: var(--white); }
.vantagem-icon.yellow { background: var(--yellow); }
.vantagem-icon.yellow i { color: var(--gray-900); }
.vantagem-icon.blue { background: var(--blue); }
.vantagem-icon.orange { background: #e67e22; }
.vantagem-icon.purple { background: #7b2d8b; }
.vantagem-icon.teal { background: #0891b2; }
.vantagem-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.vantagem-card p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 16px; }
.vantagem-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--yellow);
}
.vantagem-tag.yellow { color: var(--gray-900); background: var(--yellow); }
.vantagem-tag.blue { color: var(--white); background: var(--blue-light); }
.vantagem-tag.orange { color: var(--white); background: #e67e22; }
.vantagem-tag.purple { color: var(--white); background: #7b2d8b; }
.vantagem-tag.teal { color: var(--white); background: #0891b2; }

/* ============================================
   COMO FUNCIONA
   ============================================ */
.como-funciona {
    padding: 100px 0;
    background: var(--gray-100);
}
.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 8px;
}
.step-item.right {
    flex-direction: row-reverse;
}
.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--green-mid);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}
.step-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    flex: 1;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--green-mid);
    transition: var(--transition);
}
.step-content.right { border-left: none; border-right: 4px solid var(--yellow); }
.step-content:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.step-content.right .step-icon { background: linear-gradient(135deg, var(--yellow-dark), var(--yellow)); }
.step-icon i { color: var(--white); font-size: 1.2rem; }
.step-content.right .step-icon i { color: var(--gray-900); }
.step-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.7; }
.step-connector {
    width: 3px;
    height: 32px;
    background: linear-gradient(to bottom, var(--green-mid), var(--yellow));
    margin: 0 auto 8px;
    border-radius: 2px;
}
.como-funciona-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: var(--radius-lg);
    color: var(--white);
}
.como-funciona-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* ============================================
   PROJETOS
   ============================================ */
.projetos {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.projetos-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f2c0f 0%, var(--green-dark) 60%, #1f4f10 100%);
    z-index: 0;
}
.projetos .container { position: relative; z-index: 1; }
.projetos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.projeto-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.projeto-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.projeto-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 16px;
}
.projeto-image.residential {
    background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 40%, #63b3ed 100%);
}
.projeto-image.commercial {
    background: linear-gradient(135deg, #276749 0%, #38a169 40%, #68d391 100%);
}
.projeto-image.rural {
    background: linear-gradient(135deg, #744210 0%, #c05621 40%, #ed8936 100%);
}
.projeto-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -30deg,
        rgba(0,0,0,0.1) 0px,
        rgba(0,0,0,0.1) 2px,
        transparent 2px,
        transparent 20px
    ), repeating-linear-gradient(
        60deg,
        rgba(0,0,0,0.08) 0px,
        rgba(0,0,0,0.08) 2px,
        transparent 2px,
        transparent 20px
    );
}
.projeto-overlay { position: relative; z-index: 1; }
.projeto-badge-type {
    background: rgba(0,0,0,0.5);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}
.projeto-info { padding: 20px; }
.projeto-info h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.projeto-local { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.projeto-local i { color: var(--yellow); margin-right: 4px; }
.projeto-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.projeto-specs span {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}
.projeto-specs i { color: var(--yellow); margin-right: 4px; }

/* ============================================
   BLOCO GOOGLE REVIEWS
   ============================================ */
.google-reviews-section {
    margin-top: 20px;
}

/* Cabeçalho Google — 2 cards lado a lado */
.google-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

/* Card esquerdo — nota */
.google-card-nota {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.google-card-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.google-card-texto {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.google-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.google-stars-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.google-score {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1;
}
.google-stars {
    display: flex;
    gap: 3px;
}
.google-stars i {
    color: #FBBC05;
    font-size: 1.2rem;
}
.google-count {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Card direito — botão de avaliação */
.google-card-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--yellow);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    text-decoration: none;
    color: var(--gray-900);
    box-shadow: 0 4px 20px rgba(245,166,35,0.4);
    transition: var(--transition);
    cursor: pointer;
}
.google-card-btn:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(245,166,35,0.55);
}
.google-card-btn-icon {
    font-size: 2.4rem;
    line-height: 1;
    flex-shrink: 0;
}
.google-card-btn-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.google-card-btn-texto strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gray-900);
}
.google-card-btn-texto span {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(0,0,0,0.6);
}
.google-card-arrow {
    font-size: 1.1rem;
    color: var(--gray-900);
    opacity: 0.7;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.google-card-btn:hover .google-card-arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* Responsivo */
@media (max-width: 600px) {
    .google-header {
        grid-template-columns: 1fr;
    }
}

/* Grid de depoimentos — 2x2 com avaliações reais */
.depo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}
.depo-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    transition: var(--transition);
}
.depo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.depo-card-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.depo-card-top > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.depo-card-top strong {
    font-size: 0.95rem;
    color: var(--gray-900);
    font-weight: 700;
}
.depo-card-top span {
    font-size: 0.75rem;
    color: var(--gray-500);
}
.depo-stars-small { font-size: 0.85rem; margin-top: 2px; }
.depo-avatar {
    width: 42px;
    height: 42px;
    background: var(--green-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}
.google-g {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    flex-shrink: 0;
    margin-left: auto;
    display: block;
}
/* Bloqueia qualquer SVG solto de crescer */
.google-reviews-section svg,
.google-header svg,
.depo-card svg,
.google-cta svg {
    max-width: 44px;
    max-height: 44px;
    display: inline-block;
}
.depo-card p {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
}

/* CTA final */
.google-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-ver-avaliacoes {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--gray-900);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-ver-avaliacoes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.btn-ver-avaliacoes i { color: var(--green-mid); }
.btn-deixar-avaliacao {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--gray-900);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}
.btn-deixar-avaliacao:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245,166,35,0.55);
}
.btn-deixar-avaliacao i { color: var(--gray-900); }

/* Responsivo Google Reviews */
@media (max-width: 768px) {
    .google-header { grid-template-columns: 1fr; }
    .depo-grid { grid-template-columns: 1fr; }
    .google-cta { flex-direction: column; align-items: stretch; }
    .btn-ver-avaliacoes, .btn-deixar-avaliacao { justify-content: center; }
}
@media (max-width: 600px) {
    .google-header { grid-template-columns: 1fr; }
}

/* ============================================
   ORÇAMENTO FORM
   ============================================ */
.orcamento {
    padding: 100px 0;
    background: var(--white);
}
.orcamento-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}
.orcamento-info .section-title { font-size: 2rem; }
.orcamento-info > p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
}
.orcamento-promises { margin-bottom: 32px; }
.promise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}
.promise-item i { color: var(--green-mid); font-size: 1.1rem; flex-shrink: 0; }
.whatsapp-direct h4, .whatsapp-direct > p { margin-bottom: 12px; }
.whatsapp-direct > p { font-size: 0.95rem; color: var(--gray-700); }

/* Form */
.orcamento-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
}
.orcamento-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.orcamento-form h3 { font-size: 1.4rem; font-weight: 800; color: var(--gray-900); }
.form-subtitle { font-size: 0.88rem; color: var(--gray-500); margin-top: -12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 6px;
}
.form-group label i { color: var(--green-mid); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--gray-900);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 4px rgba(45,138,45,0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e53e3e;
}
.error-msg {
    font-size: 0.78rem;
    color: #e53e3e;
    font-weight: 500;
    min-height: 16px;
}
.form-group textarea { resize: vertical; }

/* Radio Cards */
.radio-group {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.payment-group { grid-template-columns: repeat(3, 1fr); }
.radio-card { cursor: pointer; }
.radio-card input { display: none; }
.radio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    background: var(--white);
}
.radio-content:hover { border-color: var(--green-mid); background: rgba(45,138,45,0.05); }
.radio-card input:checked + .radio-content {
    border-color: var(--green-mid);
    background: rgba(45,138,45,0.1);
    box-shadow: 0 0 0 3px rgba(45,138,45,0.15);
}
.radio-icon { font-size: 1.4rem; }
.radio-content span { font-size: 0.78rem; font-weight: 600; color: var(--gray-700); }
.radio-content small { font-size: 0.68rem; color: var(--gray-500); }

/* Form Submit */
.form-submit-area { display: flex; flex-direction: column; gap: 12px; }
.whatsapp-choice { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.whatsapp-choice label { font-size: 0.88rem; }
.whatsapp-options { display: flex; gap: 12px; }
.ws-option { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 0.88rem; color: var(--gray-700); }
.ws-option input { accent-color: var(--green-mid); }

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    width: 100%;
}
.btn-submit:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}
.btn-submit:active { transform: scale(0.98); }
.form-disclaimer {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
}
.form-disclaimer i { color: var(--green-mid); margin-right: 4px; }

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.3rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.form-success p { color: var(--gray-700); margin-bottom: 24px; }
.form-success a { color: var(--green-mid); font-weight: 600; }

/* ============================================
   CONTATO
   ============================================ */
.contato {
    padding: 100px 0;
    background: var(--gray-100);
}
.contato-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.contato-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}
.contato-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contato-card:nth-child(1) { border-top-color: #25d366; }
.contato-card:nth-child(2) { border-top-color: #25d366; }
.contato-card:nth-child(3) { border-top-color: var(--green-mid); }
.contato-card:nth-child(4) { border-top-color: var(--yellow); }
.contato-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
}
.whatsapp-icon { background: #e8f8f0; color: #25d366; }
.location-icon { background: rgba(45,138,45,0.1); color: var(--green-mid); }
.clock-icon { background: rgba(245,166,35,0.1); color: var(--yellow-dark); }
.contato-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.contato-card p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }
.badge-atendimento {
    display: inline-block;
    background: rgba(45,138,45,0.1);
    color: var(--green-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 10px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
}
.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}
.footer-brand h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-contact i { color: var(--yellow); }
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--gray-900); transform: translateY(-2px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 10px;
}
.wf-toggle {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: var(--transition);
    position: relative;
}
.wf-toggle:hover { background: #128c7e; transform: scale(1.1); }
.wf-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}
.wf-menu {
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    display: none;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--gray-200);
    animation: slide-up 0.2s ease;
}
.wf-menu.open { display: flex; }
@keyframes slide-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.wf-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gray-900);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
}
.wf-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f0fdf4;
    border-radius: 10px;
    transition: var(--transition);
    color: var(--gray-900);
}
.wf-option:hover { background: #d1fae5; transform: translateX(-4px); }
.wf-option i { font-size: 1.4rem; color: #25d366; }
.wf-option div { display: flex; flex-direction: column; }
.wf-option strong { font-size: 0.85rem; font-weight: 700; }
.wf-option span { font-size: 0.75rem; color: var(--gray-500); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 34px;
    z-index: 998;
    width: 44px;
    height: 44px;
    background: var(--green-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    font-size: 0.9rem;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--green-mid); transform: translateY(-3px); }

/* ============================================
   PROJETOS — FOTOS REAIS
   ============================================ */
.projetos-grid {
    grid-template-columns: repeat(3, 1fr);
}
.projeto-image-real {
    height: 220px;
    position: relative;
    overflow: hidden;
}
.projeto-image-real img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.projeto-card:hover .projeto-image-real img {
    transform: scale(1.07);
}
.projeto-image-real .projeto-badge-type {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.55);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    z-index: 2;
}

/* ============================================
   BOTÃO PULSANTE DE ORÇAMENTO — HERO
   ============================================ */
.hero-orcamento-pulse {
    margin-top: 32px;
}

.btn-pulse-orcamento {
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    border-radius: 60px;
}

.pulse-content {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #25d366;
    color: #fff;
    font-family: var(--font);
    font-weight: 800;
    padding: 18px 32px;
    border-radius: 60px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
    transition: background 0.3s ease;
    will-change: transform, box-shadow;
}

.btn-pulse-orcamento:hover .pulse-content {
    background: #128c7e;
}

.pulse-content > span {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.pulse-content strong {
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

.pulse-content small {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.92;
}

#arrow-btn {
    font-size: 1rem;
    margin-left: 4px;
    transition: transform 0.15s ease;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
    .hero-image { display: none; }
    .hero-title { font-size: 2.8rem; }
    .vantagens-grid { grid-template-columns: repeat(2, 1fr); }
    .projetos-grid { grid-template-columns: 1fr 1fr; }
    .depo-grid { grid-template-columns: 1fr 1fr; }
    .btn-pulse-orcamento .pulse-content { padding: 14px 22px; }
    .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
    .contato-grid { grid-template-columns: repeat(2, 1fr); }
    .orcamento-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    
    /* Navbar mobile */
    .nav-menu {
        position: fixed;
        top: 0; left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 24px 24px;
        gap: 8px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        z-index: 999;
    }
    .nav-menu.open { left: 0; }
    .nav-link { width: 100%; padding: 12px 16px; font-size: 1rem; border-radius: 10px; }
    .hamburger { display: flex; z-index: 1001; }
    .btn-fale-conosco { display: none; }
    
    /* Hero */
    .hero-title { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
    .stat-divider { width: 60px; height: 1px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary { justify-content: center; }
    
    /* Sections */
    .sobre { padding: 60px 0; }
    .vantagens { padding: 60px 0; }
    .como-funciona { padding: 60px 0; }
    .projetos { padding: 60px 0; }
    .orcamento { padding: 60px 0; }
    .contato { padding: 60px 0; }
    
    .vantagens-grid { grid-template-columns: 1fr; }
    .projetos-grid { grid-template-columns: 1fr 1fr; }
    .depo-grid { grid-template-columns: 1fr; }
    .contato-grid { grid-template-columns: 1fr; }
    .hero-orcamento-pulse { width: 100%; }
    .btn-pulse-orcamento { width: 100%; }
    .pulse-content { width: 100%; justify-content: center; padding: 14px 20px; }
    
    /* Steps */
    .step-item { flex-direction: column !important; }
    .step-number { width: auto; font-size: 2rem; }
    
    /* Form */
    .form-row { grid-template-columns: 1fr; }
    .radio-group { grid-template-columns: repeat(3, 1fr); }
    .payment-group { grid-template-columns: 1fr; }
    .orcamento-form-wrapper { padding: 24px 20px; }
    .whatsapp-choice { flex-direction: column; align-items: flex-start; }
    
    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { flex-direction: column; }
    
    /* Float */
    .whatsapp-float { bottom: 20px; right: 20px; }
    .back-to-top { bottom: 90px; right: 24px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .section-title { font-size: 1.7rem; }
    .radio-group { grid-template-columns: 1fr 1fr; }
    .sobre-stats-grid { grid-template-columns: 1fr 1fr; }
}
