.elementor-6639 .elementor-element.elementor-element-38ed86e{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-1c302b4 *//* =============================================
   MÉTODO VOZ PROFÉTICA — CSS
   Dark premium with orange/yellow glow
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #d6682a;
  --primary-dark: #b8521e;
  --secondary: #f9de67;
  --bg: #000000;
  --bg2: #0a0a0a;
  --bg3: #111111;
  --text: #ffffff;
  --text-muted: #aaaaaa;
  --glow: 0 0 40px rgba(214,104,42,0.5), 0 0 80px rgba(214,104,42,0.2);
  --glow-sm: 0 0 20px rgba(214,104,42,0.4);
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Animated gradient background ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(214,104,42,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 90%, rgba(249,222,103,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: bgPulse 8s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ---- Typography ---- */
h1, h2, h3 { line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }

.highlight {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary);
  border: 1px solid rgba(214,104,42,0.4);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 16px auto 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #e87d3e);
  color: #fff;
  box-shadow: var(--glow-sm);
  animation: pulseBtn 2.5s ease-in-out infinite;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--glow);
}
.btn-primary:hover::after { opacity: 1; }

.btn-xl { font-size: 1.15rem; padding: 20px 48px; }

@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 0 20px rgba(214,104,42,0.4), 0 0 40px rgba(214,104,42,0.15); }
  50%       { box-shadow: 0 0 35px rgba(214,104,42,0.7), 0 0 70px rgba(214,104,42,0.3); }
}

/* ---- AOS (scroll reveal) ---- */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-in {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================
   HERO
   ================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero_bg_1774617797193.png') center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.85) 100%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  width: 100%;
}

.badge {
  display: inline-block;
  background: rgba(214,104,42,0.15);
  border: 1px solid rgba(214,104,42,0.5);
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 99px;
  margin-bottom: 24px;
  animation: badgePop 0.6s ease;
}

@keyframes badgePop {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 20px 0 28px;
  max-width: 520px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.avatars { display: flex; }
.av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  border: 2px solid #000;
  margin-left: -8px;
  first-child { margin-left: 0; }
}
.avatars .av:first-child { margin-left: 0; }

.hero-guarantee {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Hero headline block */
.hero-headline {
  max-width: 780px;
}
.hero-headline h1 { font-size: clamp(2rem, 5vw, 3.2rem); }

/* Watch hint pill */
.watch-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(214,104,42,0.12);
  border: 1px solid rgba(214,104,42,0.4);
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 99px;
}
.watch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: dotBlink 1.4s ease-in-out infinite;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* Hero video — full width within container */
.hero-video {
  width: 100%;
  max-width: 860px;
}

/* Hero CTA block below video */
.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 640px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(214,104,42,0.4);
  box-shadow: 0 0 50px rgba(214,104,42,0.3), 0 0 100px rgba(214,104,42,0.1);
  animation: ringPulse 3s ease-in-out infinite;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  opacity: 0.4;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =================================================
   PROBLEM
   ================================================= */
.problem {
  padding: 100px 0;
  background: var(--bg2);
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pain-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: var(--transition);
}
.pain-card:hover {
  border-color: rgba(214,104,42,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(214,104,42,0.1);
}
.pain-icon { font-size: 2.5rem; margin-bottom: 14px; }
.pain-card p { font-size: 0.92rem; color: var(--text-muted); }

/* =================================================
   SOLUTION
   ================================================= */
.solution {
  padding: 100px 0;
  text-align: center;
}

.solution-header { margin-bottom: 64px; }

/* ======= VERTICAL TIMELINE ======= */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 20px 0 40px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(214,104,42,0.6) 8%,
    rgba(214,104,42,0.6) 92%,
    transparent 100%);
}

/* Each timeline row */
.tl-item {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}

/* Dot / number circle on the line */
.tl-dot {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #e87d3e);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 20px rgba(214,104,42,0.5);
  transition: box-shadow 0.3s ease;
}
.tl-dot span {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
}
.tl-dot-last {
  box-shadow: 0 0 30px rgba(214,104,42,0.7), 0 0 60px rgba(214,104,42,0.3);
}

/* Horizontal connector */
.tl-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: rgba(214,104,42,0.4);
}

/* Spacer fills the other half */
.tl-spacer { flex: 1; }

/* Card */
.tl-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  text-align: left;
  transition: var(--transition);
}
.tl-card:hover {
  border-color: rgba(214,104,42,0.45);
  box-shadow: 0 8px 40px rgba(214,104,42,0.12);
  transform: translateY(-4px);
}

.tl-icon { font-size: 2rem; margin-bottom: 10px; }
.tl-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.tl-desc  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.tl-tool-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(214,104,42,0.1);
  border: 1px solid rgba(214,104,42,0.25);
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
}

/* Right-side items — keep text left aligned */
.tl-right .tl-card { text-align: left; }

/* Mobile: stack single column */
@media (max-width: 680px) {
  .timeline-line { left: 26px; }
  .tl-item { flex-direction: column; align-items: flex-start; padding-left: 68px; }
  .tl-dot { position: absolute; left: 0; }
  .tl-connector, .tl-spacer { display: none; }
  .tl-card { width: 100%; }
  .tl-right .tl-card { text-align: left; }
  .tl-right { flex-direction: column; }
  .tl-right .tl-dot { left: 0; }
}

/* =================================================
   CURRICULUM
   ================================================= */
.curriculum {
  padding: 100px 0;
  background: var(--bg2);
  text-align: center;
}

/* ====== INFINITE CAROUSEL ====== */
.carousel-outer {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: calc(10 * (260px + 20px));
  animation: carouselScroll 22s linear infinite;
}

.carousel-outer:hover .carousel-track { animation-play-state: paused; }

@keyframes carouselScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-5 * (260px + 20px))); }
}

.carousel-slide {
  flex-shrink: 0;
  width: 260px;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.carousel-slide:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow: 0 20px 60px rgba(214,104,42,0.35);
  border-color: rgba(214,104,42,0.7);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.carousel-slide:hover img { transform: scale(1.04); }

/* Gradient fallback shown when image is missing */
.carousel-slide:nth-child(1),
.carousel-slide:nth-child(6)  { background: linear-gradient(160deg, #1a0a00 0%, #3a1800 50%, #d6682a22 100%); }
.carousel-slide:nth-child(2),
.carousel-slide:nth-child(7)  { background: linear-gradient(160deg, #0a0a1a 0%, #151530 50%, #4040d022 100%); }
.carousel-slide:nth-child(3),
.carousel-slide:nth-child(8)  { background: linear-gradient(160deg, #001a0a 0%, #002010 50%, #00aa4422 100%); }
.carousel-slide:nth-child(4),
.carousel-slide:nth-child(9)  { background: linear-gradient(160deg, #1a0010 0%, #300020 50%, #dd006622 100%); }
.carousel-slide:nth-child(5),
.carousel-slide:nth-child(10) { background: linear-gradient(160deg, #0a0a00 0%, #1a1a00 50%, #f9de6722 100%); }

/* Placeholder overlay shown when image fails */
.carousel-slide::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

/* Fade edges for seamless feel */
.carousel-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.carousel-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg2) 0%, transparent 100%);
}
.carousel-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg2) 0%, transparent 100%);
}

/* =================================================
   TRANSFORMATION
   ================================================= */
.transformation {
  padding: 100px 0;
  text-align: center;
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.transform-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: var(--transition);
}
.transform-card:hover { border-color: rgba(214,104,42,0.4); }

.before {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}
.arrow-transform {
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}
.after {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  flex: 1;
  text-align: right;
}

/* =================================================
   OFFER
   ================================================= */
.offer {
  padding: 100px 0;
  background: var(--bg2);
  text-align: center;
}

.offer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(214,104,42,0.3);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 48px;
  box-shadow: 0 0 60px rgba(214,104,42,0.1);
}

.offer-features {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: left;
}

.offer-feat {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.offer-price-box {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(214,104,42,0.05);
}

.price-tag {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.price-tag s { color: rgba(255,255,255,0.4); }

.price-main {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.secure-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.secure-badges span {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 12px;
  border-radius: 99px;
}

/* =================================================
   GUARANTEE
   ================================================= */
.guarantee {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.guarantee-badge {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: var(--glow-sm);
  animation: ringPulse 3s ease-in-out infinite;
}
.guarantee-icon { font-size: 2rem; }
.guarantee-days { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.guarantee-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-align: center; color: var(--text-muted); }

.guarantee-text h2 { font-size: 1.8rem; margin-bottom: 16px; }
.guarantee-text p { color: var(--text-muted); margin-bottom: 12px; font-size: 0.95rem; }
.guarantee-text strong { color: var(--secondary); }

/* =================================================
   FAQ
   ================================================= */
.faq {
  padding: 100px 0;
  background: var(--bg2);
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(214,104,42,0.3); }

.faq-q {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: none;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-q:hover { background: rgba(214,104,42,0.06); }

.faq-icon {
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition);
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open {
  max-height: 200px;
  padding: 16px 24px 20px;
}

/* =================================================
   FINAL CTA
   ================================================= */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(214,104,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.urgency-bar {
  display: inline-block;
  background: rgba(214,104,42,0.15);
  border: 1px solid rgba(214,104,42,0.4);
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 99px;
  margin-bottom: 32px;
  animation: badgePop 0.6s ease;
}

.final-cta h2 { margin-bottom: 16px; }
.final-cta p { color: var(--text-muted); margin-bottom: 36px; font-size: 1rem; }
.final-note { margin-top: 20px; font-size: 0.8rem; color: var(--text-muted); }

/* =================================================
   FOOTER
   ================================================= */
.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}
.footer p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 6px; }
.footer-disclaimer { font-size: 0.72rem; opacity: 0.5; }

/* =================================================
   RESPONSIVE
   ================================================= */
@media (max-width: 900px) {
  .hero-sub { margin: 0 auto; }
  .social-proof { justify-content: center; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .transform-grid { grid-template-columns: 1fr; }
  .offer-card { grid-template-columns: 1fr; }
  .offer-features { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .guarantee-inner { flex-direction: column; text-align: center; gap: 32px; }
  .steps-flow { gap: 8px; }
  .step-arrow { display: none; }
}

@media (max-width: 600px) {
  .pain-grid { grid-template-columns: 1fr; }
  .carousel-slide { width: 200px; }
  .carousel-slide img { height: 280px; }
  .carousel-track { width: calc(10 * (200px + 20px)); }
  @keyframes carouselScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-5 * (200px + 20px))); }
  }
  .transform-card { flex-direction: column; text-align: center; }
  .after { text-align: center; }
  .btn-xl { padding: 18px 28px; font-size: 1rem; }
  .hero { padding: 100px 0 60px; }
}

/* =================================================
   STICKY CTA BAR
   ================================================= */
.sticky-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  padding: 14px 24px;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(214,104,42,0.3);
  transition: bottom 0.4s cubic-bezier(0.4,0,0.2,1);
}
.sticky-cta.visible { bottom: 0; }
.sticky-cta .btn { font-size: 0.95rem; padding: 14px 32px; }/* End custom CSS */