:root {
  --green-500: #1E9E53;
  --green-600: #148343;
  --green-700: #0F6F38;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-100: #F4F6F8;
  --white: #ffffff;
  --max-width: 1200px;
  --radius: 18px;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--gray-900);
  background-color: var(--white);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

i[class*="fa-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
}

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(17, 24, 39, 0.08);
  transition: var(--transition);
}

.top-bar {
  background-color: var(--green-600);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.4rem 0;
}

.top-bar-content {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s ease;
}

.top-bar a:hover {
  opacity: 0.8;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.nav-logo img {
  height: 62px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-weight: 500;
}

.nav-links a {
  color: var(--gray-700);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 0;
  background: var(--green-500);
  bottom: -8px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-600);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(30, 158, 83, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(20, 131, 67, 0.33);
}

.nav-cta:hover::after {
  opacity: 1;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-900);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(30, 158, 83, 0.35), transparent 60%),
              radial-gradient(circle at bottom right, rgba(20, 131, 67, 0.45), transparent 60%);
  animation: gradientMove 18s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes gradientMove {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(6deg) scale(1.05); }
  100% { transform: rotate(0deg) scale(1); }
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 4rem;
  padding: 0rem 0 2rem;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(30, 158, 83, 0.12);
  color: var(--green-700);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  gap: 0.5rem;
  margin-bottom: 1rem;
  animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin: 0 0 1rem;
  color: var(--gray-900);
  line-height: 1.15;
}

.hero h1 span {
  color: var(--green-600);
  position: relative;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 0.55rem;
  background: rgba(30, 158, 83, 0.2);
  border-radius: 999px;
  z-index: -1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin: 0 0 1.8rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary,
.btn-secondary,
.cta-phone {
  position: relative;
  isolation: isolate;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border-radius: 14px;
  color: var(--white);
  font-weight: 600;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(30, 158, 83, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -110%;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.45), rgba(255,255,255,0.05));
  transform: skewX(-12deg);
  transition: left 0.45s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(20, 131, 67, 0.4);
}

.btn-primary:hover::after {
  left: 110%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid rgba(30, 158, 83, 0.35);
  color: var(--green-600);
  background-color: rgba(30, 158, 83, 0.08);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-secondary:hover {
  background-color: rgba(30, 158, 83, 0.16);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15,111,56,0.12);
}

.hero-trust {
  display: flex;
  gap: 1.3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-700);
  font-size: 0.92rem;
  background: rgba(30, 158, 83, 0.1);
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item i {
  color: var(--green-600);
  font-size: 1.15rem;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(30, 158, 83, 0.15);
}

.hero-visual img {
  opacity: 0.75;
}
.hero-visual {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
  animation: float 6s ease-in-out infinite;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 111, 56, 0.0), rgba(15, 111, 56, 0.18));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-visual:hover::after {
  opacity: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-visual:hover img {
  transform: scale(1.05);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* Stats */
.stats {
  margin-top: -3rem;
  position: relative;
  z-index: 5;
}

.stats-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(15, 111, 56, 0.18);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}

.stat {
  text-align: center;
  position: relative;
  padding: 0.5rem 0;
}

.stat::after {
  content: '';
  position: absolute;
  right: -1.25rem;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(30,158,83,0.3), transparent);
}

.stat:last-child::after {
  display: none;
}

.stat h3 {
  margin: 0;
  font-size: 2rem;
  color: var(--green-600);
}

.stat span {
  display: block;
  color: var(--gray-700);
  margin-top: 0.4rem;
}

section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background-color: rgba(30, 158, 83, 0.12);
  color: var(--green-700);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(30, 158, 83, 0.0); }
  50% { box-shadow: 0 0 0 12px rgba(30, 158, 83, 0.12); }
}

.section-title h2 {
  margin-top: 1.2rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--gray-900);
  max-width: 720px;
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: 2rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.1rem;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 60%;
  height: 60%;
  background: rgba(30, 158, 83, 0.1);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,158,83,0.06), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 44px rgba(15, 111, 56, 0.18);
}

.service-card:hover::before {
  transform: scale(1.5);
}

.service-card:hover::after {
  opacity: 1;
}

.service-media {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.service-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-media::after {
  opacity: 1;
}

.service-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.08);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(30, 158, 83, 0.12);
  color: var(--green-600);
  font-size: 1.4rem;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-6px) rotate(-6deg);
  background: linear-gradient(135deg, rgba(30, 158, 83, 0.2), rgba(30, 158, 83, 0.35));
  color: var(--white);
}

.service-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--gray-900);
}

.service-card p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* About */
.about {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(17, 24, 39, 0.16);
  position: relative;
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px dashed rgba(30, 158, 83, 0.4);
  border-radius: 24px;
  animation: borderPulse 6s linear infinite;
}

@keyframes borderPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.about-img:hover img {
  transform: scale(1.04);
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-thumb {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-thumb:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(17,24,39,0.18);
}

.about-thumb:hover img {
  transform: scale(1.08);
}

.about-content h3 {
  font-size: 2.1rem;
  margin: 0 0 1rem;
  color: var(--gray-900);
}

.about-content p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.about-features {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2.2rem;
}

.about-feature {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: rgba(30, 158, 83, 0.08);
  padding: 0.9rem 1rem;
  border-radius: 16px;
  color: var(--gray-700);
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature i {
  color: var(--green-600);
  margin-top: 0.25rem;
}

.about-feature:hover {
  transform: translateX(6px);
  box-shadow: 0 16px 32px rgba(15,111,56,0.12);
}

/* Process */
.process {
  background: var(--gray-100);
}

.process-steps {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.process-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,158,83,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 38px rgba(15,111,56,0.14);
}

.process-card:hover::after {
  opacity: 1;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: rgba(30, 158, 83, 0.12);
  color: var(--green-600);
  font-weight: 600;
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.process-card:hover span {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
}

/* Testimonials */
.testimonials {
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(30, 158, 83, 0.08), transparent 65%);
  z-index: 0;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.1);
  display: grid;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(17, 24, 39, 0.16);
}

.testimonial-card::after {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.8rem;
  color: rgba(30, 158, 83, 0.08);
  transition: transform 0.35s ease;
}

.testimonial-card:hover::after {
  transform: scale(1.12) rotate(-5deg);
}

.testimonial-rating {
  display: inline-flex;
  gap: 0.3rem;
  color: #FACC15;
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(15, 111, 56, 0.94)),
              url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--white);
  border-radius: 28px;
  padding: clamp(3rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(15,111,56,0.28);
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 158, 83, 0.20), rgba(15, 111, 56, 0.55));
  mix-blend-mode: screen;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.3rem;
  max-width: 680px;
}

.cta-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  color: var(--white);
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cta-phone:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-3px);
}

/* FAQ */
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.faq-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.faq-card details {
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  transition: background 0.3s ease;
}

.faq-card p {
  padding: 0px 20px 0px 20px;
}

.faq-card details[open] {
  background: rgba(30, 158, 83, 0.05);
}

.faq-card details:last-of-type {
  border-bottom: none;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary i {
  transition: transform 0.3s ease;
  color: var(--green-600);
}

.faq-card details[open] summary i {
  transform: rotate(180deg);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.contact-info {
  display: grid;
  gap: 1.6rem;
}

.info-card {
  background: rgba(30, 158, 83, 0.08);
  padding: 1.5rem;
  border-radius: 20px;
  display: grid;
  gap: 0.8rem;
}

.info-card h3 {
  margin: 0;
  color: var(--green-600);
}

.info-card a {
  color: var(--gray-900);
  font-weight: 500;
  word-break: break-word;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  display: grid;
  gap: 1.2rem;

  /* >>> FIX 1: permite que o grid item encolha sem gerar overflow */
  min-width: 0;
}

.contact-form h3 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--gray-900);
}

.form-group {
  display: grid;
  gap: 0.1rem;

  /* >>> FIX 2: impede que o wrapper force largura intrínseca */
  min-width: 0;
}

.form-group label {
  font-weight: 500;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: var(--gray-100);
  transition: border 0.2s ease, box-shadow 0.2s ease;

  /* >>> FIX 3: controles ocupam a coluna e podem encolher */
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(30, 158, 83, 0.15);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* Footer */
footer {
  background: #0b1f14;
  color: rgba(255, 255, 255, 0.9);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer-logo img {
  max-width: 150px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact a {
  color: inherit;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  box-shadow: 0 16px 32px rgba(30, 158, 83, 0.4);
  transition: transform 0.25s ease;
}

.floating-cta:hover {
  transform: translateY(-4px);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    gap: 0.8rem;
  }
  .nav-links {
    position: fixed;
    inset: 0;
    background-color: rgba(17, 24, 39, 0.95);
    color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    font-size: 1.2rem;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a::after {
    background: var(--white);
    bottom: -12px;
  }
  .nav-links a,
  .nav-cta {
    color: var(--white);
  }
  .nav-cta {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }
  .hamburger {
    display: block;
  }
  .stats-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
    padding: 1.5rem;
  }
  .stat::after {
    display: none;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 4rem 0;
  }
  .cta-section {
    padding: 3rem 2rem;
  }
  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 0.85rem 1.2rem;
  }
}

@media (max-width: 540px) {
  .stats-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-form {
    padding: 2rem;
  }
  .nav-logo img {
    height: 46px;
  }
  .about-gallery {
    grid-template-columns: 1fr;
  }
  .service-media img {
    height: 200px;
  }
}