/*
Theme Name: Energia SC
Theme URI: https://energiasc.com.br
Author: Energia SC
Author URI: https://energiasc.com.br
Description: Tema profissional para Energia SC - Soluções para Energia Solar. Design moderno com paleta laranja, azul marinho e verde, otimizado para conversão de leads.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: Proprietary
Text Domain: energia-sc
Tags: solar, energy, business, responsive
*/

/* ============================================================
   RESET E BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', 'Segoe UI', Arial, sans-serif; color: #1a2332; background: #fff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   VARIÁVEIS CSS
   ============================================================ */
:root {
  --orange: #F47B20;
  --orange-dark: #d96a10;
  --orange-light: #fff3e8;
  --navy: #1a2332;
  --navy-light: #243044;
  --green: #27ae60;
  --green-light: #e8f8ef;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --white: #ffffff;
  --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.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.3s ease;
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { color: var(--gray-700); line-height: 1.7; }

/* ============================================================
   UTILITÁRIOS
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-white { color: var(--white) !important; }
.bg-navy { background: var(--navy); }
.bg-gray { background: var(--gray-50); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: var(--transition); cursor: pointer; border: 2px solid transparent; }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,123,32,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.section-label { display: inline-block; background: var(--orange-light); color: var(--orange); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.5rem); color: var(--navy); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-500); max-width: 600px; }
.section-header { margin-bottom: 56px; }
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }
.site-header.scrolled { background: var(--white); box-shadow: var(--shadow-md); }
.site-header.scrolled .nav-link { color: var(--navy); }
.site-header.scrolled .nav-link:hover { color: var(--orange); }
.site-header.scrolled .logo-white { display: none; }
.site-header.scrolled .logo-color { display: block; }
.site-header:not(.scrolled) .logo-white { display: block; }
.site-header:not(.scrolled) .logo-color { display: none; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo img { height: 52px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-weight: 500; font-size: 0.92rem; color: rgba(255,255,255,0.9); transition: var(--transition); }
.nav-link:hover { color: var(--orange); background: rgba(255,255,255,0.1); }
.nav-cta { background: var(--orange); color: var(--white) !important; padding: 10px 22px; border-radius: 50px; font-weight: 600; }
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.site-header.scrolled .hamburger span { background: var(--navy); }
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px 24px; box-shadow: var(--shadow-lg); gap: 4px; }
  .nav-menu.open { display: flex; }
  .nav-link { color: var(--navy); width: 100%; padding: 12px 16px; }
  .nav-cta { text-align: center; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero { min-height: 100vh; background: linear-gradient(135deg, #0d1b2a 0%, #1a2332 40%, #1e3a5f 100%); display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(244,123,32,0.15) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(39,174,96,0.1) 0%, transparent 70%); border-radius: 50%; }
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(244,123,32,0.15); border: 1px solid rgba(244,123,32,0.3); color: var(--orange); padding: 8px 20px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px; }
.hero-badge::before { content: '⚡'; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 24px; }
.hero-title span { color: var(--orange); }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 520px; }
.hero-stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 20px; text-align: center; backdrop-filter: blur(10px); }
.hero-stat-number { font-size: 2rem; font-weight: 900; color: var(--orange); display: block; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-stat-number { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--orange); padding: 32px 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats-bar-item { text-align: center; padding: 8px 16px; border-right: 1px solid rgba(255,255,255,0.2); }
.stats-bar-item:last-child { border-right: none; }
.stats-bar-number { font-size: 2rem; font-weight: 900; color: var(--white); display: block; }
.stats-bar-label { font-size: 0.78rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 768px) {
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-item:nth-child(2) { border-right: none; }
  .stats-bar-item { border-bottom: 1px solid rgba(255,255,255,0.2); padding: 16px; }
  .stats-bar-item:nth-child(3), .stats-bar-item:nth-child(4) { border-bottom: none; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px 32px; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gray-200); transition: var(--transition); }
.service-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card:hover::before { background: var(--orange); }
.service-card.featured { border-color: var(--orange); }
.service-card.featured::before { background: var(--orange); }
.service-badge { position: absolute; top: 20px; right: 20px; background: var(--orange); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; }
.service-icon { width: 64px; height: 64px; background: var(--orange-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-icon svg { width: 32px; height: 32px; stroke: var(--orange); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-title { font-size: 1.3rem; margin-bottom: 12px; }
.service-desc { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }
.service-features { margin-bottom: 28px; }
.service-feature { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 0.88rem; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.service-feature:last-child { border-bottom: none; }
.service-feature::before { content: ''; width: 18px; height: 18px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2327ae60' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ============================================================
   HOW WE WORK
   ============================================================ */
.how-we-work { background: var(--gray-50); }
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-timeline::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, var(--orange), var(--orange-dark)); z-index: 0; }
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-number-wrap { width: 80px; height: 80px; background: var(--white); border: 3px solid var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 0 0 8px var(--gray-50); }
.step-number { font-size: 1.4rem; font-weight: 900; color: var(--orange); }
.step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.step-desc { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.step-features { text-align: left; }
.step-feature { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gray-700); padding: 3px 0; }
.step-feature::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
@media (max-width: 900px) {
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-timeline::before { display: none; }
}
@media (max-width: 600px) { .process-timeline { grid-template-columns: 1fr; } }

/* ============================================================
   PROJECTS SECTION
   ============================================================ */
.projects { background: var(--white); }
.projects-filter { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 8px 20px; border-radius: 50px; font-size: 0.88rem; font-weight: 600; border: 2px solid var(--gray-200); color: var(--gray-500); background: var(--white); cursor: pointer; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); background: var(--white); border: 1px solid var(--gray-200); }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-image { height: 220px; background: linear-gradient(135deg, #1a2332, #243044); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.project-image-placeholder { color: rgba(255,255,255,0.3); font-size: 3rem; }
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-tag { position: absolute; top: 12px; left: 12px; background: var(--orange); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; }
.project-info { padding: 20px; }
.project-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.project-meta { display: flex; gap: 12px; font-size: 0.82rem; color: var(--gray-500); }
.project-meta span { display: flex; align-items: center; gap: 4px; }
.projects-empty { text-align: center; padding: 60px 20px; color: var(--gray-500); grid-column: 1/-1; }
.projects-cta { text-align: center; margin-top: 48px; }
@media (max-width: 900px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .projects-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news { background: var(--gray-50); }
.news-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; }
.news-featured { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); transition: var(--transition); }
.news-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.news-featured-image { height: 280px; background: linear-gradient(135deg, #1a2332, #1e3a5f); display: flex; align-items: center; justify-content: center; position: relative; }
.news-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.news-featured-body { padding: 28px; }
.news-category { display: inline-block; background: var(--orange-light); color: var(--orange); font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.news-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); line-height: 1.4; }
.news-title:hover { color: var(--orange); }
.news-excerpt { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.news-meta { font-size: 0.8rem; color: var(--gray-500); display: flex; gap: 12px; }
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-item { background: var(--white); border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; gap: 16px; align-items: flex-start; }
.news-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.news-item-body { flex: 1; }
.news-item-title { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.4; }
.news-item-title:hover { color: var(--orange); }
.news-item-meta { font-size: 0.78rem; color: var(--gray-500); }
.news-cta { text-align: center; margin-top: 48px; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--navy); }
.testimonials .section-label { background: rgba(244,123,32,0.2); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.6); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); }
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars span { color: #ffd700; font-size: 1.1rem; }
.testimonial-text { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); font-size: 1.1rem; flex-shrink: 0; overflow: hidden; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form-wrap { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.contact-form-subtitle { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group label .required { color: var(--orange); }
.form-control { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 0.92rem; color: var(--navy); transition: var(--transition); background: var(--white); }
.form-control:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,123,32,0.1); }
.form-control::placeholder { color: var(--gray-300); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-checkbox input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--orange); }
.form-checkbox label { font-size: 0.85rem; color: var(--gray-500); }
.btn-submit { width: 100%; padding: 16px; background: var(--orange); color: var(--white); border: none; border-radius: 50px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: var(--transition); }
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,123,32,0.4); }
.form-success { display: none; background: var(--green-light); border: 2px solid var(--green); border-radius: var(--radius-md); padding: 20px; text-align: center; color: var(--green); font-weight: 600; margin-top: 16px; }
.contact-info-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.contact-info-subtitle { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 32px; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-channel { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--gray-50); border-radius: var(--radius-md); transition: var(--transition); border: 2px solid transparent; text-decoration: none; }
.contact-channel:hover { border-color: var(--green); background: var(--green-light); }
.contact-channel-icon { width: 44px; height: 44px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-channel-icon svg { width: 22px; height: 22px; fill: var(--white); }
.contact-channel-label { font-size: 0.78rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }
.contact-channel-value { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--gray-700); }
.contact-detail-icon { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.regions-title { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.regions-list { display: flex; flex-wrap: wrap; gap: 8px; }
.region-tag { background: var(--orange-light); color: var(--orange); font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); padding: 80px 0; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--orange); font-weight: 700; }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0d1b2a; color: rgba(255,255,255,0.7); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.social-link:hover { background: var(--orange); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.92rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-contact-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; }
.whatsapp-btn { width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: var(--transition); animation: pulse-wa 2s infinite; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.whatsapp-btn svg { width: 32px; height: 32px; fill: var(--white); }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); } }

/* ============================================================
   PÁGINAS INTERNAS
   ============================================================ */
.page-hero { background: linear-gradient(135deg, #0d1b2a 0%, #1a2332 100%); padding: 140px 0 80px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* Sobre Nós */
.about-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-mission-image { border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, #1a2332, #1e3a5f); height: 400px; display: flex; align-items: center; justify-content: center; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-md); padding: 28px; text-align: center; transition: var(--transition); }
.value-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.value-desc { font-size: 0.88rem; color: var(--gray-500); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--orange-light); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--orange); }
.partners-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; }
.partner-logo { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-md); padding: 16px 28px; font-weight: 700; color: var(--gray-500); font-size: 0.9rem; transition: var(--transition); }
.partner-logo:hover { border-color: var(--orange); color: var(--orange); }
@media (max-width: 900px) { .about-mission { grid-template-columns: 1fr; } .about-values-grid { grid-template-columns: 1fr 1fr; } .team-grid { grid-template-columns: 1fr 1fr; } }

/* Serviços */
.service-detail { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px; margin-bottom: 32px; display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; transition: var(--transition); }
.service-detail:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.service-detail-icon { width: 80px; height: 80px; background: var(--orange-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.service-detail-icon svg { width: 40px; height: 40px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.service-detail-title { font-size: 1.4rem; margin-bottom: 12px; }
.service-detail-desc { color: var(--gray-500); margin-bottom: 20px; line-height: 1.7; }
.service-detail-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.service-detail-feature { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--gray-700); }
.service-detail-feature::before { content: '✓'; color: var(--green); font-weight: 700; }
@media (max-width: 768px) { .service-detail { grid-template-columns: 1fr; } .service-detail-features { grid-template-columns: 1fr; } }

/* Projetos */
.projects-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .projects-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .projects-page-grid { grid-template-columns: 1fr; } }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--gray-200); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-image { height: 200px; background: linear-gradient(135deg, #1a2332, #1e3a5f); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); line-height: 1.4; }
.blog-card-title:hover { color: var(--orange); }
.blog-card-excerpt { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.blog-card-meta { font-size: 0.78rem; color: var(--gray-500); display: flex; gap: 12px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* Single Post */
.single-post { max-width: 800px; margin: 0 auto; }
.single-post-header { margin-bottom: 40px; }
.single-post-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; height: 400px; background: linear-gradient(135deg, #1a2332, #1e3a5f); display: flex; align-items: center; justify-content: center; }
.single-post-image img { width: 100%; height: 100%; object-fit: cover; }
.single-post-content { font-size: 1.05rem; line-height: 1.8; color: var(--gray-700); }
.single-post-content h2 { font-size: 1.6rem; margin: 36px 0 16px; color: var(--navy); }
.single-post-content h3 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--navy); }
.single-post-content p { margin-bottom: 20px; }
.single-post-content ul, .single-post-content ol { padding-left: 24px; margin-bottom: 20px; }
.single-post-content li { margin-bottom: 8px; }
.single-post-content blockquote { border-left: 4px solid var(--orange); padding: 16px 24px; background: var(--orange-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; }

/* Admin */
.wrap h1 { color: var(--navy) !important; }
.energiasc-admin-header { background: linear-gradient(135deg, #1a2332, #243044); color: white; padding: 24px 28px; border-radius: 8px; margin-bottom: 24px; display: flex; align-items: center; gap: 16px; }
.energiasc-admin-header h2 { color: white; margin: 0; font-size: 1.4rem; }
.energiasc-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.energiasc-stat-card { background: white; border: 1px solid #e2e8f0; border-radius: 8px; padding: 20px; text-align: center; }
.energiasc-stat-number { font-size: 2rem; font-weight: 700; color: #F47B20; }
.energiasc-stat-label { font-size: 0.8rem; color: #6c757d; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.energiasc-leads-table { background: white; border-radius: 8px; overflow: hidden; border: 1px solid #e2e8f0; }
.energiasc-leads-table table { width: 100%; border-collapse: collapse; }
.energiasc-leads-table th { background: #f8f9fa; padding: 12px 16px; text-align: left; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: #495057; border-bottom: 2px solid #e2e8f0; }
.energiasc-leads-table td { padding: 12px 16px; border-bottom: 1px solid #f1f3f5; font-size: 0.9rem; }
.energiasc-leads-table tr:hover td { background: #f8f9fa; }
.status-novo { background: #e8f8ef; color: #27ae60; padding: 3px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.status-atendimento { background: #fff3e8; color: #F47B20; padding: 3px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.status-fechado { background: #e9ecef; color: #6c757d; padding: 3px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.fade-in-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-up-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* ============================================================
   RESPONSIVIDADE GERAL
   ============================================================ */
@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
  .container { padding: 0 16px; }
}
