﻿:root {
  --primary: #0a7f55;
  --primary-dark: #055e3e;
  --primary-light: #e4ffef;
  --secondary: #0d2f4f;
  --accent: #d4af37;
  /* Premium Gold */
  --dark: #09131e;
  --text-main: #334155;
  --text-muted: #64748b;
  --surface: #ffffff;
  --background: #f8fafc;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;

  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 20px 40px -5px rgb(10 127 85 / 0.15);
  --shadow-float: 0 30px 60px -10px rgb(0 0 0 / 0.2);

  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.9);

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;

  --container: min(1200px, 92vw);
}

/* =========================================
   RESET & BASE SETUP
========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
}

/* Typography */
h1,
h2,
h3,
h4,
.brand-text {
  font-family: var(--font-display);
  color: var(--secondary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* =========================================
   UTILITIES
========================================= */
.container {
  width: var(--container);
  margin-inline: auto;
}

.container.narrow {
  max-width: 800px;
}

.section-padding {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #20b080 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================
   BACKGROUND EFFECTS (Pure CSS)
========================================= */
.background-effects {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at top left, rgba(10, 127, 85, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 48px;
  border-radius: 50%;
}

.brand-text {
  font-weight: 800;
  font-size: 1.25rem;
}

.brand-highlight {
  color: var(--primary);
}

.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

/* =========================================
   BUTTONS & CTAs
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-weight: 600;
  border: 2px solid transparent;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-primary {
  background: radial-gradient(150% 100% at 50% 0%, #10a36e 0%, var(--primary) 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 4px 12px rgba(10, 127, 85, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: radial-gradient(150% 100% at 50% 0%, #15c184 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(10, 127, 85, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-secondary {
  background: white;
  color: var(--primary-dark);
  border: 1px solid var(--primary-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #e6cb60 100%);
  color: #000;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background: linear-gradient(135deg, #e6cb60 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-outline {
  border-color: var(--text-muted);
  color: var(--secondary);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-block {
  width: 100%;
}

/* Glow effect for main CTA */
.glow-effect {
  position: relative;
}

.glow-effect::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: radial-gradient(circle at 50% 50%, rgba(10, 127, 85, 0.5), transparent 70%);
  z-index: -1;
  border-radius: inherit;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
  opacity: 0.8;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
  padding-top: 8rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 100% at 50% 0%, rgba(200, 245, 220, 0.4) 0%, rgba(248, 250, 252, 1) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%230a7f55' fill-opacity='0.15'/%3E%3C/svg%3E");
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(10, 127, 85, 0.2);
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1.5rem;
}

.hero .lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.trust-indicators {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-weight: 600;
  color: var(--secondary);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item i {
  color: var(--primary);
}

/* Glassmorphism Visuals */
.hero-visual {
  position: relative;
}

.glass-frame {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-float);
  position: relative;
}

.hero-img {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
}

.floating-tr {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating-bl {
  bottom: 15%;
  left: -10%;
  animation-delay: -3s;
}

.floating-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--secondary);
}

.floating-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.icon-gold {
  color: var(--accent);
}

.icon-green {
  color: var(--primary);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* =========================================
   MARQUEE
========================================= */
.bg-light {
  background: white;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  margin-bottom: 2rem;
}

.logo-track {
  display: flex;
  gap: 2rem;
  width: max-content;
}

.logo-track:hover {
  animation-play-state: paused;
}

.track-left {
  animation: scroll-left 30s linear infinite;
}

.track-right {
  animation: scroll-right 30s linear infinite;
}

.logo-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}

.logo-card img {
  height: 40px;
  object-fit: contain;
}

.logo-card:hover {
  transform: scale(1.05);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 1rem));
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(calc(-50% - 1rem));
  }

  100% {
    transform: translateX(0);
  }
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-md);
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

.variant {
  transition: transform 0.5s;
}

.variant:hover {
  transform: translateY(-5px);
}

.about-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.feature-list {
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
}

.check-icon {
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  padding: 4px;
}

/* =========================================
   ADVANTAGES SECTION
========================================= */
.advantages {
  background: linear-gradient(135deg, #022c1d 0%, #0a7f55 100%);
  position: relative;
  color: white;
  overflow: hidden;
}

.advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='1'/%3E%3C/svg%3E");
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.advantages::after {
  content: "";
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.advantages .container {
  position: relative;
  z-index: 1;
}

.advantages .section-title {
  color: white;
}

.advantages .eyebrow {
  color: var(--primary-light);
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.adv-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
}

.adv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 163, 110, 0.2);
}

.adv-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-icon i {
  width: 28px;
  height: 28px;
}

.adv-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.adv-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================================
   PLANS SECTION
========================================= */
.bg-alternate {
  background: #f1f5f9;
}

.caption {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.plan-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid rgba(16, 163, 110, 0.15);
  /* Light green border */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  /* Subtle shadow */
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Create the top-right soft radial gradient */
.plan-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 163, 110, 0.08) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(16, 163, 110, 0.08);
  border-color: rgba(16, 163, 110, 0.3);
}

.highlight-card {
  background: linear-gradient(135deg, #0d2746 0%, #153b66 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(21, 59, 102, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.05);
  transform: translateY(-10px);
}

.highlight-card::before {
  /* Subtle top-right glow for highlight card */
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

/* Modern "Mais Escolhido" Ribbon styled into corner */
.highlight-card::after {
  content: 'Mais Escolhido';
  display: block;
  position: absolute;
  top: 25px;
  right: -35px;
  width: 150px;
  text-align: center;
  background: #dbb334;
  color: #0d2746;
  /* Dark blue matching background */
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.4rem 0;
  transform: rotate(45deg);
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.highlight-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(21, 59, 102, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.highlight-card .plan-icon {
  background: rgba(219, 179, 52, 0.15);
  color: #dbb334;
  border-color: rgba(219, 179, 52, 0.3);
}

.highlight-card h3,
.highlight-card p {
  color: white;
}

.highlight-card .plan-benefits {
  border-color: rgba(255, 255, 255, 0.1);
}

.highlight-card .plan-benefits li {
  color: rgba(255, 255, 255, 0.9);
}

.highlight-card .plan-benefits li::before {
  content: "\2713";
  color: #dbb334;
  /* Gold checkmark */
}

.plan-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.plan-icon i {
  width: 32px;
  height: 32px;
}

.plan-icon.icon-green {
  background: var(--primary-light);
  color: var(--primary);
}

.plan-icon.icon-gold {
  background: rgba(219, 179, 52, 0.15);
  color: #dbb334;
}

.plan-icon.icon-blue {
  background: #0d2f4f;
  color: #ffffff;
}

.plan-icon.icon-purple {
  background: #f3e8ff;
  color: #a855f7;
}


.plan-icon.icon-yellow {
  background: #dbb334;
  color: #102f52;
}

.plan-benefits {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.highlight-card .plan-benefits {
  border-color: rgba(255, 255, 255, 0.1);
}

.plan-benefits li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.plan-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.highlight-card .plan-benefits li::before {
  color: var(--accent);
}

.cta-spacing {
  margin-top: 4rem;
}

/* =========================================
   FAQ
========================================= */
.faq {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #022c1d 0%, #0a7f55 100%);
  color: white;
  padding-bottom: 200px;
}

.faq .section-title {
  color: white;
}

.faq .eyebrow {
  color: var(--primary-light);
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='1'/%3E%3C/svg%3E");
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #4f4f4f;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  color: #4f4f4f;
}

.faq-question[aria-expanded="true"]+.faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

/* =========================================
   CONTACT / FORM
========================================= */
.contact {
  position: relative;
  background: radial-gradient(120% 100% at 50% 0%, rgba(200, 245, 220, 0.4) 0%, rgba(248, 250, 252, 1) 100%);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%230a7f55' fill-opacity='0.15'/%3E%3C/svg%3E");
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.contact .container {
  position: relative;
  z-index: 1;
}

.glass-card-contact {
  margin-top: -240px;
  background: linear-gradient(135deg, #0d2746 0%, #153b66 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), inset 0 0 40px rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  color: white;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.glass-card-contact::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.glass-card-contact .section-title,
.glass-card-contact h2 {
  color: white;
  margin-bottom: 1rem;
}

.glass-card-contact p {
  color: #cbd5e1;
}

.contact-details {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.cd-item-modern {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  text-decoration: none;
}

.cd-item-modern:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 163, 110, 0.3);
}

.cd-item-modern:hover strong {
  color: var(--primary);
}

.cd-icon-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #0a7f55 100%);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(16, 163, 110, 0.3);
}

.cd-item-modern span {
  display: block;
  font-size: 0.85rem;
  color: #94a3b8;
}

.cd-item-modern strong {
  display: block;
  color: white;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.lead-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  color: white;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 127, 85, 0.2);
}

.lead-form select option {
  background: var(--dark);
  color: white;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #022c1d 0%, #0a7f55 100%);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='1'/%3E%3C/svg%3E");
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-logo {
  height: 50px;
}

.footer-logo-large {
  height: 80px !important;
  width: auto !important;
  max-width: none !important;
}

.brand-footer {
  text-decoration: none;
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.brand-footer .brand-text,
.brand-footer .brand-text span {
  color: white;
}

.trust-badge-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 163, 110, 0.1);
  border: 1px solid rgba(16, 163, 110, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-top: 1rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-badge-footer i {
  width: 16px;
  height: 16px;
}

.links-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.links-col ul {
  display: grid;
  gap: 0.75rem;
}

.links-col a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.links-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
}

/* =========================================
   FLOATING WHATSAPP
========================================= */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-float);
  z-index: 1000;
  transition: transform 0.3s;
}

.floating-whatsapp i {
  width: 32px;
  height: 32px;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* =========================================
   ANIMATIONS & REVEALS
========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 {
  transition-delay: 0.1s;
}

.reveal.delay-2 {
  transition-delay: 0.2s;
}

.reveal.delay-3 {
  transition-delay: 0.3s;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {

  .hero-grid,
  .about-grid,
  .adv-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .floating-tr {
    right: 0;
  }

  .floating-bl {
    left: 0;
  }

  .contact-box {
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    /* In a real scenario, implement a hamburger menu logic via JS */
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    margin-bottom: 5px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 6rem;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-indicators {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .floating-card {
    position: static;
    animation: none;
    margin-top: 1rem;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}