/* ============================================
   PROJETO STEM — Premium Stylesheet
   Paleta: Verde STEM + Azul Escuro + Dourado
   ============================================ */

:root {
  --green-primary: #18864B;
  --green-dark:    #0f5c33;
  --green-light:   #1fae62;
  --green-soft:    #e8f5ed;

  --navy:          #0a1e3f;
  --navy-dark:     #061530;
  --navy-light:    #12315f;

  --gold:          #d4a640;
  --gold-dark:     #b8891f;
  --gold-light:    #f0c860;

  --orange:        #f57c2c;
  --orange-dark:   #d66717;

  --white:         #ffffff;
  --off-white:     #fafbfc;
  --light-gray:    #f3f5f8;
  --border:        #e5e8ed;

  --text:          #1a2940;
  --text-muted:    #5b6b82;
  --text-light:    #8a96ab;

  --shadow-sm:     0 2px 8px rgba(10, 30, 63, 0.06);
  --shadow-md:     0 8px 24px rgba(10, 30, 63, 0.08);
  --shadow-lg:     0 20px 50px rgba(10, 30, 63, 0.12);
  --shadow-xl:     0 30px 80px rgba(10, 30, 63, 0.18);
  --shadow-green:  0 10px 30px rgba(24, 134, 75, 0.25);

  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 16px; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* UTILITIES */
.text-highlight { color: var(--green-primary); }
.text-gold { color: var(--gold); }
.hide-mobile { display: inline-flex; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.2px;
  line-height: 1.2;
}
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(24, 134, 75, 0.35);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(212, 166, 64, 0.4);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(212, 166, 64, 0.55); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
  transform: translateY(-3px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-ghost {
  background: var(--green-soft);
  color: var(--green-primary);
}
.btn-ghost:hover { background: var(--green-primary); color: var(--white); }

/* TOP BAR */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.top-bar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar-info span { display: inline-flex; align-items: center; gap: 7px; }
.top-bar-info i { color: var(--gold); }
.top-bar-social { display: flex; gap: 12px; }
.top-bar-social a {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.top-bar-social a:hover { background: var(--green-primary); }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-link { display: block; }
.logo-img { height: 64px; width: auto; object-fit: contain; }

.main-nav ul { display: flex; gap: 8px; }
.main-nav a {
  display: block;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  border-radius: 8px;
}
.main-nav a:hover { color: var(--green-primary); background: var(--green-soft); }

.btn-header { padding: 11px 22px; font-size: 14px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--navy-dark) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(24, 134, 75, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(212, 166, 64, 0.2) 0%, transparent 45%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(24, 134, 75, 0.2);
  border: 1px solid rgba(24, 134, 75, 0.4);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #a8e6c1;
}
.hero-badge i { color: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title .text-highlight {
  color: var(--gold);
  display: inline;
  position: relative;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-cta .btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.hero-cta .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px; }
.stat .stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat > span:not(.stat-number) {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.stat p {
  width: 100%;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  min-height: 480px;
}
.hero-card-main {
  position: relative;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 48px 32px;
  border-radius: var(--radius-xl);
  text-align: center;
  z-index: 1;
}
.hero-logo-wrap {
  width: 280px;
  max-width: 100%;
  background: var(--white);
  border-radius: 24px;
  margin: 0 auto 24px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}
.hero-logo { width: 100%; height: auto; display: block; }
.hero-card-main h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.hero-card-main p {
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

.floating-card {
  position: absolute;
  background: var(--white);
  color: var(--navy);
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.floating-card i {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.floating-card strong { display: block; font-size: 14px; }
.floating-card small { color: var(--text-muted); font-size: 12px; }

.card-1 { top: 10%; left: -8%; animation-delay: 0s; }
.card-2 { top: 50%; right: -10%; animation-delay: 1.5s; }
.card-3 { bottom: 8%; left: -5%; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* URGENCY BAR */
.urgency-bar {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: var(--navy);
  padding: 22px 0;
  font-weight: 600;
}
.urgency-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.urgency-text i { color: var(--orange-dark); margin-right: 8px; animation: pulse 1.5s infinite; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}
.countdown { display: flex; gap: 10px; }
.time-block {
  background: var(--navy);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
  min-width: 54px;
}
.time-block span { font-size: 1.3rem; font-weight: 800; display: block; line-height: 1; }
.time-block small { font-size: 10px; text-transform: uppercase; opacity: 0.8; }

/* SECTIONS */
.section {
  padding: 100px 0;
  position: relative;
}

/* ===== SEPARADORES ELEGANTES ENTRE SECÇÕES ===== */

/* Linha decorativa com ornamento central (átomo) — para secções claras */
.section-separator {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: inherit;
}
.section-separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--border) 20%,
    var(--green-primary) 50%,
    var(--border) 80%,
    transparent 100%);
}
.section-separator-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  background: var(--white);
  color: var(--green-primary);
  border: 2px solid var(--green-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(24, 134, 75, 0.2);
}
.section-separator-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed var(--green-primary);
  opacity: 0.35;
  animation: rotate-slow 18s linear infinite;
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Versão sobre fundo off-white */
.section-separator.on-light .section-separator-icon { background: var(--off-white); }

/* Onda SVG decorativa para transição entre fundos contrastantes */
.wave-divider {
  position: relative;
  width: 100%;
  height: 70px;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  display: block;
}
.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100%;
}
.wave-divider.flip svg { transform: rotate(180deg); }

/* Reduz padding das secções imediatamente adjacentes a wave-dividers */
.urgency-bar + .section { padding-top: 80px; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--green-soft);
  color: var(--green-primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label.light {
  background: rgba(212, 166, 64, 0.18);
  color: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-header.light .section-title { color: var(--white); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}
.section-header.light .section-desc { color: rgba(255,255,255,0.8); }

/* SOBRE */
.sobre { background: var(--off-white); }
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.sobre-image-wrap { position: relative; }
.sobre-visual-card {
  background: linear-gradient(135deg, var(--green-soft), var(--white));
  padding: 50px 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.experience-badge span {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.experience-badge small { font-size: 12px; font-weight: 600; }

.sobre-content .section-label,
.servicos .section-label { margin-bottom: 14px; }

.sobre-content .section-title { text-align: left; margin-bottom: 20px; }
.sobre-content .section-desc { margin: 0 0 32px; text-align: left; }

.sobre-features { margin-bottom: 36px; }
.sobre-features li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.sobre-features li:last-child { border-bottom: none; }
.sobre-features i {
  color: var(--green-primary);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.sobre-features strong { display: block; color: var(--navy); margin-bottom: 4px; }
.sobre-features span { color: var(--text-muted); font-size: 14px; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--green-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-green);
}
.service-card.featured::before { background: var(--gold); transform: scaleX(1); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.2); color: var(--white); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured h3 span { color: var(--gold-light); }
.service-card.featured p { color: rgba(255,255,255,0.85); }
.service-card.featured ul li { color: rgba(255,255,255,0.9); }
.service-card.featured ul li i { color: var(--gold); }
.service-card.featured .card-cta { color: var(--gold); }

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.popular-badge i { margin-right: 4px; }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card h3 span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.service-card p { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
.service-card ul { margin-bottom: 24px; flex-grow: 1; }
.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--text);
}
.service-card ul li i { color: var(--green-primary); margin-top: 4px; flex-shrink: 0; }
.service-card ul li .text-gold { color: var(--gold); }

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-primary);
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.card-cta:hover { gap: 14px; }

.service-card.cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border: none;
}
.service-card.cta-card::before { display: none; }
.service-card.cta-card .service-icon {
  background: rgba(212, 166, 64, 0.2);
  color: var(--gold);
}
.service-card.cta-card h3 { color: var(--white); }
.service-card.cta-card h3 span { color: var(--gold); }
.service-card.cta-card p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }

/* PRICING */
.precos { background: var(--off-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.03);
}
.pricing-card.popular h3 { color: var(--white); }
.pricing-card.popular .price { color: var(--gold); }
.pricing-card.popular ul li { color: rgba(255,255,255,0.9); }
.pricing-card.popular ul li i { color: var(--gold); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.pricing-head { margin-bottom: 20px; }
.pricing-head i {
  font-size: 36px;
  color: var(--green-primary);
  margin-bottom: 12px;
}
.pricing-card.popular .pricing-head i { color: var(--gold); }
.pricing-head h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
}

.price {
  font-family: var(--font-display);
  color: var(--green-primary);
  margin-bottom: 24px;
  line-height: 1;
}
.price .currency { font-size: 1.1rem; font-weight: 600; vertical-align: top; margin-right: 4px; }
.price .amount { font-size: 3rem; font-weight: 800; }
.price .period { font-size: 0.9rem; color: var(--text-muted); margin-left: 4px; font-weight: 500; }
.pricing-card.popular .price .period { color: rgba(255,255,255,0.7); }

.pricing-card ul { margin-bottom: 28px; text-align: left; flex-grow: 1; }
.pricing-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
}
.pricing-card ul li i { color: var(--green-primary); }

.pricing-card.highlight-card {
  background: linear-gradient(135deg, var(--green-soft), var(--white));
  border-color: var(--green-primary);
}

/* DIFERENCIAIS */
.diferenciais {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 70%, var(--navy-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.diferenciais::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(24, 134, 75, 0.3) 0%, transparent 70%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
}
.feature-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  transition: var(--transition);
}
.feature-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: var(--gold);
}
.feature-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.feature-item p { color: rgba(255,255,255,0.75); font-size: 14px; }

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px; right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--green-soft);
  line-height: 1;
  font-weight: 700;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-primary);
}
.stars { color: var(--gold); margin-bottom: 14px; font-size: 14px; }
.stars i { margin-right: 2px; }
.testimonial-card p {
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 15px; }
.testimonial-author small { color: var(--text-muted); font-size: 13px; }

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 166, 64, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(10, 30, 63, 0.3) 0%, transparent 40%);
}
.cta-final-inner { position: relative; max-width: 800px; margin: 0 auto; }
.cta-final .section-label {
  background: rgba(212, 166, 64, 0.2);
  color: var(--gold-light);
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-final p { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 36px; }
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.trust-badges {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
}
.trust-badges i { color: var(--gold); }

/* CONTACTOS */
.contactos-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
a.contact-card:hover {
  background: var(--green-soft);
  border-color: var(--green-primary);
  transform: translateX(6px);
}
.contact-card i {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--green-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-card strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.contact-card span { color: var(--text-muted); font-size: 14px; }

.contact-form {
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form > p { color: var(--text-muted); margin-bottom: 24px; font-size: 14px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  transition: var(--transition);
  margin-bottom: 14px;
}
.contact-form .form-row input { margin-bottom: 0; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 4px rgba(24, 134, 75, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-note {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}
.form-note i { color: var(--green-primary); margin-right: 4px; }

/* FOOTER */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo-box {
  background: var(--white);
  display: inline-block;
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.footer-logo-box img { margin-bottom: 0 !important; display: block; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-col p em { color: var(--gold); font-style: italic; }
.footer-col ul li { padding: 6px 0; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-col ul a:hover { color: var(--gold); padding-left: 6px; }

.footer-contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 6px 0;
}
.footer-contacts i { color: var(--gold); width: 18px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
}
.footer-social a:hover { background: var(--green-primary); transform: translateY(-3px); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; margin: 0; }
.footer-bottom strong { color: var(--gold); }
.footer-tag {
  color: var(--gold) !important;
  font-style: italic;
  letter-spacing: 1.5px;
  font-size: 12px !important;
  text-transform: uppercase;
  font-weight: 600;
}

/* FLOATING BUTTONS */
.float-whatsapp, .float-call {
  position: fixed;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.float-whatsapp {
  bottom: 22px;
  background: #25d366;
  animation: wa-pulse 2s infinite;
}
.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  z-index: -1;
  animation: wa-ring 2s infinite;
}
.float-call {
  bottom: 95px;
  background: var(--navy);
  font-size: 22px;
}
.float-whatsapp:hover, .float-call:hover {
  transform: scale(1.1);
}
.float-whatsapp.shake { animation: shake 0.6s; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 15px 35px rgba(37, 211, 102, 0.8); }
}
@keyframes wa-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes shake {
  0%, 100% { transform: rotate(0); }
  20%, 60% { transform: rotate(-15deg); }
  40%, 80% { transform: rotate(15deg); }
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--white);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--white);
}
.float-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 420px; max-width: 460px; margin: 0 auto; }
  .sobre-inner { grid-template-columns: 1fr; gap: 60px; }
  .contactos-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-card.popular { transform: none; }
}

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .top-bar { font-size: 12px; padding: 8px 0; }
  .top-bar-info { gap: 14px; }

  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    padding: 80px 28px 28px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right 0.35s ease;
    overflow-y: auto;
    z-index: 99;
  }
  .main-nav.active { right: 0; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 14px 18px; font-size: 16px; border-radius: 10px; }

  .btn-header { display: none; }
  .menu-toggle { display: flex; }
  .logo-img { height: 50px; }

  .section { padding: 70px 0; }
  .hero { padding: 50px 0 70px; }

  .hero-stats { grid-template-columns: 1fr; gap: 16px; padding-top: 20px; }
  .hero-stats .stat { justify-content: center; text-align: center; }

  .urgency-inner { flex-direction: column; text-align: center; }
  .countdown { flex-wrap: wrap; justify-content: center; }

  .experience-badge { right: 12px; bottom: -20px; padding: 16px 20px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 22px; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-contacts li { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .cta-buttons .btn { width: 100%; }

  .float-whatsapp { width: 56px; height: 56px; font-size: 24px; bottom: 18px; right: 18px; }
  .float-call { width: 50px; height: 50px; font-size: 18px; bottom: 85px; right: 21px; }
  .whatsapp-tooltip { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-card-main { padding: 36px 22px; }
  .hero-logo-wrap { width: 140px; height: 140px; }
  .hero-logo { width: 110px; }
  .card-1, .card-2, .card-3 { display: none; }
  .service-card { padding: 28px 22px; }
  .time-block { min-width: 48px; padding: 6px 10px; }
  .time-block span { font-size: 1.1rem; }
  .btn { padding: 12px 24px; font-size: 14px; }
  .btn-lg { padding: 15px 28px; font-size: 15px; }
}
