
:root{
  --green:#06311f;
  --green2:#0b4a2e;
  --green3:#0f5d3a;
  --orange:#f58200;
  --orange2:#ffad2a;
  --white:#ffffff;
  --bg:#f6f8f4;
  --text:#173126;
  --muted:#5d6a63;
  --shadow:0 22px 55px rgba(6,49,31,.16);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:Arial, Helvetica, sans-serif;background:#021f15;color:var(--text);line-height:1.55}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1160px,92%);margin:auto}

.site-header{
  position:sticky;top:0;z-index:1000;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  box-shadow:0 8px 28px rgba(0,0,0,.08);
}
.header-inner{
  height:86px;display:flex;align-items:center;justify-content:space-between;gap:22px;
}
.logo{height:58px;width:auto;object-fit:contain}
.nav{display:flex;gap:25px;font-size:14px;font-weight:800;color:var(--green)}
.nav a:hover{color:var(--orange)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:999px;padding:14px 22px;font-weight:900;
  box-shadow:0 12px 26px rgba(6,49,31,.18);transition:.25s;
}
.btn:hover{transform:translateY(-2px)}
.btn-header,.btn-green{background:var(--green);color:#fff}
.btn-header:hover,.btn-green:hover{background:var(--orange)}
.btn-orange{background:var(--orange);color:#fff}
.btn-orange:hover{background:var(--green)}

.hero{
  position:relative;min-height:720px;display:flex;align-items:center;
  background:url("assets/hero-casa.jpg") center/cover no-repeat;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.88) 42%,rgba(255,255,255,.18) 72%);
}
.hero-content{position:relative;z-index:2}
.hero-card{max-width:690px;padding:72px 0}
.eyebrow{
  color:var(--orange);font-weight:900;text-transform:uppercase;letter-spacing:2px;font-size:14px;margin-bottom:18px;
}
h1,h2{color:var(--green);line-height:1.06}
h1{font-size:clamp(42px,6vw,76px);letter-spacing:-2px;margin-bottom:25px}
h2{font-size:clamp(32px,4vw,52px);margin-bottom:18px}
h2 span,h1 span{color:var(--orange)}
.hero-text{font-size:20px;color:#273e34;max-width:610px;margin-bottom:32px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}

.highlights{margin-top:-62px;position:relative;z-index:5;padding-bottom:42px}
.highlights-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.highlight-item{
  background:#fff;border-radius:24px;padding:28px;text-align:center;box-shadow:var(--shadow);border:1px solid #edf1ec;
}
.icon{width:62px;height:62px;margin:0 auto 13px;border-radius:50%;display:grid;place-items:center;border:2px solid var(--orange);font-size:29px}
.highlight-item h3{display:block;color:var(--green);font-size:16px;text-transform:uppercase}
.highlight-item p{color:var(--muted);font-size:15px}

.section{padding:86px 0}
.card-white{background:#fff;border-radius:28px;box-shadow:var(--shadow);padding:38px;border:1px solid #edf1ec}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.about-text p{font-size:17px;color:var(--muted);margin-bottom:14px}
.checklist{display:grid;gap:14px;margin-top:24px;color:var(--green);font-weight:700}
.about-image{
  min-height:465px;border-radius:28px;background:url("assets/energia-solar.jpg") center/cover no-repeat;box-shadow:var(--shadow);
}

.center{text-align:center}
.section-subtitle{font-size:18px;color:var(--muted);margin-bottom:36px}
.services-section{background:#fff}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:38px}
.service-card{
  background:var(--green);border-radius:24px;overflow:hidden;border:1px solid rgba(245,130,0,.55);box-shadow:0 16px 38px rgba(6,49,31,.16);transition:.25s;color:#fff;
}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.service-card img{width:100%;height:230px;object-fit:cover;border-bottom:3px solid var(--orange)}
.service-body{padding:24px}
.service-body span{display:inline-flex;background:var(--orange);color:#fff;font-weight:900;padding:8px 12px;border-radius:999px;margin-bottom:14px;font-size:13px}
.service-body h3{font-size:22px;color:#fff;line-height:1.1;margin-bottom:10px;text-transform:uppercase}
.service-body p{color:rgba(255,255,255,.86)}

.benefits-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;margin-top:35px}
.benefit-card{background:#fff;border-radius:22px;padding:24px;text-align:center;box-shadow:0 10px 32px rgba(0,0,0,.06);border-bottom:4px solid var(--orange)}
.benefit-card div{font-size:32px;margin-bottom:8px}
.benefit-card h3{color:var(--green);font-size:18px;margin-bottom:8px}
.benefit-card p{color:var(--muted);font-size:15px}

.process-section{background:#fff}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:34px}
.process-card{background:#fff;border-radius:22px;padding:26px;border-left:5px solid var(--orange);box-shadow:0 10px 30px rgba(0,0,0,.08)}
.process-card strong{font-size:30px;color:var(--orange)}
.process-card h3{margin:10px 0;color:var(--green)}
.process-card p{color:var(--muted)}

.contact-section{background:linear-gradient(135deg,var(--green),#021f15);color:#fff;position:relative;overflow:hidden}
.contact-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:30px;align-items:center}
.contact-section h2{color:#fff}
.contact-text{color:rgba(255,255,255,.84);font-size:18px;margin-bottom:26px;max-width:640px}
.contact-card{background:#fff;color:var(--text);border-radius:26px;padding:30px;box-shadow:var(--shadow)}
.contact-card h3{font-size:28px;color:var(--green);margin-bottom:16px}
.contact-card p{margin:12px 0;font-weight:700}

.footer{background:#021f15;color:#fff;padding:34px 0}
.footer-inner{display:flex;justify-content:space-between;gap:20px;align-items:center;flex-wrap:wrap}

@media(max-width:960px){
  .nav{display:none}
  .highlights-grid,.services-grid,.benefits-grid,.process-grid{grid-template-columns:repeat(2,1fr)}
  .about-grid,.contact-grid{grid-template-columns:1fr}
  .hero{min-height:620px}
}
@media(max-width:620px){
  .header-inner{height:auto;padding:12px 0;flex-wrap:wrap}
  .logo{height:46px}
  .btn-header{padding:10px 16px}
  .hero{min-height:auto}
  .hero-card{padding:62px 0 100px}
  h1{font-size:40px}
  .hero-text{font-size:17px}
  .highlights-grid,.services-grid,.benefits-grid,.process-grid{grid-template-columns:1fr}
  .section{padding:62px 0}
  .service-card img{height:205px}
  .footer-inner{display:block;text-align:center}
}


/* CORREÇÃO DEFINITIVA - título da seção Benefícios */
.benefits-section h2,
.benefits-section h2 span {
  color: #f58200 !important;
  text-shadow: none !important;
}


/* AJUSTE SOLICITADO - CABEÇALHO BRANCO PREMIUM */
.site-header,
.header{
  background:#ffffff !important;
  box-shadow:0 8px 28px rgba(0,0,0,.10) !important;
  z-index:9999 !important;
}

.header-inner,
.header{
  min-height:104px !important;
  padding:14px 44px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:70px !important;
}

.logo{
  height:76px !important;
  width:auto !important;
  object-fit:contain !important;
  background:#ffffff !important;
  border-radius:10px !important;
  margin:0 !important;
}

.logo-link{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.nav,
.header nav{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:14px !important;
  margin:0 !important;
}

.nav a,
.header nav a{
  color:#ffffff !important;
  font-weight:900 !important;
  font-size:14px !important;
  letter-spacing:.35px !important;
  text-transform:uppercase !important;
  padding:12px 18px !important;
  border-radius:999px !important;
  box-shadow:0 8px 18px rgba(0,0,0,.12) !important;
  transition:.25s ease !important;
  text-decoration:none !important;
}

.nav a:nth-child(odd),
.header nav a:nth-child(odd){
  background:#f58200 !important;
}

.nav a:nth-child(even),
.header nav a:nth-child(even){
  background:#06311f !important;
}

.nav a:hover,
.header nav a:hover{
  transform:translateY(-2px) !important;
  filter:brightness(1.06) !important;
}

/* remove o botão WhatsApp do cabeçalho, caso ainda exista por CSS */
.btn-header,
.header > .btn,
.header .whatsapp{
  display:none !important;
}

/* mantém o hero intacto, apenas compensa a altura do header fixo/sticky */
.hero{
  margin-top:0 !important;
}

@media(max-width:960px){
  .header-inner,
  .header{
    min-height:auto !important;
    padding:12px 18px !important;
    gap:18px !important;
    flex-wrap:wrap !important;
  }
  .logo{
    height:58px !important;
  }
  .nav,
  .header nav{
    gap:8px !important;
    flex-wrap:wrap !important;
  }
  .nav a,
  .header nav a{
    font-size:12px !important;
    padding:9px 12px !important;
  }
}


/* AJUSTE FINO FINAL - TOPO / HERO / MENU */
.site-header,
.header{
  background:#ffffff !important;
  box-shadow:0 8px 28px rgba(0,0,0,.10) !important;
}

.header-inner,
.header{
  min-height:104px !important;
  padding:14px 7% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:34px !important;
}

.logo{
  height:86px !important;
  width:auto !important;
  object-fit:contain !important;
  background:#ffffff !important;
  border-radius:10px !important;
}

.logo-link{
  flex:0 0 auto !important;
}

.nav,
.header nav{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:14px !important;
  margin-left:auto !important;
}

.nav a,
.header nav a{
  color:#ffffff !important;
  font-weight:900 !important;
  font-size:14px !important;
  letter-spacing:.35px !important;
  text-transform:uppercase !important;
  padding:13px 20px !important;
  border-radius:999px !important;
  box-shadow:0 10px 22px rgba(0,0,0,.14) !important;
  transition:all .25s ease !important;
  text-decoration:none !important;
}

/* Menu alternado laranja/verde */
.nav a:nth-child(odd),
.header nav a:nth-child(odd){
  background:#f58200 !important;
}

.nav a:nth-child(even),
.header nav a:nth-child(even){
  background:#06311f !important;
}

/* Hover invertendo as cores, igual aos botões do hero */
.nav a:nth-child(odd):hover,
.header nav a:nth-child(odd):hover{
  background:#06311f !important;
  color:#ffffff !important;
  transform:translateY(-2px) !important;
}

.nav a:nth-child(even):hover,
.header nav a:nth-child(even):hover{
  background:#f58200 !important;
  color:#ffffff !important;
  transform:translateY(-2px) !important;
}

/* Remover WhatsApp do cabeçalho */
.btn-header,
.header > .btn,
.header .whatsapp{
  display:none !important;
}

/* Hero mais premium: menos branco lavado e mais contraste */
.hero-overlay{
  background:linear-gradient(
    90deg,
    rgba(255,255,255,.80) 0%,
    rgba(255,255,255,.68) 34%,
    rgba(6,49,31,.54) 66%,
    rgba(6,49,31,.72) 100%
  ) !important;
}

.hero-content h1,
.hero h1{
  font-size:clamp(44px,5.7vw,78px) !important;
  letter-spacing:-2.2px !important;
}

.hero-text,
.hero p{
  font-size:20px !important;
}

.hero-actions{
  gap:18px !important;
}

.hero-actions .btn,
.hero .btn{
  padding:17px 30px !important;
  font-size:16px !important;
  border-radius:999px !important;
}

/* cards de destaque mais elegantes, sobrepondo levemente */
.highlights{
  margin-top:-78px !important;
}

.highlight-item{
  transform:translateY(0) !important;
  transition:all .25s ease !important;
}

.highlight-item:hover{
  transform:translateY(-6px) !important;
}

/* Responsivo */
@media(max-width:960px){
  .header-inner,
  .header{
    min-height:auto !important;
    padding:14px 5% !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
  }

  .logo{
    height:64px !important;
  }

  .nav,
  .header nav{
    width:100% !important;
    justify-content:center !important;
    flex-wrap:wrap !important;
    margin-left:0 !important;
  }

  .nav a,
  .header nav a{
    font-size:12px !important;
    padding:10px 14px !important;
  }

  .hero-content h1,
  .hero h1{
    font-size:40px !important;
  }

  .highlights{
    margin-top:-38px !important;
  }
}


/* AJUSTES SOLICITADOS - HERO CENTRALIZADO E WHATSAPP FLUTUANTE */
.hero-content,
.hero-card{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
  max-width:820px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
}

.hero-content .eyebrow,
.hero-card .eyebrow{
  text-align:center !important;
}

.hero-content h1,
.hero-card h1,
.hero h1{
  text-align:center !important;
  max-width:850px !important;
}

.hero-text,
.hero-content p,
.hero-card p{
  text-align:center !important;
  max-width:720px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.hero-actions,
.hero-buttons{
  justify-content:center !important;
  align-items:center !important;
  display:flex !important;
}

.whatsapp-float{
  position:fixed !important;
  right:24px !important;
  bottom:24px !important;
  width:66px !important;
  height:66px !important;
  border-radius:50% !important;
  background:#25d366 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  z-index:99999 !important;
  box-shadow:0 12px 30px rgba(0,0,0,.35) !important;
  transition:all .25s ease !important;
}

.whatsapp-float:hover{
  transform:scale(1.08) !important;
  background:#1ebe5d !important;
}

.whatsapp-float svg{
  width:36px !important;
  height:36px !important;
  fill:#ffffff !important;
}


/* AJUSTE HERO - FUNDO TODO VERDE E TEXTOS EM BRANCO */
.hero-overlay{
  background:linear-gradient(
    90deg,
    rgba(2,31,21,.90) 0%,
    rgba(2,31,21,.82) 45%,
    rgba(2,31,21,.72) 100%
  ) !important;
}

.hero-content .eyebrow,
.hero-card .eyebrow{
  color:#ffffff !important;
  font-size:13px !important;
  letter-spacing:2px !important;
}

.hero-content h1,
.hero-card h1,
.hero h1{
  color:#ffffff !important;
  font-size:clamp(34px,4.6vw,58px) !important;
  line-height:1.08 !important;
  letter-spacing:-1.4px !important;
}

.hero-text,
.hero-content p,
.hero-card p{
  color:#ffffff !important;
  font-size:17px !important;
  line-height:1.55 !important;
}


/* AJUSTE VALIDADO - DESTAQUES PREMIUM + HERO MAIS CLARO */

/* Reduz um pouco a sombra verde da imagem principal para a casa aparecer melhor */
.hero-overlay{
  background:linear-gradient(
    90deg,
    rgba(2,31,21,.72) 0%,
    rgba(2,31,21,.64) 45%,
    rgba(2,31,21,.52) 100%
  ) !important;
}

/* Cards brancos com borda fininha e mais refinada */
.highlight-item{
  border:1.5px solid rgba(245,130,0,.42) !important;
  box-shadow:0 16px 38px rgba(0,0,0,.18) !important;
}

/* Ícones profissionais em SVG */
.premium-icon{
  background:rgba(245,130,0,.06) !important;
  border:1.8px solid #f58200 !important;
}

.premium-icon svg{
  width:34px !important;
  height:34px !important;
  stroke:#06311f !important;
  fill:none !important;
  stroke-width:3.2 !important;
  stroke-linecap:round !important;
  stroke-linejoin:round !important;
}

.highlight-item:hover .premium-icon{
  background:#f58200 !important;
}

.highlight-item:hover .premium-icon svg{
  stroke:#ffffff !important;
}


/* AJUSTE VALIDADO - BENEFÍCIOS PREMIUM */
.benefit-card{
  border:1.5px solid rgba(245,130,0,.42) !important;
  box-shadow:0 16px 38px rgba(0,0,0,.20) !important;
  transition:all .25s ease !important;
}

.benefit-card:hover{
  transform:translateY(-6px) !important;
  box-shadow:0 22px 48px rgba(0,0,0,.26) !important;
}

.premium-benefit-icon{
  width:58px !important;
  height:58px !important;
  margin:0 auto 14px !important;
  border-radius:50% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:rgba(245,130,0,.06) !important;
  border:1.8px solid #f58200 !important;
}

.premium-benefit-icon svg{
  width:32px !important;
  height:32px !important;
  stroke:#06311f !important;
  fill:none !important;
  stroke-width:3 !important;
  stroke-linecap:round !important;
  stroke-linejoin:round !important;
}

.benefit-card:hover .premium-benefit-icon{
  background:#f58200 !important;
}

.benefit-card:hover .premium-benefit-icon svg{
  stroke:#ffffff !important;
}


/* ===== AJUSTE SOBRE NÓS ===== */
.about-container{
    display:flex;
    gap:40px;
    align-items:stretch;
}

.about-text{
    flex:1;
    background:#ffffff;
    border-radius:18px;
    padding:40px;
    border:1.5px solid rgba(245,130,0,0.4);
}

.about-image{
    flex:1;
    display:flex;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:18px;
}

/* ===== PADRONIZAÇÃO DE BORDAS ===== */
.white-card, .benefit-card, .feature-card{
    border:1.5px solid rgba(245,130,0,0.4) !important;
}


/* AJUSTE DEFINITIVO - FOTO SOBRE NÓS NA MESMA ALTURA DO QUADRO */
.about-grid{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:48px !important;
  align-items:stretch !important;
}

.about-grid .card-white{
  height:100% !important;
}

.about-image{
  width:100% !important;
  height:auto !important;
  min-height:100% !important;
  align-self:stretch !important;
  border-radius:28px !important;
  background-size:cover !important;
  background-position:center !important;
}

/* Caso a imagem esteja como <img>, também força altura igual */
.about-image img{
  width:100% !important;
  height:100% !important;
  min-height:100% !important;
  object-fit:cover !important;
  border-radius:28px !important;
  display:block !important;
}

@media(max-width:960px){
  .about-grid{
    grid-template-columns:1fr !important;
  }
  .about-image{
    min-height:420px !important;
  }
}


/* ===== AJUSTE BLOCO CONTATOS ===== */
.contact-card{
  background:#ffffff !important;
  border-radius:18px !important;
  padding:30px !important;
  border:1.5px solid rgba(245,130,0,0.5) !important;
}

.contact-card h3,
.contact-card p,
.contact-card a{
  color:#f58200 !important;
  font-weight:600;
}

.contact-card p{
  margin-bottom:10px;
}


/* AJUSTE FINAL - TÍTULO DO HERO EM UMA ÚNICA LINHA */
.hero-content h1,
.hero-card h1,
.hero h1{
  white-space:nowrap !important;
  font-size:clamp(32px,4.2vw,58px) !important;
  max-width:1200px !important;
}

.hero-text,
.hero-content p,
.hero-card p{
  max-width:920px !important;
}

@media(max-width:900px){
  .hero-content h1,
  .hero-card h1,
  .hero h1{
    white-space:normal !important;
    font-size:38px !important;
  }
}


/* ===== BOTÃO WHATSAPP REFINADO ===== */
.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  width:70px;
  height:70px;
  border-radius:50%;
  background:#25d366;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99999;
  box-shadow:0 14px 32px rgba(0,0,0,.35);
  transition:all .25s ease;
  border:3px solid #ffffff; /* borda branca externa */
}

.whatsapp-float:hover{
  transform:scale(1.08);
  background:#1ebe5d;
}

.whatsapp-float svg{
  width:34px;
  height:34px;
  fill:#ffffff;
  margin:0; /* remove desalinhamento */
}

/* cria uma borda interna estilo whatsapp */
.whatsapp-float::after{
  content:"";
  position:absolute;
  inset:6px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,0.4);
}
