/* Reset e Configurações Gerais */
:root {
  --primary: #2ECC71;
  --primary-dark: #27AE60;
  --secondary: #3498DB;
  --dark: #2C3E50;
  --light: #ECF0F1;
  --gray: #95A5A6;
  --white: #FFFFFF;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 100px; /* Topbar (40px) + Navbar (60px) + Espaço extra */
}

section {
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  color: var(--dark);
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 50px;
}

/* Topbar */
.topbar {
  background: var(--white);
  color: var(--black);
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contacts span {
  margin-right: 20px;
  font-size: 0.9rem;
}

.topbar-contacts i {
  color: var(--primary);
  margin-right: 5px;
}

.topbar-social a {
  color: var(--dark);
  margin-left: 15px;
  transition: color 0.3s;
}

.topbar-social a:hover {
  color: var(--primary);
}

/* Header */

header {
  background: #2ECC71;
  padding: 15px 0;
  position: fixed;
  top: 40px; /* Altura da topbar */
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

/* Navbar Fixa - Versão Corrigida */

nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav ul li a {
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

nav ul li a:hover {
  color: var(--light);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

.nav-btn {
  background: var(--white);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section - Versão Final Ajustada */
.hero {
  background: linear-gradient(to bottom, #2ECC71 50%, white 45%);
  padding: 3vw 0 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: 80vh;
  position: relative;
}

.hero-text {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  height: 80vh;
}

.hero-title {
  font-size: clamp(4rem, 5vw, 6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: clamp(1.5rem, 2.2vw, 3.5rem);
}
.hero-title2 {
  font-size: clamp(4rem, 5vw, 6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: #fff;
}

.hero-top{
  height: 47%;
  display: block;
  justify-content: center;
}

.hero-under{
  height: 55%;
  justify-content: center;
  padding-top: 2.5%;
}
.hero-tagline {
  color: #2c3e50;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  margin-bottom: 0vw;
  font-weight: 600;
  margin-top: 5px;
}

.hero-undertag{
  font-size: clamp(0.6rem, 1rem ,1.8rem);
  margin-bottom: 2%;
}

.hero-cta {
  display: inline-block;
  background: #2ECC71;
  color: white;
  padding: 1.2vw 3.0vw;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  transition: all 0.3s;
  box-shadow: 0 0.5vw 1.5vw rgba(0,0,0,0.2);
  margin-bottom: 4.1vw;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.8vw 2vw rgba(0,0,0,0.3);
}

.hero-image-wrapper {
  position: absolute;
  right: 8%;
  bottom: 0%;
  width: 20%;
  min-width: 150px;
  max-width: 250px;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: auto;
  display:flex;
  transform: translateX(20%);
}

.ambassador-badge {
  position: absolute;
  bottom: 0.2%;
  background: #fff;
  color: #2ECC71;
  padding: 0.6vw 1.5vw;
  border-radius: 60px;
  font-weight: 700;
  text-align: center;
  z-index: 3;
  box-shadow: 0 0.5vw 1.5vw rgba(0,0,0,0.1);
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  margin-bottom: 8%;
}

.ambassador-badge small {
  display: block;
  font-size: 0.7em;
  font-weight: 500;
}

/* Seção Projetos Reais */
.projetos-reais {
  padding: 50px 0;
  background: #f9f9f9;
  display: block;
  height: 100%;
}

.galeria-projetos {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.projeto-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.projeto-item:hover {
  transform: translateY(-10px);
}

.projeto-imagem {
  position: relative;
  aspect-ratio: 4/3;
}

.projeto-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.projeto-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(46, 204, 113, 0.9);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.projeto-item:hover .projeto-overlay {
  transform: translateY(0);
}

.projeto-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 2%;
}

.projeto-overlay p {
  margin: 5px 0;
  font-size: 0.65rem;
}

.cta-projetos {
  text-align: center;
  margin-top: 40px;
}

/* Vantagens Section */
.vantagens {
  padding: 100px 0;
  background: var(--white);
  display: block;
  height: 100%;
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.vantagem-card {
  background: var(--light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
}

.vantagem-card:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
}

.vantagem-card:hover h3,
.vantagem-card:hover p {
  color: var(--white);
}

.vantagem-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  transition: all 0.3s;
}

.vantagem-card:hover .vantagem-icon {
  background: var(--white);
  color: var(--primary);
}

.vantagem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.vantagem-card p {
  color: var(--gray);
}

/* Seção Parceiro Destaque - Versão Aprimorada */

.parceiros{
  height: 100%;
  display: block;
}

.parceiro-destaque {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 60px 40px;
  margin: 2% 0;
}

.parceiro-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  
}

.parceiro-info {
  flex: 1;
  min-width: 50%;
}

.parceiro-info h3 {
  font-size: 2.5rem; /* 40px */
  color: #2c3e50;
  margin-bottom: 30px;
  line-height: 1.2;
}

.parceiro-info h3 span {
  color: #2ECC71;
  font-weight: 700;
}

.parceiro-info p {
  color: #555;
  line-height: 1.8;
  font-size: 1.25rem; /* 20px */
  text-align: left;
  margin-bottom: 30px;
  text-align: justify;
}

.parceiro-logo {
  flex: 1;
  min-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.parceiro-logo img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

/* Seção Parceiros EcoPower */
.parceiros-ecopower {
  text-align: center;
  margin-top: 0%;
}

.parceiros-ecopower h4 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.parceiros-ecopower h4::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #2ECC71;
}

.parceiros-circulos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.parceiro-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}

.circle-img-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #2ECC71;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.circle-img-container:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.circle-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parceiro-circle p {
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 500;
  margin-top: 10px;
}

/* Sobre Section */
.sobre {
  padding: 100px 0;
  background: var(--white);
  display: block;
  height: 100%;
}

.sobre-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.sobre-text {
  flex: 1;
}

.sobre-text p {
  text-align: justify;
  margin-bottom: 20px;
  color: var(--gray);
}

.sobre-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contato Section */
.contato {
  padding: 80px 0;
  background: var(--light);
  display: block;
  height: 100%;
}

.contato-content {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}

.contato-form {
  flex: 1;
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 2%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 2%;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.contato-info {
  flex: 1;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item i {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 20px;
}

.info-item p {
  color: var(--gray);
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 70px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-col p {
  color: var(--gray);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--gray);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
}

.only-desktop {
  display: inline;
}

.only-mobile {
    display: none;
}

/* Responsividade Celular */

@media (max-width: 576px) {

.only-mobile {
    display: inline;
}

  .only-desktop {
    display: none;
  }
  
/* Topbar */

  .topbar {
  display: none;
  }

/* Header */

  body {
    padding-top: 70px !important; /* Ajusta o padding para altura do header */
  }

  header {
    top: 0 !important; /* Header fica no topo absoluto */
    padding: 30px 0 !important;
  }

  header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  }

  .logo img {
  height: 50px;
  }

  nav {
    position: absolute;
    top: 80px;
    width: 70%;
    height: 100vh;
    z-index: 998;
  }


/* Hero Section */
.hero {
  background: linear-gradient(to bottom, #2ECC71 30%, #2ECC71 40%, white 30%, white 100%);
  height: 95vh;
  min-height: -webkit-fill-available;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  height: 100%; /* Ocupa toda a altura do .hero */
  position: relative; /* Permite posicionamento absoluto interno */
}

/* Título e subtítulo na parte verde */
.hero-header {
  padding-top: 10%; /* Ajuste conforme necessário */
}

/* Conteúdo principal na parte branca */
.hero-main-content {
  margin-top: 15%; /* Empurra pra parte branca */
  max-width: 50%; /* Evita que o texto cubra a imagem */
}

/* Ajustes para o texto e CTA */
.hero-tagline, .hero-undertag, .hero-cta-container {
  margin-left: 10%;
}

.hero-title {
    font-size: clamp(2.0rem, 3vw, 2.8rem) !important;
    text-align: center;
    text-transform: none;
    line-height: 1.3;
    padding-top: clamp(15%, 20%, 25%);
  }

.hero-subtitle {
  font-size: clamp(1.0rem, 2.0vw, 1.5rem) !important;
  font-weight: 400;
  color: #fff;
}
.hero-top{
  height: 40%;
  display: block;
  justify-content: center;
}

.hero-under{
  height: clamp(25%, 30%, 50%);
  justify-content: center;
  padding-top: 1.5%;
  margin: 0px 15px 0px 0px;
}
.hero-tagline {
  color: #2c3e50;
  font-size: clamp(1.2rem, 1.3rem, 1.7rem) !important;
  margin-bottom: 5vw;
  font-weight: 600;
  margin-top: 5px;
}

.hero-undertag{
  font-size: clamp(0.5rem, 1rem ,2.0rem);
  margin-bottom: 2%;
  text-align: center;
  margin-bottom: clamp(1vw, 8vw, 10vw);
}

.hero-cta {
  display: inline-block;
  background: #2ECC71;
  color: white;
  padding: 1.2vw 3.0vw;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  transition: all 0.3s;
  box-shadow: 0 0.5vw 1.5vw rgba(0,0,0,0.2);
  margin-bottom: 4.1vw;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.8vw 2vw rgba(0,0,0,0.3);
}

.hero-image {
  width: clamp(100%, 120%, 140%);
  height: auto;
  display:flex;
  transform: translateX(clamp(100%, 140%, 160%));
}

.ambassador-badge {
  position: absolute;
  left: 15%;
  bottom: 5%;
  transform: translateX(clamp(100%, 120%, 140%));
}

  .projetos-grid,
  .vantagens-grid {
    grid-template-columns: 1fr;
  }

  .parceiros-circulos {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .parceiro-circle {
    width: 100%;
  }

  /* ========== SEÇÃO PROJETOS ========== */
/* ========== SEÇÃO PROJETOS REVISADA ========== */
.projetos-reais {
  padding: 60px 0;
  background: #f9f9f9;
}

.projetos-reais .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.projetos-reais .section-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: #2c3e50;
  text-align: center;
  margin-bottom: 15px;
}

.projetos-reais .section-title span {
  color: #2ECC71;
}

.projetos-reais .section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

.galeria-projetos {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.projeto-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 100%;
}

.projeto-imagem {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.projeto-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CORREÇÃO DO EFEITO VERDE - AGORA SEM HOVER NO MOBILE */
.projeto-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(46, 204, 113, 0.9);
  color: white;
  padding: 5px;
  /* Removida a transformação inicial */
}

.projeto-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.projeto-overlay p {
  font-size: 1rem;
  margin: 1px 0;
}

.cta-projetos {
  text-align: center;
  margin-top: 30px;
}

.cta-projetos .btn {
  display: inline-block;
  background: #2ECC71;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.cta-projetos .btn:hover {
  background: #27ae60;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* ========== SEÇÃO SOBRE ========== */
.sobre {
  padding: 60px 0;
  background: white;
}

.sobre .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sobre-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sobre-text {
  order: 1;
}

.sobre-image {
  order: 2;
}

.sobre .section-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.sobre .section-title span {
  color: #2ECC71;
}

.sobre-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.sobre-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

}

/* ========== RESPONSIVIDADE ========== */
@media (min-width: 768px) {
  /* Layout desktop para projetos */
  .galeria-projetos {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Layout desktop para sobre */
  .sobre-content {
    flex-direction: row;
    align-items: center;
  }
  
  .sobre-text {
    flex: 1;
    order: 1;
    text-align: left;
  }
  
  .sobre-text p {
    text-align: left;
  }
  
  .sobre-image {
    flex: 1;
    order: 2;
  }
  
  .sobre .section-title {
    text-align: left;
  }
}

/* EFEITO HOVER APENAS PARA DESKTOP */
@media (hover: hover) and (pointer: fine) {
  .projeto-imagem img {
    transition: transform 0.5s;
  }
  
  .projeto-overlay {
    transform: translateY(100%);
    transition: transform 0.3s;
  }
  
  .projeto-item:hover .projeto-imagem img {
    transform: scale(1.05);
  }
  
  .projeto-item:hover .projeto-overlay {
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  /* Layout desktop grande para projetos */
  .galeria-projetos {
    grid-template-columns: repeat(4, 1fr);
  }
}

  

@media (max-width: 480px) {
  .galeria-projetos {
    grid-template-columns: 1fr;
  }
  
  .projeto-overlay {
    transform: translateY(0);
    background: rgba(46, 204, 113, 0.85);
  }
}

/* Responsividade  Tablets*/

@media (max-width: 992px) {

    .topbar .container {
    flex-direction: column;
    gap: 10px;
  }
  
  .topbar-contacts {
    margin-bottom: 10px;
  }
  
  header {
    top: 80px;
  }
  
  body {
    padding-top: 160px;
  }
  
  nav {
    position: absolute;
    top: 80px;
    left: -100%;
    width: 70%;
    height: 100vh ;
    background: var(--primary);
    flex-direction: column;
    padding: 30px;
    transition: all 0.3s;
    z-index: 998;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 20px;
  }
  
  .menu-toggle {
    display: block;
    z-index: 999;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text h2 {
    font-size: 1.4rem;
  }
  
  .section-title {
    font-size: 2rem;
  }

  .topbar-contacts span {
    font-size: 0.62rem;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-image-wrapper {
    position: relative;
    right: auto;
    bottom: auto;
    width: 40%;
    margin-top: 5vw;
  }
  
  .hero-cta {
    padding: 3vw 8vw;
  }

  .galeria-projetos {
    grid-template-columns: repeat(2, 1fr);
  }

  .parceiro-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .parceiro-info, 
  .parceiro-logo {
    min-width: 100%;
  }
  
  .parceiro-info h3 {
    font-size: 2rem;
  }
  
  .parceiro-info p {
    font-size: 1.1rem;
  }

  .parceiro-destaque {
  border-left: 5px solid #2ECC71;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.1);
  }
  .parceiros-circulos {
    gap: 30px;
  }
  
  .parceiro-circle {
    width: 160px;
  }
  
  .circle-img-container {
    width: 150px;
    height: 150px;
  }
  .parceiro-destaque {
    padding: 40px 30px;
    margin: 60px 0;
  }
  
  .parceiro-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

/* Estilo para o campo numérico */
#consumo-input {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
}

.input-hint {
  display: block;
  color: #666;
  font-size: 0.8rem;
  margin-top: 5px;
}

/* Validação visual */
input:invalid {
  border-color: #e74c3c;
}

/* Garante que os campos mantenham a formatação */
#form-contato input, #form-contato select {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Estilo para o botão durante o envio */
.whatsapp-btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Animações suaves */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.whatsapp-btn {
  animation: pulse 2s infinite;
}