:root {
  --font-title: 'Exo 2', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  
  --brand-celeste: #0092c8;
  --brand-celeste-light: #00b4eb;
  --brand-celeste-faded: rgba(0, 146, 200, 0.1);
  --brand-dark: #1a202c;
  --brand-dark-glass: rgba(26, 32, 44, 0.95);
  --bg-page: #f8fafc;
  --text-main: #2d3748;
  --text-muted: #718096;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 20px;
}

.logo { font-family: var(--font-title); font-weight: 900; font-size: 24px; color: var(--brand-dark); letter-spacing: 1.5px; }
.logo span { color: var(--brand-celeste); }

.btn-primary-outline {
  display: inline-block; padding: 10px 24px;
  border: 2px solid var(--brand-celeste); border-radius: 100px;
  color: var(--brand-celeste); font-weight: 600; font-family: var(--font-body);
  text-decoration: none; transition: all 0.3s ease;
}
.btn-primary-outline:hover { background: var(--brand-celeste); color: #fff; }

/* HERO SECTION */
.hero {
  position: relative; overflow: hidden;
  padding: 200px 0 100px;
  text-align: center;
}

.hero-bg-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,180,235,0.15) 0%, rgba(248,250,252,1) 70%);
  z-index: 0;
}

.hero-bg-shape {
  position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0;
}
.hero .shape-1 { width: 500px; height: 500px; background: rgba(0, 146, 200, 0.15); top: -100px; left: -100px; animation: floatY 6s infinite alternate;}
.hero .shape-2 { width: 400px; height: 400px; background: rgba(0, 180, 235, 0.2); right: -100px; bottom: 0; animation: floatX 8s infinite alternate;}

.hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
}

.hero-title {
  font-family: var(--font-title); font-size: 58px; font-weight: 800;
  color: var(--brand-dark); line-height: 1.15; letter-spacing: -2px;
  margin-bottom: 30px; max-width: 900px;
}
.hero-title span { color: var(--brand-celeste); }

.hero-subtitle {
  font-size: 26px; color: var(--text-muted); font-weight: 500;
  max-width: 800px; margin-bottom: 50px; line-height: 1.4;
}

.hero-ctas { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;}

.btn-primary, .btn-whatsapp, .btn-mail {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-title); font-weight: 700; font-size: 20px;
  padding: 16px 40px; border-radius: 100px; text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--brand-dark); color: white;
  box-shadow: 0 15px 30px rgba(26, 32, 44, 0.2);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(26, 32, 44, 0.3); }

.btn-whatsapp {
  background: #25D366; color: white;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4); }

.btn-mail {
  background: var(--brand-celeste); color: white;
  box-shadow: 0 15px 30px rgba(0, 163, 255, 0.3);
}
.btn-mail:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0, 163, 255, 0.4); }

.giant-btn { font-size: 28px; padding: 25px 60px; }

/* METRICS SECTION */
.metrics-section { padding: 40px 0 80px; }

.audience-badge {
  background: var(--brand-celeste-faded);
  color: var(--brand-dark);
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(0, 163, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 163, 255, 0.15);
}

.metrics-grid {
  display: grid; 
  gap: 25px; 
  width: 100%;
}

@media (min-width: 1024px) {
  .metrics-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1023px) {
  .metrics-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

.glass-panel {
  background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 1); border-radius: 30px;
  padding: 45px 30px; text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
  transition: transform 0.4s;
}
.glass-panel:hover { transform: translateY(-10px); }

.flex-col-center { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 250px;}

.metric-icon { width: 60px; height: 60px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 35px; margin: 0 auto 20px; }
.metric-icon.no-margin { margin-top: 0; }
.metric-icon.blue { background: #e0f7ff; color: var(--brand-celeste); }
.metric-icon.red { background: #fff1f0; color: #ff4d4f; }
.metric-icon.green { background: #f6ffed; color: #52c41a; }

.metric-number { font-family: var(--font-title); font-size: 44px; font-weight: 800; color: var(--brand-dark); line-height: 1.1; margin-bottom: 10px; }
.metric-label { font-size: 18px; font-weight: 600; color: var(--brand-celeste); }

/* FORMATS SECTION */
.formats-section { padding: 80px 0; background: #ffffff; }

.formats-layout {
  display: flex; align-items: center; gap: 80px;
}
.formats-text { width: 60%; }
.formats-visual { width: 40%; position: relative; }

.section-title { font-family: var(--font-title); font-size: 48px; font-weight: 800; color: var(--brand-dark); line-height: 1.1; margin-bottom: 40px; letter-spacing: -1.5px;}

.features-list { list-style: none; }
.features-list.simple-list li {
  display: flex; align-items: center; gap: 15px; margin-bottom: 30px;
}
.features-list.simple-list i { font-size: 38px; color: var(--brand-celeste); }
.features-list.simple-list strong { font-size: 24px; font-weight: 600; color: var(--text-main); }

/* ADDED CAROUSEL FOR EMBEDS */
.embed-carousel {
  display: flex; gap: 15px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 15px; width: 100%; max-width: 500px; margin: 0 auto;
}
.embed-carousel blockquote {
  scroll-snap-align: start; flex: 0 0 100%; min-width: 300px !important; margin: 0 !important;
}
.embed-carousel::-webkit-scrollbar { height: 8px; }
.embed-carousel::-webkit-scrollbar-thumb { background-color: var(--brand-celeste); border-radius: 10px; }
.embed-carousel::-webkit-scrollbar-track { background: var(--brand-celeste-faded); border-radius: 10px; }

/* PRICING BLOCK */
.pricing-section { padding: 40px 0; background: #ffffff; }
.pricing-card {
  background: var(--brand-dark);
  border-radius: 40px; padding: 60px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.pricing-card h2 { font-family: var(--font-title); font-size: 40px; color: white; margin-bottom: 15px; }
.pricing-card p { font-size: 24px; color: var(--brand-celeste-light); }

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

/* FINAL CLOSING SECTION */
.cta-section { padding: 100px 0 140px; }
.cta-box {
  background: white; border-radius: 40px; padding: 80px;
  position: relative; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,146,200,0.1);
}
.cta-box h2 { font-family: var(--font-title); font-size: 45px; font-weight: 800; margin-bottom: 25px; color: var(--brand-dark); line-height: 1.1; letter-spacing: -1px; max-width: 900px; margin-left: auto; margin-right: auto;}
.highlight-p { font-size: 26px; color: var(--brand-celeste); font-weight: 600; margin-bottom: 50px; }
.final-cta-container { display: flex; justify-content: center; }

/* FOOTER */
footer { background: var(--brand-dark); padding: 40px 0; color: #a0aec0; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
footer .logo { color: white; font-size: 20px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-title { font-size: 38px; }
  .formats-layout { flex-direction: column; }
  .formats-text, .formats-visual { width: 100%; }
  .cta-box h2 { font-size: 34px; }
  .footer-content { flex-direction: column; gap: 20px; text-align: center; }
  .giant-btn { font-size: 22px; padding: 20px 40px; }
}

/* ANIMATIONS */
@keyframes floatY { 0% { transform: translateY(0); } 100% { transform: translateY(20px); } }
@keyframes floatX { 0% { transform: translateX(0); } 100% { transform: translateX(20px); } }
@keyframes scalePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
