/* ============================================
   SEOSP - Agência de Marketing Digital
   CSS Principal — v2.0
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #1A1A2E; background: #fff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* === CSS VARIABLES === */
:root {
  --navy: #1B3A6B;
  --navy-dark: #0D1B2A;
  --navy-mid: #162E57;
  --lime: #8DC63F;
  --lime-dark: #6FA832;
  --lime-light: #A4D95A;
  --white: #FFFFFF;
  --gray-light: #F4F6F9;
  --gray: #E8ECF0;
  --gray-mid: #CBD5E0;
  --text: #1A1A2E;
  --text-muted: #64748B;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-lime: 0 4px 24px rgba(141,198,63,0.35);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.3s ease;
  --container: 1200px;
}

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 3rem; }
.text-lime { color: var(--lime); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

/* === LAYOUT === */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--lime); color: var(--navy-dark); border-color: var(--lime); }
.btn-primary:hover { background: var(--lime-dark); border-color: var(--lime-dark); transform: translateY(-2px); box-shadow: var(--shadow-lime); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-secondary:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.875rem; }
.btn-whatsapp-green { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp-green:hover { background: #1DA851; border-color: #1DA851; transform: translateY(-2px); }

/* === HEADER / NAVBAR === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,42,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(141,198,63,0.12);
  transition: var(--transition);
}
.header.scrolled { background: rgba(13,27,42,0.99); box-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; max-width: 1400px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo svg { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { color: rgba(255,255,255,0.82); font-weight: 500; font-size: 0.93rem; padding: 0.5rem 0.875rem; border-radius: var(--radius-sm); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--lime); background: rgba(141,198,63,0.1); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 0.75rem); left: 0;
  background: var(--navy-dark); border: 1px solid rgba(141,198,63,0.2);
  border-radius: var(--radius-md); padding: 0.5rem; min-width: 230px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: var(--transition); box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.75) !important; font-size: 0.88rem; width: 100%;
}
.nav-dropdown-menu a:hover { color: var(--lime) !important; background: rgba(141,198,63,0.1) !important; }
.nav-dropdown-menu a svg { width: 16px; height: 16px; color: var(--lime); flex-shrink: 0; }
.nav-cta { display: flex; align-items: center; gap: 0.875rem; }
.btn-nav-wp { background: #25D366; color: var(--white) !important; border: none; padding: 0.6rem 1.25rem; border-radius: 50px; font-weight: 600; font-size: 0.88rem; display: flex; align-items: center; gap: 0.4rem; transition: var(--transition); }
.btn-nav-wp:hover { background: #1DA851 !important; transform: translateY(-1px); }
.btn-nav-wp svg { width: 18px; height: 18px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; background: #0f1e30; padding: 0.5rem 1.5rem 1.5rem; border-top: 1px solid rgba(141,198,63,0.12); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.8); font-weight: 500; padding: 0.875rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: var(--transition); }
.mobile-menu a:hover { color: var(--lime); }
.mobile-menu a svg { width: 18px; height: 18px; color: var(--lime); flex-shrink: 0; }
.mobile-menu .mobile-cta { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-menu .mobile-cta .btn { justify-content: center; width: 100%; }

/* === HERO === */
.hero {
  position: relative; min-height: 100vh;
  background: var(--navy-dark);
  display: flex; align-items: center;
  overflow: hidden; padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(141,198,63,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(27,58,107,0.5) 0%, transparent 50%),
    linear-gradient(135deg, #0D1B2A 0%, #162E57 60%, #0D1B2A 100%);
}
.hero-banner-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.18; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(141,198,63,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(141,198,63,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding-top: 4rem; padding-bottom: 4rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(141,198,63,0.12); border: 1px solid rgba(141,198,63,0.4); color: var(--lime); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-badge svg { width: 15px; height: 15px; }
.hero-title { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; color: var(--white); line-height: 1.13; margin-bottom: 1.5rem; }
.hero-title .hl { color: var(--lime); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.hero-trust-item svg { color: var(--lime); width: 15px; height: 15px; flex-shrink: 0; }
/* Hero visual cards */
.hero-visual { display: flex; flex-direction: column; gap: 1rem; }
.hero-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(8px); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; color: var(--white); transition: var(--transition); }
.hero-card:hover { border-color: rgba(141,198,63,0.35); transform: translateX(-4px); }
.hero-card-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--lime); margin-bottom: 0.5rem; font-weight: 700; }
.hero-metric { display: flex; align-items: baseline; gap: 0.5rem; }
.hero-metric-val { font-size: 2rem; font-weight: 800; color: var(--lime); line-height: 1; }
.hero-metric-lbl { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.hero-metric-up { font-size: 0.82rem; color: #4ADE80; margin-left: auto; display: flex; align-items: center; gap: 0.2rem; }
.hero-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 0.5rem; }
.hero-stat-num { font-size: 1.5rem; font-weight: 800; color: var(--lime); display: block; }
.hero-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.45); display: block; }
.hero-gp-badge { display: flex; align-items: center; gap: 0.75rem; background: rgba(66,133,244,0.12); border: 1px solid rgba(66,133,244,0.3); border-radius: var(--radius-md); padding: 1rem 1.25rem; }
.hero-gp-dots { display: flex; gap: 4px; }
.hero-gp-dot { width: 12px; height: 12px; border-radius: 50%; }
.hero-gp-text strong { display: block; color: var(--white); font-size: 0.88rem; }
.hero-gp-text span { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

/* === STATS BAR === */
.stats-bar { background: var(--navy); padding: 2.75rem 0; border-top: 3px solid var(--lime); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-icon { width: 44px; height: 44px; background: rgba(141,198,63,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.stat-icon svg { width: 22px; height: 22px; color: var(--lime); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--lime); line-height: 1; display: block; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.72); font-weight: 500; margin-top: 0.25rem; display: block; }

/* === SERVICES === */
.services-section { background: var(--gray-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.25rem 1.75rem;
  text-align: center; border: 2px solid transparent; transition: var(--transition);
  position: relative; overflow: hidden; text-decoration: none; display: block; color: inherit;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--lime); transform: scaleX(0); transition: var(--transition); }
.service-card:hover { border-color: var(--lime); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 68px; height: 68px; background: linear-gradient(135deg, rgba(27,58,107,0.08), rgba(141,198,63,0.12)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; transition: var(--transition); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--navy), var(--lime-dark)); }
.service-icon svg { width: 32px; height: 32px; color: var(--navy); transition: var(--transition); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }
.service-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--lime-dark); font-weight: 600; font-size: 0.88rem; transition: var(--transition); }
.service-card:hover .service-link { gap: 0.75rem; }
.service-link svg { width: 16px; height: 16px; }

/* === GOOGLE PARTNERS === */
.gp-section { background: var(--navy-dark); padding: 5rem 0; }
.gp-grid { display: grid; grid-template-columns: 280px 1fr; gap: 5rem; align-items: center; }
.gp-badge-wrap { text-align: center; }
.gp-badge-ring {
  width: 200px; height: 200px; margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: conic-gradient(#4285F4 0deg, #34A853 90deg, #FBBC04 180deg, #EA4335 270deg, #4285F4 360deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(66,133,244,0.25);
  position: relative;
}
.gp-badge-ring::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; background: inherit; opacity: 0.2; filter: blur(12px); }
.gp-badge-inner {
  background: var(--navy-dark); border-radius: 50%;
  width: 174px; height: 174px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  border: 2px solid rgba(255,255,255,0.06);
}
.gp-g { font-size: 2rem; font-weight: 900; background: linear-gradient(90deg,#4285F4,#EA4335,#FBBC04,#34A853); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gp-lbl { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; }
.gp-partners-lbl { font-size: 0.8rem; font-weight: 700; color: #4285F4; letter-spacing: 0.5px; }
.gp-badge-caption { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.gp-info h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 1rem; }
.gp-info h2 span { color: var(--lime); }
.gp-info p { color: rgba(255,255,255,0.68); line-height: 1.75; margin-bottom: 1.75rem; font-size: 1rem; }
.gp-perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
.gp-perk { display: flex; align-items: center; gap: 0.625rem; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.gp-perk svg { width: 18px; height: 18px; color: var(--lime); flex-shrink: 0; }

/* === WHY SEOSP === */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.why-card { padding: 2rem; border-radius: var(--radius-md); border: 1px solid var(--gray); transition: var(--transition); }
.why-card:hover { border-color: var(--lime); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-ico { width: 52px; height: 52px; background: linear-gradient(135deg, var(--navy), #2A5298); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.why-ico svg { width: 26px; height: 26px; color: var(--lime); }
.why-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* === AGENTES DE IA === */
.ai-section { background: linear-gradient(135deg, var(--navy-dark) 0%, #162E57 50%, var(--navy-dark) 100%); position: relative; overflow: hidden; }
.ai-section::before { content: ''; position: absolute; top: -100px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(141,198,63,0.08) 0%, transparent 70%); pointer-events: none; }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 2; }
.ai-new { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(141,198,63,0.15); border: 1px solid var(--lime); color: var(--lime); padding: 0.3rem 0.875rem; border-radius: 50px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; }
.ai-grid h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); margin-bottom: 1.25rem; line-height: 1.2; }
.ai-grid h2 span { color: var(--lime); }
.ai-grid p { color: rgba(255,255,255,0.68); line-height: 1.75; margin-bottom: 1.5rem; font-size: 1rem; }
.ai-feats { display: grid; gap: 0.625rem; margin-bottom: 2rem; }
.ai-feat { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.8); font-size: 0.93rem; }
.ai-dot { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; flex-shrink: 0; }
.ai-visual { background: rgba(255,255,255,0.04); border: 1px solid rgba(141,198,63,0.18); border-radius: var(--radius-xl); padding: 2rem; }
.ai-chat { display: flex; flex-direction: column; gap: 1rem; }
.ai-msg { display: flex; gap: 0.75rem; align-items: flex-start; }
.ai-msg.right { flex-direction: row-reverse; }
.ai-av { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.72rem; font-weight: 700; }
.ai-av.bot { background: var(--lime); color: var(--navy-dark); }
.ai-av.usr { background: var(--navy); border: 2px solid rgba(255,255,255,0.2); color: var(--white); font-size: 0.65rem; }
.ai-bub { padding: 0.75rem 1rem; border-radius: var(--radius-md); font-size: 0.82rem; max-width: 240px; line-height: 1.5; }
.ai-bub.bot { background: rgba(141,198,63,0.12); border: 1px solid rgba(141,198,63,0.25); color: var(--white); border-top-left-radius: 4px; }
.ai-bub.usr { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); border-top-right-radius: 4px; }
.ai-typing { display: flex; gap: 4px; align-items: center; padding: 0 0.25rem; }
.ai-typing span { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; animation: blink 1.4s infinite; }
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%,60%,100% { transform:translateY(0); opacity:0.4; } 30% { transform:translateY(-5px); opacity:1; } }

/* === NICHES === */
.niches-section { background: var(--gray-light); }
.niches-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.niche-item { background: var(--white); border-radius: var(--radius-md); padding: 1.5rem 1rem; text-align: center; border: 1px solid var(--gray); transition: var(--transition); cursor: default; }
.niche-item:hover { border-color: var(--lime); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.niche-emoji { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.niche-name { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; display: block; }

/* === RESULTS === */
.results-section { background: var(--white); }
.results-disclaimer { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 3rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.results-disclaimer span { color: var(--navy); font-weight: 600; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.result-card { background: var(--gray-light); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray); transition: var(--transition); }
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--lime); }
.result-img { width: 100%; height: 200px; background: linear-gradient(135deg, var(--navy) 0%, #2A5298 100%); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.result-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.result-ph { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.result-ph svg { width: 40px; height: 40px; color: rgba(255,255,255,0.25); }
.result-ph span { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-align: center; padding: 0 1rem; }
.result-mets { display: flex; gap: 0.625rem; position: absolute; bottom: 0.875rem; left: 0.875rem; right: 0.875rem; }
.result-met { background: rgba(0,0,0,0.65); backdrop-filter: blur(6px); border: 1px solid rgba(141,198,63,0.4); border-radius: var(--radius-sm); padding: 0.4rem 0.625rem; flex: 1; text-align: center; }
.result-met-v { display: block; font-size: 1.05rem; font-weight: 800; color: var(--lime); line-height: 1; }
.result-met-l { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.result-confidential { position: absolute; top: 0.75rem; right: 0.75rem; background: rgba(0,0,0,0.6); color: rgba(255,255,255,0.55); padding: 0.2rem 0.6rem; border-radius: 50px; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.result-body { padding: 1.25rem; }
.result-tag { display: inline-block; background: rgba(27,58,107,0.1); color: var(--navy); padding: 0.2rem 0.75rem; border-radius: 50px; font-size: 0.72rem; font-weight: 600; margin-bottom: 0.5rem; }
.result-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* === TESTIMONIALS === */
.testimonials-section { background: var(--navy-dark); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.55); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); }
.testi-card:hover { border-color: rgba(141,198,63,0.35); transform: translateY(-4px); background: rgba(255,255,255,0.06); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testi-stars svg { width: 17px; height: 17px; color: #FFB800; }
.testi-text { color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.72; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.875rem; }
.testi-av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--lime)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); font-size: 1rem; flex-shrink: 0; }
.testi-name { display: block; color: var(--white); font-size: 0.88rem; font-weight: 600; }
.testi-role { color: var(--lime); font-size: 0.78rem; display: block; }

/* === CTA FINAL === */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, #2A5298 50%, var(--navy) 100%); text-align: center; padding: 6rem 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(141,198,63,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(141,198,63,0.04) 1px, transparent 1px); background-size: 44px 44px; pointer-events: none; }
.cta-inner { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 1rem; }
.cta-section h2 span { color: var(--lime); }
.cta-section p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cta-form-row { display: flex; gap: 0.875rem; max-width: 480px; margin: 0 auto 1rem; }
.cta-input { flex: 1; padding: 0.875rem 1.25rem; border-radius: 50px; border: 2px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: var(--white); font-size: 0.95rem; outline: none; transition: var(--transition); }
.cta-input::placeholder { color: rgba(255,255,255,0.45); }
.cta-input:focus { border-color: var(--lime); background: rgba(255,255,255,0.15); }
.cta-note { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.cta-divider { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,0.3); font-size: 0.82rem; max-width: 340px; margin: 1.5rem auto; }
.cta-divider::before, .cta-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.15); }

/* === FOOTER === */
.footer { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.04); padding: 4.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-logo img, .footer-logo svg { height: 42px; width: auto; margin-bottom: 1.1rem; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.72; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.625rem; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); transition: var(--transition); }
.social-btn:hover { background: var(--lime); border-color: var(--lime); color: var(--navy-dark); }
.social-btn svg { width: 17px; height: 17px; }
.footer-heading { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--lime); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.52); font-size: 0.875rem; transition: var(--transition); display: flex; align-items: center; gap: 0.35rem; }
.footer-links a:hover { color: var(--lime); padding-left: 0.25rem; }
.footer-links a svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--lime); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item span, .footer-contact-item a { color: rgba(255,255,255,0.52); font-size: 0.875rem; line-height: 1.5; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); font-size: 0.8rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--lime); }

/* === WHATSAPP FLOAT === */
.wp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; align-items: center; gap: 0.75rem;
  background: #25D366; color: var(--white);
  padding: 0.875rem 1.5rem; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition); animation: wpPulse 2.5s infinite;
}
.wp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wp-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 32px rgba(37,211,102,0.55); animation: none; }
@keyframes wpPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); } }

/* === PAGE HERO (subpages) === */
.page-hero { background: var(--navy-dark); padding: 5.5rem 0 4rem; margin-top: 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(141,198,63,0.07) 0%, transparent 60%), linear-gradient(135deg, #0D1B2A, #162E57, #0D1B2A); }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(141,198,63,0.12); border: 1px solid rgba(141,198,63,0.35); color: var(--lime); padding: 0.35rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1.25rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1.25rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.page-hero h1 span { color: var(--lime); }
.page-hero p { color: rgba(255,255,255,0.68); font-size: 1.08rem; max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.75; }

/* === BREADCRUMB === */
.breadcrumb { background: var(--navy-dark); padding: 0.625rem 0; border-bottom: 1px solid rgba(141,198,63,0.15); margin-top: 70px; }
.breadcrumb + .page-hero { margin-top: 0; }
.breadcrumb-list { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; list-style: none; }
.breadcrumb-list a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb-list a:hover { color: var(--lime); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }
.breadcrumb-list li:last-child { color: var(--lime); font-weight: 600; }

/* === GRIDS DE SERVIÇOS === */
.svc-cards-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.svc-four-col-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* === PROCESS === */
.process-section { background: var(--gray-light); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 36px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--lime) 0%, rgba(141,198,63,0.2) 100%); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num { width: 72px; height: 72px; background: var(--navy); border: 3px solid var(--lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.4rem; font-weight: 800; color: var(--lime); }
.process-step h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* === INCLUDES LIST === */
.includes-section { background: var(--white); }
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
.include-item { display: flex; align-items: center; gap: 0.875rem; padding: 1.1rem 1.25rem; background: var(--gray-light); border-radius: var(--radius-md); border: 1px solid var(--gray); transition: var(--transition); }
.include-item:hover { border-color: var(--lime); background: rgba(141,198,63,0.04); }
.include-chk { width: 26px; height: 26px; background: var(--lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.include-chk svg { width: 14px; height: 14px; color: var(--white); }
.include-item span { font-weight: 500; color: var(--navy); font-size: 0.92rem; }

/* === FAQ === */
.faq-section { background: var(--gray-light); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--gray); border-radius: var(--radius-md); overflow: hidden; background: var(--white); transition: border-color 0.2s; }
.faq-item.open { border-color: var(--lime); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.5rem; cursor: pointer; gap: 1rem; transition: background 0.2s; }
.faq-q:hover { background: var(--gray-light); }
.faq-q h3 { font-size: 0.97rem; color: var(--navy); font-weight: 600; }
.faq-ico { width: 24px; height: 24px; background: var(--gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); color: var(--navy); }
.faq-item.open .faq-ico { background: var(--lime); color: var(--white); transform: rotate(45deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-ans-inner { padding: 0 1.5rem 1.25rem; color: var(--text-muted); font-size: 0.93rem; line-height: 1.72; }
.faq-item.open .faq-ans { max-height: 400px; }

/* === CONTACT PAGE === */
.contact-section { background: var(--gray-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: 2rem; color: var(--navy); margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); line-height: 1.72; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-ico { width: 44px; height: 44px; background: var(--navy); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-ico svg { width: 22px; height: 22px; color: var(--lime); }
.contact-item-txt strong { display: block; font-size: 0.78rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.2rem; }
.contact-item-txt a, .contact-item-txt span { color: var(--navy); font-weight: 500; font-size: 0.95rem; transition: var(--transition); }
.contact-item-txt a:hover { color: var(--lime-dark); }
.contact-form-box { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-md); }
.contact-form-box h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.375rem; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.8rem 1rem; border: 2px solid var(--gray); border-radius: var(--radius-sm); font-size: 0.93rem; color: var(--text); background: var(--white); transition: var(--transition); outline: none; font-family: inherit; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(141,198,63,0.12); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-honeypot { display: none !important; }
.form-btn { width: 100%; padding: 0.95rem; background: var(--lime); color: var(--navy-dark); border: none; border-radius: 50px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.5rem; }
.form-btn:hover { background: var(--lime-dark); transform: translateY(-2px); box-shadow: var(--shadow-lime); }
.form-note-sm { text-align: center; color: var(--text-muted); font-size: 0.78rem; margin-top: 0.625rem; }
.form-msg { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.25rem; font-size: 0.9rem; display: none; }
.form-msg.success { background: rgba(141,198,63,0.12); border: 1px solid var(--lime); color: var(--lime-dark); display: block; }
.form-msg.error { background: rgba(239,68,68,0.08); border: 1px solid #ef4444; color: #dc2626; display: block; }

/* === SOBRE PAGE === */
.sobre-intro { background: var(--white); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.sobre-img-wrap { position: relative; }
.sobre-img-main { border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(135deg, var(--navy) 0%, #2A5298 100%); height: 400px; display: flex; align-items: center; justify-content: center; }
.sobre-img-main svg { width: 80px; height: 80px; color: rgba(255,255,255,0.2); }
.sobre-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--lime); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; text-align: center; box-shadow: var(--shadow-lg); }
.sobre-badge strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--navy-dark); line-height: 1; }
.sobre-badge span { font-size: 0.78rem; color: var(--navy); font-weight: 600; }
.sobre-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 1.25rem; }
.sobre-text h2 span { color: var(--lime-dark); }
.sobre-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.1rem; font-size: 0.97rem; }
.sobre-vals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.875rem; margin-top: 1.5rem; }
.val-item { padding: 1rem; background: var(--gray-light); border-radius: var(--radius-sm); border-left: 3px solid var(--lime); }
.val-item strong { display: block; color: var(--navy); font-size: 0.88rem; margin-bottom: 0.2rem; }
.val-item span { font-size: 0.78rem; color: var(--text-muted); }

/* === ANIMATIONS === */
.animate-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .svc-cards-grid    { grid-template-columns: repeat(2, 1fr); }
  .svc-four-col-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gp-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .gp-perks { max-width: 420px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: repeat(4, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .sobre-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-dropdown { display: none; }
  .hamburger { display: flex; }
  .svc-cards-grid    { grid-template-columns: 1fr; }
  .svc-two-col-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .svc-four-col-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-nav-wp .wp-label { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: repeat(3, 1fr); }
  .results-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-form-row { flex-direction: column; }
  .cta-form-row .cta-input, .cta-form-row .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .sobre-vals { grid-template-columns: 1fr; }
  .sobre-badge { right: 0; bottom: -1rem; }
  .wp-float .wp-text { display: none; }
  .wp-float { padding: 1rem; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
}
@media (max-width: 480px) {
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .gp-perks { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* === UTILITIES === */
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.mt-2 { margin-top: 1rem; } .mt-4 { margin-top: 2rem; } .mb-0 { margin-bottom: 0; }


/* === PÁGINAS LEGAIS (Política de Privacidade / Termos de Uso) === */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-block { background: var(--white); border: 1px solid var(--gray); border-radius: 12px; padding: 2rem 2.5rem; margin-bottom: 1.5rem; }
.legal-block h2 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gray); }
.legal-block p { color: var(--text); line-height: 1.75; margin-bottom: 0.85rem; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul { margin: 0.5rem 0 0.85rem 1.25rem; }
.legal-block ul li { color: var(--text); line-height: 1.75; margin-bottom: 0.4rem; }
.legal-block a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal-block a:hover { color: var(--lime-dark, #6a9e2f); }
@media (max-width: 600px) { .legal-block { padding: 1.25rem 1.25rem; } }
