/* style.css – Gringo Manutenções
  
 
/* VARIÁVEIS */
:root {
  --green:       #1a8f3c;
  --green-dark:  #136130;
  --green-light: #25b04e;
  --green-glow:  rgba(26, 143, 60, 0.18);
  --white:       #ffffff;
  --off-white:   #f4f8f5;
  --gray:        #6b7a72;
  --gray-light:  #e8ede9;
  --text:        #1a2b1e;
  --shadow:      0 4px 24px rgba(0, 0, 0, 0.12);
  --radius:      14px;
  --transition:  0.3s cubic-bezier(.4, 0, .2, 1);
}
 
/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
html { scroll-behavior: smooth; }
 
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
 
/* HEADER */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--green-dark);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  padding: 0 1.2rem;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
 
.logo-icon {
  width: 38px; height: 38px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.logo-icon svg {
  width: 22px; height: 22px;
  fill: white;
}
 
.logo-text { line-height: 1; }
 
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 1px;
  display: block;
}
 
.logo-sub {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 2px;
  text-transform: uppercase;
}
 
nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
 
nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  transition: var(--transition);
}
 
nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}
 
/*HAMBURGUER*/
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
 
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
 
.mobile-menu {
  display: none;
  position: fixed;
  top: 62px; left: 0; right: 0;
  z-index: 99;
  background: var(--green-dark);
  padding: 1rem;
  flex-direction: column;
  gap: 0.3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
 
.mobile-menu.open { display: flex; }
 
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 10px;
  transition: var(--transition);
}
 
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}
 
/* HERO */
.hero {
  min-height: 100svh;
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green) 55%, var(--green-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
 
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
 
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 30px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
 
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
}
 
.hero-badge .dot {
  width: 7px; height: 7px;
  background: #5eff8e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #5eff8e;
}
 
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  color: white;
  line-height: 1.05;
  max-width: 640px;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.25s forwards;
}
 
.hero h1 em {
  font-style: normal;
  color: #a6ffbc;
}
 
.hero p {
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s forwards;
}
 
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.6s 0.55s forwards;
}
 
/* ── BOTÕES //* arrumar isso depois */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
 
.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
 
.btn-whatsapp:hover {
  background: #1fb558;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}
 
.btn-outline {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: white;
}
 
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
 
/*HERO STATS*/
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.7s forwards;
}
 
.stat { text-align: center; }
 
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #a6ffbc;
  line-height: 1;
}
 
.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}
 
/*SECTIONS GENÉRICO*/
section { padding: 4.5rem 1.5rem; }
 
.container {
  max-width: 960px;
  margin: 0 auto;
}
 
.section-tag {
  display: inline-block;
  background: var(--green-glow);
  color: var(--green);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}
 
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
 
.section-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 520px;
}
 
.section-header { margin-bottom: 2.8rem; }
 
/*SERVIÇOS*/
.services { background: var(--off-white); }
 
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.2rem;
}
 
.card {
  background: white;
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: var(--transition);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
 
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
 
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(26, 143, 60, 0.15);
  border-color: var(--green-glow);
}
 
.card:hover::before { transform: scaleX(1); }
 
.card-icon {
  width: 52px; height: 52px;
  background: var(--green-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}
 
.card:hover .card-icon { background: var(--green); }
 
.card-icon svg {
  width: 26px; height: 26px;
  fill: var(--green);
  transition: var(--transition);
}
 
.card:hover .card-icon svg { fill: white; }
 
.card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
 
.card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
}
 
/*SOBRE*/
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
 
.about-visual {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}
 
.about-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
 
.about-visual-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #a6ffbc;
}
 
.about-visual p {
  font-size: 0.92rem;
  opacity: 0.85;
  line-height: 1.6;
}
 
.checklist {
  list-style: none;
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
 
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
}
 
.checklist li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  color: #a6ffbc;
}
 
.about-text p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.97rem;
  margin-bottom: 1rem;
}
 
/*CONTATO*/
.contact { background: var(--off-white); }
 
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
 
.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
 
.contact-card-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: var(--green-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.contact-card-icon svg {
  width: 22px; height: 22px;
  fill: var(--green);
}
 
.contact-card h4 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 3px;
  color: var(--text);
}
 
.contact-card p,
.contact-card a {
  font-size: 0.88rem;
  color: var(--gray);
  text-decoration: none;
  line-height: 1.5;
}
 
.contact-card a:hover { color: var(--green); }
 
/*CTA BLOCK*/
.cta-block {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: white;
  margin-top: 2rem;
}
 
.cta-block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}
 
.cta-block p {
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
 
.btn-whatsapp-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
 
.btn-whatsapp-lg:hover {
  background: #1fb558;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}
 
.btn-whatsapp-lg svg {
  width: 22px; height: 22px;
  fill: white;
}
 
/*FOOTER*/
footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  padding: 1.8rem 1rem;
  font-size: 0.82rem;
  line-height: 1.8;
}
 
footer strong { color: white; }
 
/*ANIMAÇÕES*/
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
 
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
 
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/*RESPONSIVO*/
@media (min-width: 640px) {
  .contact-grid      { grid-template-columns: 1fr 1fr; }
  .about-inner       { grid-template-columns: 1fr 1fr; }
}
 
@media (min-width: 768px) {
  nav            { display: flex; }
  .hamburger     { display: none; }
}
 
@media (max-width: 767px) {
  nav            { display: none; }
  .hamburger     { display: flex; }
}