@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@200;300;400;500;600;700&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Hanken Grotesk', sans-serif;
  background-color: #5bb9ba;
  color: #000000;
  line-height: 1.4;
}
a {
  color: #5bb9ba;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Header */
header {
  background-color: #ffffff;
  padding: 15px 15%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .logo {
  height: 10vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
header .logo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav .icon-instagram,
header nav .icon-whatsapp {
  display: inline-block;
  width: clamp(48px, 5vw, 80px);
  height: clamp(48px, 5vw, 80px);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.icon-instagram {
  background-image: url("../images/instagram_original.webp") !important;
}
.icon-whatsapp {
  background-image: url("../images/whatsapp_verde.webp") !important;
}

/* Hero principal */
.hero {
  position: relative;
  height: 80vh;
  background: url('../images/bg_hero.jpeg') no-repeat center center/cover fixed;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.hero-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: 0;
}
.hero-inner h1 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1;
  text-overflow: ellipsis;
}
.hero-inner h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}
.hero-inner p {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  line-height: 1.4;
}
.hero-inner form {
  background: #ffffff;
  color: #000000;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  font-size: 1.25rem;
  width: 480px;
  margin: 0 auto;
}
.hero-inner form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-inner form input {
  width: 100%;
  padding: 7px 10px;
  margin-bottom: 15px;
  border: 1px solid #5bb9ba;
  border-radius: 6px;
  outline-color: #5bb9ba;
  font-size: 0.9rem;
  font-family: 'Hanken Grotesk', sans-serif !important;
}
.hero-inner form button {
  background: none;
  border: 1px solid #5bb9ba;
  color: #5bb9ba;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  font-family: 'Hanken Grotesk', sans-serif !important;
  transition: all 0.3s ease;
}
.hero-inner form button:hover {
  background: #5bb9ba;
  color: #ffffff;
}

/* Seção: conta-luz */
.conta-luz {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  min-height: 100vh;
  background-color: #5bb9ba;
  color: #fff;
  text-align: center;
}
.conta-luz h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.conta-luz p {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.4;
  max-width: 600px;
  margin: 1rem auto 2rem;
}
.conta-luz .images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.conta-luz img {
  max-width: 100%;
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.conta-luz button {
  font-size: 1.5rem;
  margin-top: 18px;
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.conta-luz button:hover {
  background: #fff;
  color: #5bb9ba;
}

/* Seção: sistema-solar */
.sistema-solar {
  background-color: #fff;
  color: #FEB501;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding: 30px 15px;
  align-items: center;
  text-align: left;
}
.sistema-solar .text {
  max-width: 400px;
}
.sistema-solar > h2 {
  font-size: 3rem;
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  margin-bottom: -50px;
}
.sistema-solar-body {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  justify-content: center;
}
.sistema-solar-body .text {
  flex: 2 1 600px;
  max-width: 35vw;
  margin-bottom: 0;
}
.sistema-solar-body .text button {
    display: block;
    margin: 2rem auto 0;
}
.sistema-solar-body img {
  flex: 1 1 300px;
  max-width: 400px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.sistema-solar p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  margin-left: 40px;
  margin-right: 40px;
  text-align: center;
  color: #000000;
}
.sistema-solar ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.2rem;
  line-height: 1.3;
}
.sistema-solar ul li {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 80px;
  color: #000000;
}
.sistema-solar ul li svg {
  width: 18px;
  height: 18px;
  fill: #5bb9ba;
}
.sistema-solar img {
  display: block;
  max-width: 250px;
  margin: 1rem auto;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.sistema-solar button {
  font-size: 1.5rem;
  margin-top: 18px;
  background: none;
  border: 2px solid #FEB501;
  color: #FEB501;
  padding: 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.sistema-solar button:hover {
  background: #FEB501;
  color: #ffffff;
}

/* Seção: depoimentos */
.depoimentos {
  background: #FEB501;
  color: #fff;
  padding: 30px 20%;
}
.depoimentos .titulo {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.depoimentos .container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.depoimentos .mapa {
  flex: 1;
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 8px;
}
.depoimentos .cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.depoimentos .card {
  background: #5bb9ba;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.depoimentos .nome {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.depoimentos .nome:hover {
  text-decoration: underline;
  color:#FEB501;
  opacity: 0.8;
}
.depoimentos .nome-estrelas {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 700;
}
.depoimentos .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.depoimentos .estrelas {
  color: #FEB501;
}
.depoimentos .texto {
  font-size: 0.9rem;
  line-height: 1.4;
}
.depoimentos .btn-depoimentos {
  display: block;
  margin: 20px auto 0;
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.depoimentos .btn-depoimentos:hover {
  background: #fff;
  color: #FEB501;
}

/* Seção: simples-economizar */
.simples-economizar {
  padding: 60px 15px;
  color: #5bb9ba;
  background-color: #fff;
}
.simples-economizar h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 400;
}
.simples-economizar .etapas-grid {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 10px auto 60px;
}
.simples-economizar .etapa {
  background: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px 15px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #000000;
}
.simples-economizar .etapa-icon {
  font-size: 2rem;
}
.simples-economizar .etapa-title {
    font-size: 1.2rem;
    color: #5bb9ba;
    text-align: center;
}
.simples-economizar .etapa-desc {
    font-size: 1rem;
    color: #5bb9ba;
    text-align: center;
    font-weight: 200;
}
.simples-economizar button {
    display: block;
    font-size: 2rem;
    margin: 20px auto 0;
    background: none;
    border: 2px solid #5bb9ba;
    color: #5bb9ba;
    padding: 30px;
  border-radius: 6px;
  font-weight: 200;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.simples-economizar button:hover {
  background: #5bb9ba;
  color: #ffffff;
}

/* Seção: voce-recebe */
.voce-recebe {
  background-color: #5bb9ba;
  color: #000000;
  padding: 40px 20px 30px;
  text-align: center;
}
.voce-recebe h2 {
    color: #fff;
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 3rem;
}
.voce-recebe h2 .blue-link {
  color: #FEB501;
  font-weight: 800;
}
.voce-recebe .itens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 25px;
}
.voce-recebe .item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.85rem;
}
.voce-recebe .item .mavo-icon {
  font-size: 2.5rem;
}
.voce-recebe .item .mavo-text {
    color:#5bb9ba;
    font-weight: 400;
    font-size: 1rem;
}
.voce-recebe button {
  background: none;
  border: 2px solid #ffffff;
  color: #ffffff;
    padding: 30px;
  border-radius: 6px;
  font-weight: 200;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.voce-recebe button:hover {
  background: #ffffff;
  color: #FEB501;
}

/* Seção de dúvidas */
.duvidas {
  background: #FEB501;
  padding: 40px 20px;
    width: 100%;
  color: #fff;
}
.duvidas-inner {
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}
.duvidas-titulo {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}
.faq-list {
  text-align: left;
}
.duvidas .faq {
  border-bottom: 1px solid #fff;
  padding: 10px 0;
  transition: background 0.3s ease;
}
.duvidas .faq summary {
  cursor: pointer;
  position: relative;
  padding-left: 28px;
  font-size: 1.5rem;
  font-weight: 400;
  list-style: none;
  color: #fff;
}
.duvidas .faq summary::before {
  content: attr(data-icon);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.duvidas .faq[open] summary::before {
  transform: translateY(-50%) rotate(90deg);
}
.duvidas .faq p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding-top: 5px;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #fff;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}
.duvidas .faq[open] p {
  max-height: 500px;
  opacity: 1;
}
.duvidas-btn {
  display: block;
  margin: 20px auto 0;
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 30px;
  border-radius: 6px;
  font-weight: 200;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.duvidas-btn:hover {
  background: #ffffff;
  color: #FEB501;
}

/* Modal */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
}
/* quando ativo */
.modal.active {
  display: flex;
}
/* caixa branca */
.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 600px;
  max-height: 80vh;
  width: 90%;
  position: relative;
  overflow-y: auto;
  padding: 1.5rem;
}

/* Estilo unificado para campos do modal */
.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;                   /* ocupam toda a largura */
  padding: 0.75rem 1rem;         /* espaçamento interno */
  margin-bottom: 1rem;           /* espaço entre campos */
  border: 1px solid #5bb9ba;        /* mesma borda */
  border-radius: 0.375rem;       /* cantos arredondados */
  font-family: inherit;          /* mesma fonte do modal */
  font-size: 1rem;               /* tamanho de texto consistente */
  box-sizing: border-box;        /* inclui padding na largura */
  background-color: #fff;        /* fundo branco */
}
.attachment-zone {
  border: 2px dashed #5bb9ba;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  margin-bottom: 1rem;
}

.attachment-zone.dragover {
  background: #e6f7f6;
  border-color: #31938a;
}

/* lista de arquivos */
.attachment-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.attachment-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
.attachment-list button {
  background: transparent;
  border: none;
  color: #e74c3c;
  cursor: pointer;
}

/* botão de fechar */
.modal-close {
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Estilo para o formulário do modal */
#modal-form {
  display: flex;
  flex-direction: column;
}
#modal-form h2 {
  margin-bottom: 1rem;
  color: #5bb9ba;
  text-align: center;
}
#modal-form label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}
#modal-form input {
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #5bb9ba;
  border-radius: 4px;
}
#modal-form button {
  background: #5bb9ba;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}
#modal-form button:hover {
  background: #4a9b9c;
}

/* Footer */
footer {
  background-color: #5bb9ba;
  color: #fff;
  padding: 20px 15%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.4rem;
}
footer .contato {
  flex: 0 0 30%;
  min-width: unset;
  max-width: unset;
}
footer .telefone {
  flex: 0 0 50%;
  min-width: unset;
  max-width: unset;
  text-align: center;
}
footer .redes {
  flex: 0 0 15%;
  min-width: unset;
  max-width: unset;
}
footer label {
  display: block;
  font-weight: 100;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 6px;
}
footer input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #fff;
  border-radius: 6px;
  outline-color: #5bb9ba;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #fff;
  background-color: #5bb9ba;
}
footer input::placeholder {
  color: #fff;
  font-family: inherit;
  opacity: 1;
}
footer button {
  display: block;
  width: 80%;
  margin: 0 auto 0;
  background: #fff;
  color: #5bb9ba;
  border: 2px solid #fff;;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s ease;
}
footer button:hover {
  background: #5bb9ba;
  color: #fff;
}
footer .telefone {
    font-weight: 200 !important;
}
footer .telefone h2 {
  margin-top: 1rem;
  line-height: 1.3;
}
footer .telefone h3 {
    font-weight: 200;
    margin-top: -0.2rem;
    font-size: 1.2rem;
}
footer .telefone .email-link {
    color: inherit;
    font-weight: 400;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}
footer .telefone .email-link:hover {
     color: #FEB501; 
}
footer .telefone h4 {
    font-weight: 700;
  margin-top: 0.85rem;
  font-size: 1.2rem;
  line-height: 1.3;
}
footer .telefone .telefone-link {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
footer .telefone .telefone-link:hover {
     color: #FEB501; 
}
footer .telefone h5 {
  font-weight: 200;
  margin-top: -0.2rem;
  line-height: 1.3;
}
footer .telefone h6 {
  margin-top: 1.5rem;
  font-weight: 200;
}
footer .redes h3 {
  font-weight: 700;
  margin-top: 10px;
}
footer .redes p {
    text-align: center;
    font-size: large;
    margin-top: 10px;
}
footer .redes a {
  margin-right: 12px;
  display: inline-block;
}
a.icon-instagram,
a.icon-whatsapp {
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-size: contain;
}
footer .redes a.icon-instagram {
  background-image: url("../images/instagram_branco.png") !important;
}
footer .redes a.icon-whatsapp {
  background-image: url("../images/whatsapp_branco.png") !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border-radius: 0;
  width: 48px;
  height: 48px;
}
footer .redes .images {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}
footer .redes .images img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== MEDIA QUERIES PARA RESPONSIVIDADE ===== */

/* Tablets (768px - 1024px) */
@media screen and (max-width: 1024px) {
  /* Header */
  header {
    padding: 10px 5%;
  }
  
  header .logo {
    height: 8vh;
  }
  
  header nav {
    gap: 15px;
  }
  
  /* Hero */
  .hero-inner h1 {
    font-size: 2.8rem;
    white-space: normal;
  }
  
  .hero-inner h3 {
    font-size: 2rem;
  }
  
  .hero-inner p {
    font-size: 1.3rem;
  }
  
  .hero-inner form {
    width: 90%;
    max-width: 450px;
    padding: 20px 25px;
  }
  
  /* Sistema Solar */
  .sistema-solar-body {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .sistema-solar-body .text {
    max-width: 100%;
  }
  
  .sistema-solar ul li {
    gap: 20px;
  }
  
  /* Depoimentos */
  .depoimentos {
    padding: 30px 5%;
  }
  
  .depoimentos .container {
    flex-direction: column;
    gap: 30px;
  }
  
  /* Voce Recebe */
  .voce-recebe .itens {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (até 767px) */
@media screen and (max-width: 767px) {
  /* Header */
  header {
    padding: 10px 5%;
  }
  
  header .logo {
    height: 6vh;
  }
  
  /* Hero */
  .hero-inner {
    width: 90%;
  }
  
  .hero-inner h1 {
    font-size: 2rem;
  }
  
  .hero-inner h3 {
    font-size: 1.5rem;
  }
  
  .hero-inner p {
    font-size: 1rem;
  }
  
  .hero-inner form {
    padding: 15px;
  }
  
  /* Conta Luz */
  .conta-luz h2 {
    font-size: 1.8rem;
    white-space: normal;
  }
  
  .conta-luz p {
    font-size: 1.2rem;
  }
  
  .conta-luz button {
    font-size: 1.2rem;
    padding: 15px;
  }
  
  /* Sistema Solar */
  .sistema-solar > h2 {
    font-size: 1.8rem;
  }
  
  .sistema-solar-body .text {
    max-width: 100%;
  }
  
  .sistema-solar p {
    font-size: 1.2rem;
    margin-left: 0;
    margin-right: 0;
  }
  
  .sistema-solar ul {
    font-size: 1rem;
  }
  
  .sistema-solar button {
    font-size: 1.2rem;
    padding: 15px;
  }
  
  /* Depoimentos */
  .depoimentos .titulo {
    font-size: 1.8rem;
  }
  
  .depoimentos .btn-depoimentos {
    font-size: 1.2rem;
    padding: 15px;
  }
  
  /* Simples Economizar */
  .simples-economizar h2 {
    font-size: 1.8rem;
  }
  
  .simples-economizar button {
    font-size: 1.2rem;
    padding: 15px;
  }
  
  /* Voce Recebe */
  .voce-recebe h2 {
    font-size: 1.8rem;
  }
  
  .voce-recebe .itens {
    grid-template-columns: 1fr;
  }
  
  .voce-recebe .item {
    width: 100%;
  }
  
  .voce-recebe button {
    font-size: 1.2rem;
    padding: 15px;
  }
  
  /* Duvidas */
  .duvidas-titulo {
    font-size: 1.8rem;
  }
  
  .duvidas .faq summary {
    font-size: 1.2rem;
  }
  
  .duvidas .faq p {
    font-size: 1rem;
  }
  
  .duvidas-btn {
    font-size: 1.2rem;
    padding: 15px;
  }
  
  /* Footer */
  footer {
    flex-direction: column;
    padding: 20px 5%;
  }
  
  footer .contato,
  footer .telefone,
  footer .redes {
    flex: 0 0 100%;
    text-align: center;
  }
}

