/* ==============================
   0. ROOT E RESET
   ============================== */
:root {
  /* Verde escuro – confiança e natureza */
  --clr-primary:   #2E7D32;
  --clr-secondary: #A5D6A7;
  --clr-support:   #E8F5E9;
  --clr-white:     #ffffff;
  --ff-base:  'Poppins', sans-serif;
  --ff-head:  'Poppins', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: var(--ff-base);
  color: var(--clr-primary);
  background: var(--clr-white);
}
/* ————————————————
   FIM - ROOT RESET?
   ———————————————— */
/* ————————————————
   BLOCO - HEADER
   ———————————————— */
#site-header {
  background-color: #faf2e7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1rem 0;
}
#site-header .logo {
  display: block;
  height: auto;
  width: auto;
  max-height: 44px;     /* menor no desktop */
  max-width: 180px;
  transition: max-height .3s ease;
}
@media (max-width: 991px) {
  #site-header .logo { max-height: 38px; max-width: 140px; }
}
@media (max-width: 575px) {
  #site-header { padding: 0.6rem 0 0.6rem 0; }
  #site-header .logo { max-height: 32px; max-width: 110px; }
}
/* ————————————————
   FIM - HEADER?
   ———————————————— */
/* ————————————————
   BLOCO - HERO
   ———————————————— */
.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(135deg, rgba(46, 125, 50, 0.88) 0%, rgba(165, 214, 167, 0.72) 100%),
                    url("../assets/imagens/bg2.jpg");
  background-size: auto, cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 5.2rem 0 2.5rem 0; /* mais respiro no topo */
}
.section-hero .container {
  position: relative;
  z-index: 1;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1200px;
}

/* HERO TEXTOS - SEMPRE À ESQUERDA */
.hero-text {
  text-align: left !important;
  margin-bottom: 2.2rem;
}
.hero-tagline {
  font-size: 1.03rem;
  color: var(--clr-support);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 1.1rem;
  text-align: left;
}
.hero-heading {
  font-family: var(--ff-head);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.13;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
  text-align: left;
  letter-spacing: -0.5px;
}
.highlight {
  color: var(--clr-secondary);
}
.hero-subheading {
  font-size: 1.2rem;
  color: var(--clr-white);
  margin-bottom: 1.8rem;
  max-width: 520px;
  line-height: 1.55;
  font-weight: 400;
  text-align: left;
}
.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.1rem 0;
}
.hero-features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .85rem;
  color: var(--clr-white);
  font-size: 1.07rem;
  font-weight: 500;
  text-align: left;
}
.hero-features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--clr-secondary);
  font-weight: bold;
}

/* HERO H3 (SUBTÍTULO SECUNDÁRIO) */
.section-hero h3, .hero-text h3 {
  color: var(--clr-secondary);
  font-size: 1.24rem;
  font-weight: 600;
  margin: 2rem 0 1.1rem 0;
  letter-spacing: .01em;
}

/* HERO BOTÃO */
.btn-hero {
  display: inline-block;
  background-color: var(--clr-secondary);
  color: var(--clr-primary);
  font-weight: 700;
  font-size: 1.12rem;
  padding: .90rem 2.1rem;
  border: none;
  border-radius: .5rem;
  transition: background .3s, color .3s, transform .2s;
  text-decoration: none;
  margin-bottom: 1.1rem;
  margin-top: .3rem;
  text-align: center;
}
.btn-hero:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-3px);
}

/* HERO IMAGEM/VÍDEO */
.hero-image .image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 450px;
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  background: #000;
  margin-left: auto;
  margin-right: auto;
}
.hero-image img,
.hero-image video.img-fluid {
  display: block;
  width: 100%;
  height: auto;
  border-radius: .75rem;
  object-fit: cover;
}
.hero-image .img-shape {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 100px; height: 100px;
  background: var(--clr-secondary);
  border-radius: 50%;
  opacity: .6;
  pointer-events: none;
}

/* BOTÃO VÍDEO */
.btn-video-sound {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.83);
  color: #fff;
  border: none;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 600;
  padding: .55rem 1.4rem .55rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 2;
  transition: background .2s, opacity .2s;
  opacity: 0.96;
  box-shadow: 0 1px 8px rgba(0,0,0,0.18);
}
.btn-video-sound:hover, .btn-video-sound:focus {
  background: rgba(0,0,0,0.92);
  opacity: 1;
}

/* ======== RESPONSIVIDADE HERO/HEADER ======== */
@media (max-width: 1200px) {
  .section-hero .container { padding-left: 1.1rem; padding-right: 1.1rem; padding-top: 2rem; padding-bottom: 3.3rem; }
}
@media (max-width: 991px) {
  .section-hero { padding-top: 4rem; padding-bottom: 1.6rem; }
  .hero-heading { font-size: 3.12rem; }
  .hero-image .image-wrapper { max-width: 340px; }
  .hero-subheading { font-size: 1.06rem; }
  .hero-text { margin-bottom: 1.7rem; }
}
@media (max-width: 767px) {
  .section-hero {
    flex-direction: column;
    padding: 3.2rem 0 1.5rem 0;
  }
  .section-hero .container {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .hero-text, .hero-tagline, .hero-heading, .hero-subheading, .hero-features li {
    text-align: left !important;
  }
  .hero-text { margin-bottom: 1.2rem; }
  .hero-heading { font-size: 3.42rem; }
  .hero-subheading { font-size: .96rem; }
  .hero-image .image-wrapper { max-width: 92vw; }
  .btn-hero { width: 100%; font-size: 1.03rem; }
  .btn-video-sound { bottom: 10px; font-size: .95rem; padding: .45rem 1rem .45rem .9rem; }
}
@media (max-width: 575px) {
  .section-hero { padding: 2.3rem 0 .9rem 0; }
  .section-hero .container { padding-left: .85rem; padding-right: .85rem; }
  .hero-text { margin-bottom: 1rem; }
  .hero-heading { font-size: 2.48rem; }
  .hero-subheading { font-size: .84rem; }
  .hero-tagline { font-size: .89rem; }
  .hero-features li { font-size: .91rem; }
  .btn-hero { padding: .78rem 1.3rem; }
  .hero-image .image-wrapper, .hero-image img, .hero-image video.img-fluid {
    border-radius: .5rem;
    max-width: 99vw;
  }
  .btn-video-sound { bottom: 7px; font-size: .89rem; padding: .35rem .7rem .35rem .7rem; }
}
/* ————————————————
   FIM - HERO?
   ———————————————— */
/* ————————————————
   BLOCO - O QUE É?
   ———————————————— */
/* ===== Comparativo Energia Solar ===== */
.section-solar-comparativo {
  background: #1A4022; /* Verde escuro */
  color: #fff;
  padding: 5rem 0 3rem 0;
}
.section-solar-comparativo .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-solar-comparativo .section-title {
  font-size: 2.45rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 2.2rem;
  letter-spacing: -0.5px;
}
.section-solar-comparativo .section-title span {
  display: block;
  font-size: 1.10rem;
  font-weight: 500;
  margin-top: .7rem;
}

/* Linha dos quadros comparativos */
.solar-comparativo-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

/* Quadros */
.comparativo-box {
  flex: 1 1 320px;
  max-width: 420px;
  background: #17361c;
  border-radius: 18px;
  padding: 2.2rem 1.7rem 1.6rem 1.7rem;
  box-shadow: 0 6px 28px rgba(0,0,0,0.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
}

.comparativo-problema {
  border: 2px solid #E29D2B; /* dourado */
  background: #18351f;
}
.comparativo-solucao {
  border: 2px solid #A5D6A7; /* verde claro */
  background: #215d35;
}

.comparativo-titulo {
  color: #A5D6A7;
  font-size: 1.21rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1.11rem;
  letter-spacing: .01em;
}
.comparativo-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem 0;
  width: 100%;
}
.comparativo-box li {
  font-size: 1.09rem;
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 500;
}
.comparativo-icon {
  font-size: 1.1rem;
  font-weight: 800;
  margin-right: .7rem;
}
.comparativo-icon-bad { color: #E29D2B; }
.comparativo-icon-good { color: #A5D6A7; }

.comparativo-resultado {
  font-size: 1.04rem;
  margin-top: .7rem;
  border-radius: 10px;
  padding: .9rem 1.1rem;
  font-weight: 600;
  background: rgba(255,255,255,0.07);
}
.comparativo-resultado-bad {
  color: #E29D2B;
}
.comparativo-resultado-good {
  color: #A5D6A7;
}

/* Botão */
.btn-solar {
  display: inline-block;
  margin: 2.2rem auto 0 auto;
  background: #A5D6A7;
  color: #1A4022;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 1.1rem 2.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  border: 2px solid #A5D6A7;
  transition: background .3s, color .3s, transform .2s;
  text-decoration: none;
  box-shadow: 0 3px 24px rgba(0,0,0,0.06);
  letter-spacing: .01em;
}
.btn-solar:hover, .btn-solar:focus {
  background: #fff;
  color: #1A4022;
  border-color: #A5D6A7;
  transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 991px) {
  .solar-comparativo-row { flex-direction: column; gap: 2rem; }
  .comparativo-box { max-width: 95vw; margin: 0 auto; }
  .section-solar-comparativo .section-title { font-size: 1.95rem; }
}
@media (max-width: 575px) {
  .section-solar-comparativo { padding: 2.2rem 0 1.2rem 0; }
  .comparativo-box { padding: 1.3rem .7rem; }
  .section-solar-comparativo .section-title { font-size: 2.15rem; }
  .comparativo-titulo { font-size: 1.05rem; }
  .comparativo-box li { font-size: .99rem; }
  .comparativo-resultado { font-size: .93rem; padding: .7rem .7rem; }
}
/* ————————————————
   FIM – BLOCO - O QUE É?
   ———————————————— */
/* ————————————————
   AMPLIAÇÃO – AGITAR A DOR
   ———————————————— */
.section-agitate {
  --gap: 2.2rem;
  background: linear-gradient(135deg, #f9fbfd 60%, #e8f5e9 100%);
  padding: 5rem 1.5rem;
}

.section-agitate .section-header {
  max-width: 100%;
  margin: 0 auto 3.2rem auto;
  text-align: center;
}
.section-agitate .section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  color: var(--clr-primary);
  font-weight: 800;
  margin-bottom: .7rem;
  letter-spacing: -0.5px;
}
.section-agitate .section-header p {
  font-family: "Poppins", sans-serif;
  font-size: 1.18rem;
  color: #35643c;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Grid fluido */
.agitate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: var(--gap);
  margin-top: 1.2rem;
}

/* Card moderno */
.agitate-item {
  background: rgba(255,255,255,0.95);
  border-left: 5px solid var(--clr-secondary);
  border-radius: 14px;
  padding: 2.3rem 1.7rem 1.7rem 1.7rem;
  box-shadow: 0 4px 36px rgba(46,125,50,0.09), 0 1.5px 12px rgba(0,0,0,0.03);
  opacity: 0;
  transform: translateY(28px) scale(0.99);
  animation: fadeInUp 0.7s cubic-bezier(.6,.2,.25,1.15) forwards;
  backdrop-filter: blur(2.5px);
  transition: box-shadow .25s, transform .25s;
  position: relative;
}
.agitate-item:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 12px 32px rgba(46,125,50,0.13), 0 2px 16px rgba(0,0,0,0.07);
  z-index: 1;
}

/* Delay por posição */
.agitate-item:nth-child(1) { animation-delay: 0.07s; }
.agitate-item:nth-child(2) { animation-delay: 0.14s; }
.agitate-item:nth-child(3) { animation-delay: 0.21s; }
.agitate-item:nth-child(4) { animation-delay: 0.28s; }
.agitate-item:nth-child(5) { animation-delay: 0.35s; }
.agitate-item:nth-child(6) { animation-delay: 0.42s; }
.agitate-item:nth-child(7) { animation-delay: 0.49s; }
.agitate-item:nth-child(8) { animation-delay: 0.56s; }

/* Ícone com destaque e efeito glass */
.agitate-item .agitate-icon {
  font-size: 2.7rem;
  margin-bottom: 1.1rem;
  color: var(--clr-primary);
  background: rgba(165,214,167,0.18);
  padding: .55rem 1rem;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(46,125,50,0.10);
  display: inline-block;
}

/* Título do card */
.agitate-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.28rem;
  color: var(--clr-primary);
  font-weight: 700;
  margin-bottom: .55rem;
  letter-spacing: -.2px;
}

/* Texto do card */
.agitate-item p {
  font-family: "Poppins", sans-serif;
  font-size: 1.04rem;
  color: #244f32;
  line-height: 1.6;
  margin-bottom: 0;
}

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

/* Responsividade moderna */
@media (max-width: 991px) {
  .section-agitate { padding: 3.2rem 1rem; }
  .section-agitate .section-header h2 { font-size: 2.05rem; }
  .section-agitate .section-header p { font-size: 1.03rem; }
}

@media (max-width: 767px) {
  .section-agitate { padding: 2rem .5rem; }
  .section-agitate .section-header { margin-bottom: 2rem; }
  .section-agitate .section-header h2 { font-size: 1.37rem; }
  .agitate-grid { gap: 1.2rem; }
  .agitate-item { padding: 1.3rem .8rem 1.1rem .8rem; border-radius: 10px; }
  .agitate-item .agitate-icon { font-size: 2.1rem; padding: .32rem .6rem; border-radius: 9px; }
  .agitate-item h3 { font-size: 1.01rem; }
  .agitate-item p { font-size: .91rem; }
}
/* ————————————————
   FIM – BLOCO - AMPLIAÇÃO
   ———————————————— */
/* ————————————————
   Solução
   ———————————————— */
.section-solution {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  padding: 80px 0;
}
.section-solution .solution-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.section-solution .solution-desc {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--clr-support);
}
.section-solution .solution-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.section-solution .solution-features li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .75rem;
  font-size: 1rem;
  color: var(--clr-support);
}
.section-solution .solution-features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--clr-secondary);
  font-weight: bold;
}
.section-solution .btn-solution {
  display: inline-block;
  background-color: var(--clr-secondary);
  color: var(--clr-primary);
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: .25rem;
  text-decoration: none;
  transition: background .3s, color .3s;
}
.section-solution .btn-solution:hover {
  background-color: var(--clr-white);
  color: var(--clr-primary);
}
/* ——— Imagem da seção “Solution” alinhada ao tamanho do Header ——— */
.section-solution .solution-img {
  display: block;
  width: auto;           /* mantém proporção */
  max-width: 100%;       /* não estoura o container */
  max-height: 500px;     /* igual ao max-height da logo no desktop */
  margin: 0 auto;        /* centra horizontalmente */
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: max-height .3s ease;
}

/* Tablet */
@media (max-width: 991px) {
  .section-solution .solution-img {
    max-height: 500px;   /* mesmo ajuste da logo em tablet */
  }
}

/* Mobile */
@media (max-width: 575px) {
  .section-solution .solution-img {
    max-height: 500px;    /* segue o mesmo padrão do header */
  }
}

/* responsividade */
@media (max-width: 767px) {
  .section-solution {
    padding: 50px 0;
  }
  .section-solution .solution-title {
    font-size: 2rem;
  }
  .section-solution .solution-desc,
  .section-solution .solution-features li {
    font-size: .95rem;
  }
}
/* ————————————————
   FIM – BLOCO - Solução
   ———————————————— */
/* ————————————————
   Prova Social
   ———————————————— */
/* ——— 4-7. TRUST – AUTORIDADE, PROVA SOCIAL, GALERIA E VÍDEOS ——— */
.sect-trust {
  background: var(--clr-white);
  color: var(--clr-primary);
  padding: 6rem 1rem;
}
@media (max-width: 575px) {
  .sect-trust { padding: 2.5rem 1rem; }
}

/* Espaçamento entre linhas internas */
.sect-trust .row {
  row-gap: 3.5rem;
}
.sect-trust .row + .row {
  margin-top: 4rem;
}

/* TÍTULOS */
.sect-trust .section-title,
.sect-trust .subtitle {
  font-family: var(--ff-head);
  color: var(--clr-primary);
  text-align: center;
}
.sect-trust .section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.sect-trust .subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 575px) {
  .sect-trust .section-title { font-size: 2rem; margin-bottom: 1.75rem; }
  .sect-trust .subtitle       { font-size: 1.25rem; }
}

/* ===== AUTORIDADE (NÚMEROS) ===== */
.sect-trust .authority-card {
  background: var(--clr-support);
  padding: 1.5rem .75rem;
  border-radius: .5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform .3s;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sect-trust .authority-card:hover {
  transform: translateY(-4px);
}
.sect-trust .authority-icon {
  font-size: 2rem;
  color: var(--clr-secondary);
  margin-bottom: .5rem;
}
.sect-trust .authority-number {
  font-family: var(--ff-head);
  font-size: 1.75rem;
  color: var(--clr-primary);
  margin-bottom: .25rem;
}
.sect-trust .authority-label {
  font-size: .9rem;
  color: #555;
  margin: 0;
}

/* ===== DEPOIMENTOS GOOGLE ===== */
.sect-trust .carousel-indicators button {
  width: .75rem;
  height: .25rem;
  border-radius: 10%;
  background: var(--clr-secondary);
  opacity: .5;
  margin-top: 20px;
}
.sect-trust .carousel-indicators .active {
  opacity: 1;
}
.sect-trust .review-card {
  background: var(--clr-support);
  padding: 1.5rem;
  border-radius: .5rem;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sect-trust .review-rating {
  font-size: 1.25rem;
  margin-bottom: .75rem;
}
.sect-trust .review-text {
  font-family: var(--ff-base);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--clr-primary);
  margin-bottom: .75rem;
}
.sect-trust .review-author {
  font-weight: 600;
  font-size: .9rem;
  color: var(--clr-secondary);
  text-align: right;
}

/* ===== GALERIA DE FOTOS ===== */

.sect-trust .gallery-wrapper {
  height: 450px;              /* altura fixa */
  overflow: hidden;
  border-radius: .5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  /* removemos aspect‐ratio prévio */
}

.sect-trust #galleryImage {
  display: block;
  width: 100%;
  height: 100%;               /* preenche os 450px */
  object-fit: cover;          /* recorte centralizado */
}

/* MOBILE: altura menor para telas estreitas */
@media (max-width: 575px) {
  .sect-trust .gallery-wrapper {
    height: 300px;
  }
}

/* ===== VÍDEOS – PROPORÇÃO 16∶9 ===== */
.sect-trust .video-card {
  position: relative;
  width: clamp(180px, 40%, 300px);
  overflow: hidden;
  border-radius: .5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform .3s;
}
.sect-trust .video-card:hover {
  transform: translateY(-4px) scale(1.02);
}
.sect-trust .video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sect-trust .play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  pointer-events: none;
}
@media (max-width: 991px) {
  .sect-trust .video-card {
    width: clamp(140px, 45%, 240px);
  }
}
@media (max-width: 575px) {
  .sect-trust .video-card {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== LIGHTBOX DE VÍDEO ===== */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.lightbox-overlay.show {
  display: flex;
}
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}
.lightbox-close {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--clr-secondary);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
#lightboxVideo {
  width: 100%;
  height: auto;
  border-radius: .5rem;
}

/* CROSS‐FADE DA IMAGEM */
.gallery-img.fade {
  transition: opacity 1s ease-in-out;
  opacity: 1;
}

/* BOTÕES NAV */
.gallery-wrapper {
  position: relative;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
.gallery-nav.prev { left: 8px; }
.gallery-nav.next { right: 8px; }

/* INDICADORES (DOTS) */
.gallery-indicators {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.gallery-indicators .dot {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
}
.gallery-indicators .dot.active {
  background: var(--clr-secondary);
}
/* ===== RESPONSIVIDADE GERAL ===== */
@media (max-width: 767px) {
  .sect-trust .row + .row {
    margin-top: 3rem;
  }
}

/* ===============================
   Carousel de Avaliações Google
   =============================== */
#sect-google-reviews {
  background-color: var(--clr-support);
}
#sect-google-reviews .carousel-indicators button {
  width: 12px; height: 12px;
  border-radius: 50%;
  background-color: var(--clr-secondary);
  opacity: .5;
}
#sect-google-reviews .carousel-indicators .active {
  opacity: 1;
}
#sect-google-reviews .review-card {
  max-width: 600px;
  background: var(--clr-white);
  border-radius: .5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  padding: 2rem;
  text-align: left;
}
#sect-google-reviews .review-rating {
  font-size: 1.5rem;
  color: var(--clr-secondary);
  margin-bottom: .75rem;
}
#sect-google-reviews .review-text {
  font-family: var(--ff-base);
  font-size: 1rem;
  color: var(--clr-primary);
  line-height: 1.6;
  margin-bottom: 1rem;
}
#sect-google-reviews .review-author {
  font-weight: 600;
  font-size: .9rem;
  color: var(--clr-primary);
  text-align: right;
}
@media (max-width: 576px) {
  #sect-google-reviews .review-card {
    padding: 1.5rem;
  }
  #sect-google-reviews .review-rating {
    font-size: 1.25rem;
  }
  #sect-google-reviews .review-text {
    font-size: .95rem;
  }
}	
/* ————————————————
   FIM – BLOCO - PROVA SOCIAL
   ———————————————— */
/* ————————————————
   GARANTIA
   ———————————————— */
/* Bloco principal */
.warranty-section {
  background: #F6F8FA;
  color: var(--clr-primary);
  padding: 4.5rem 0;
}
.warranty-section .container {
  max-width: 950px;
  margin: 0 auto;
}

/* Headline e selo */
.warranty-title {
  font-family: var(--ff-head), "Poppins", sans-serif;
  font-size: 2.1rem;
  color: var(--clr-primary);
  font-weight: 800;
  margin-bottom: .7rem;
  display: inline-block;
  vertical-align: middle;
}

/* Selo/ícone alinhado */
.warranty-section .d-flex.align-items-center {
  gap: 12px;
}

/* Subtítulo */
.warranty-section p {
  font-size: 1.12rem;
  color: #33885e;
  margin-bottom: 1.1rem;
  font-weight: 500;
}

/* Lista de garantias */
.warranty-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.warranty-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 1.1rem;
  font-size: 1.09rem;
  color: var(--clr-primary);
  font-weight: 500;
}
.warranty-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--clr-secondary);
  font-weight: bold;
  font-size: 1.12rem;
}
.warranty-list li span {
  color: #2E7D32;
  font-weight: 600;
  font-size: .99rem;
}

/* Botão */
.btn-warranty {
  display: inline-block;
  background: var(--clr-secondary);
  color: var(--clr-primary);
  padding: .85rem 2rem;
  border-radius: .3rem;
  font-weight: 700;
  font-size: 1.07rem;
  border: 2px solid var(--clr-secondary);
  text-decoration: none;
  margin-top: .5rem;
  box-shadow: 0 2px 8px rgba(46,125,50,0.09);
  transition: 
    background .24s, color .24s, border-color .24s, transform .19s;
}
.btn-warranty:hover, .btn-warranty:focus {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
  transform: translateY(-2px);
}

/* Microcopy/linha de reforço */
.warranty-section .microcopy {
  margin-top: 12px;
  color: #A5D6A7;
  font-size: .98rem;
  font-weight: 500;
}

/* Imagem circular */
.warranty-img {
  max-width: 100%;
  width: 250px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 3px 18px rgba(46,125,50,0.08);
  margin: 0 auto;
  display: block;
}

/* Responsivo */
@media (max-width: 991px) {
  .warranty-section { padding: 2.7rem 0; }
  .warranty-title { font-size: 1.5rem; }
  .warranty-section .container { max-width: 98vw; }
  .warranty-img { width: 160px; }
}
@media (max-width: 767px) {
  .warranty-title { font-size: 1.25rem; }
  .warranty-section p { font-size: 1rem; }
  .warranty-list li { font-size: .98rem; }
  .btn-warranty { width: 100%; font-size: .99rem; }
  .warranty-img { width: 110px; margin-bottom: 1.2rem; }
  .warranty-section .d-flex.align-items-center {
    justify-content: center;
    gap: 8px;
  }
}
/* ————————————————
   FIM – GARANTIA
   ———————————————— */
/* ————————————————
   OFERTA ESPECIAL
   ———————————————— */
/* ====== Premium Offer Section ====== */
.section-offer {
  background: linear-gradient(135deg, #E8F5E9 60%, #A5D6A7 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem 4rem 1rem;
}

/* Card centralizado */
.offer-premium-card {
  background: #fff;
  border-radius: 1.4rem;
  box-shadow: 0 10px 36px rgba(46,125,50,0.13);
  max-width: 470px;
  margin: 0 auto;
  padding: 3rem 2rem 2.4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Badges grandes */
.premium-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.2rem;
}
.premium-badges > div {
  border-radius: 2rem;
  padding: .75rem 1.5rem;
  font-size: 1.12rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 2px 12px rgba(46,125,50,0.07);
}
.premium-badges > div:first-child {
  background: #A5D6A7;
  color: #205c35;
}
.premium-badges > div:last-child {
  background: #E29D2B;
  color: #fff;
}

/* Título e subtítulo */
.offer-title {
  font-size: 2.12rem;
  font-weight: 800;
  color: #205c35;
  margin-bottom: .75rem;
  line-height: 1.15;
}
.offer-subtitle {
  font-size: 1.12rem;
  color: #205c35;
  margin-bottom: 2.1rem;
  line-height: 1.5;
}

/* Ícone visual (no topo) */
.offer-icon {
  font-size: 2.2rem;
  color: #E29D2B;
  margin-bottom: .18rem;
  display: flex;
  justify-content: center;
}

.btn-offer {
  display: inline-block;
  background: #A5D6A7;
  color: #1A4022;
  font-size: 1.23rem;
  font-weight: 800;
  width: 100%;
  padding: 1.1rem 0;
  border-radius: 50px;
  border: none;
  text-transform: uppercase;
  transition: background .24s, color .24s, transform .17s;
  box-shadow: 0 2px 12px rgba(46,125,50,0.07);
  letter-spacing: .01em;
  margin-top: .2rem;
}
.btn-offer:hover, .btn-offer:focus {
  background: #E29D2B;
  color: #fff;
  transform: translateY(-2px);
}

/* Microcopy e selo de confiança */
.microcopy {
  margin-top: 1.3rem;
  color: #A5D6A7;
  font-size: .98rem;
  font-weight: 600;
}
.offer-trust {
  color: #2E7D32;
  font-size: .93rem;
  margin-top: .6rem;
}
.offer-trust span {
  background: rgba(165,214,167,0.18);
  padding: 3px 13px;
  border-radius: 12px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 767px) {
  .section-offer { padding: 2.3rem .5rem 1.5rem .5rem; }
  .offer-premium-card { padding: 2.1rem .7rem 1.6rem .7rem; }
  .offer-title { font-size: 1.45rem; }
  .offer-subtitle { font-size: .99rem; }
  .btn-offer { font-size: 1.05rem; padding: .93rem 0; }
  .premium-badges > div { font-size: .98rem; padding: .62rem 1rem; }
  .offer-icon { font-size: 1.5rem; }
}

@media (max-width: 400px) {
  .offer-title { font-size: 1.11rem; }
  .offer-premium-card { padding: 1.2rem .2rem .8rem .2rem; }
}
/* ————————————————
   FIM – BLOCO - OFERTA ESPECIAL
   ———————————————— */
/* ————————————————
   FAQ
   ———————————————— */
.section-faq {
  background: #fff;
  padding: 5rem 1rem;
}
.section-faq .container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--clr-primary);
  text-align: center;
  margin-bottom: 2.8rem;
  letter-spacing: -0.5px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.32rem;
}

/* FAQ card visual */
.faq-item {
  background: #f9fbfd;
  border-radius: 1.1rem;
  box-shadow: 0 3px 16px rgba(46,125,50,0.08);
  border: 1.5px solid #e8f5e9;
  transition: box-shadow .3s, border-color .3s, background .3s;
  padding: 0 1rem;
}
.faq-item[open] {
  box-shadow: 0 8px 32px rgba(46,125,50,0.12);
  border-color: #A5D6A7;
  background: #f4fefa;
}

/* FAQ summary */
.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--clr-primary);
  padding: 1.3rem 2.3rem 1.3rem 0;
  transition: color .2s;
}
.faq-item summary:hover {
  color: #2E7D32;
}
.faq-item summary::marker {
  content: "";
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 1.35rem;
  color: #E29D2B;
  transition: transform .3s, color .3s;
}
.faq-item[open] summary::after {
  content: '–';
  color: var(--clr-secondary);
  transform: translateY(-50%) rotate(180deg);
}

/* FAQ resposta */
.faq-content {
  margin-top: -.3rem;
  padding: 0 0 1.12rem 1.4rem;
  animation: fadeFaq .4s;
}
.faq-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #244f32;
  margin: 0;
  padding: .2rem 0;
}

/* Microanimação de fade */
@keyframes fadeFaq {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsivo */
@media (max-width: 767px) {
  .section-faq { padding: 3.5rem .5rem; }
  .faq-title { font-size: 1.34rem; }
  .faq-item summary { font-size: 1rem; padding: .95rem 1.8rem .95rem 0; }
  .faq-content p { font-size: .95rem; }
}
/* ————————————————
   FIM – FAQ
   ———————————————— */
/* ————————————————
   RODAPÉ
   ———————————————— */
/* ===== RODAPÉ C&P ENERGIA ===== */
.site-footer {
  background: var(--clr-primary);      /* verde escuro */
  color: var(--clr-secondary);         /* verde claro */
  padding: 1.7rem 1rem;
  text-align: center;
}
.site-footer .container {
  max-width: 960px;
  margin: 0 auto;
}
.site-footer p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
  color: var(--clr-secondary);
}
.site-footer b {
  color: #E29D2B;                     /* dourado para destaque */
  font-weight: 700;
}

/* —— BARRA DE DESENVOLVIMENTO —— */
.dev-bar {
  background: #1A4022;                /* verde MUITO escuro */
  padding: 0.75rem 1rem;
  text-align: center;
}
.dev-bar p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--clr-white);
}
.dev-bar a {
  color: #E29D2B;                    /* dourado */
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}
.dev-bar a:hover {
  text-decoration: underline;
  color: var(--clr-secondary);
  opacity: .85;
}

/* Responsividade */
@media (max-width: 576px) {
  .site-footer p,
  .dev-bar p {
    font-size: 0.83rem;
  }
}
/* ————————————————
   FIM – RODAPE
   ———————————————— */
/* ————————————————
   DESENVOLVIDO POR
   ———————————————— */
.dev-bar {
  background: #1A4022;
  padding: 0.75rem 1rem;
  text-align: center;
}
.dev-bar p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: #fff;
  letter-spacing: 0.01em;
}
.dev-bar a {
  color: #E29D2B;
  text-decoration: none;
  font-weight: 600;
  padding-left: 2px;
  transition: color .2s;
}
.dev-bar a:hover, .dev-bar a:focus {
  color: var(--clr-secondary);
  text-decoration: underline;
  opacity: .92;
}

/* Responsivo */
@media (max-width: 576px) {
  .dev-bar p {
    font-size: 0.83rem;
  }
}
   /* ————————————————
   FIM DESENVOLVIDO POR
   ———————————————— */
  /* ————————————————
   MODAL
   ———————————————— */

.form-modal-content {
  border-radius: .95rem;
  border: none;
  box-shadow: 0 10px 36px rgba(46,125,50,0.14);
  background: #fff;
  animation: modalFadeIn .35s cubic-bezier(.6,.2,.25,1.15);
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(.95);}
  to   { opacity: 1; transform: scale(1);}
}
.modal-header {
  background: var(--clr-primary);
  border-radius: .95rem .95rem 0 0 !important;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
}
.modal-title {
  color: var(--clr-white);
  font-family: 'Poppins',sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -.5px;
}
.btn-close-white {
  filter: brightness(0) invert(1);
}
.modal-body {
  background: var(--clr-support);
  border-radius: 0 0 .95rem .95rem;
  padding: 2.2rem 2.1rem;
}
.form-modal-top .modal-icon {
  font-size: 2.1rem;
  margin-bottom: .3rem;
}
.form-modal-top .modal-microcopy {
  font-size: 1.07rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: .2rem;
}
.form-modal-top .modal-security {
  font-size: .97rem;
  color: #33885e;
  margin-bottom: .8rem;
}
.form-label {
  color: var(--clr-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: .4rem;
}
.form-control {
  border-radius: .5rem;
  font-size: 1rem;
  padding: .7rem 1.1rem;
  border: 1.5px solid #A5D6A7;
  margin-bottom: .5rem;
  box-shadow: 0 1.5px 8px rgba(46,125,50,0.05);
  transition: border-color .2s;
}
.form-control:focus {
  border-color: #2E7D32;
  box-shadow: 0 2px 16px rgba(46,125,50,0.10);
}
.btn-form-modal {
  background: var(--clr-primary);
  color: var(--clr-white);
  font-weight: 800;
  font-size: 1.13rem;
  padding: .88rem 1.5rem;
  border-radius: .5rem;
  border: none;
  box-shadow: 0 2px 12px rgba(46,125,50,0.07);
  transition: background .3s, color .3s, transform .2s;
  margin-top: .5rem;
}
.btn-form-modal:hover, .btn-form-modal:focus {
  background: var(--clr-secondary);
  color: var(--clr-primary);
  transform: translateY(-2px);
}
.alert-info {
  background: #E8F5E9;
  color: #2E7D32;
  border: none;
  font-weight: 500;
}
.alert-success {
  background: #A5D6A7;
  color: #205c35;
  border: none;
  font-weight: 600;
}
/* Responsivo */
@media (max-width: 575px) {
  .form-modal-content { border-radius: .7rem; }
  .modal-header, .modal-body { padding: 1.2rem; }
  .modal-title { font-size: 1.1rem; }
  .form-label, .form-control { font-size: .96rem; }
  .btn-form-modal { font-size: 1.01rem; padding: .72rem 1.1rem; }
}


  /* ————————————————
   FIM MODAL
   ———————————————— */