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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2b2b2b;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

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

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

/* Top Bar */
.topbar {
  background: #ff6b1a;
  color: #fff;
  text-align: center;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .topbar {
    font-size: 10px;
    padding: 5px 8px;
    letter-spacing: 0;
  }
}

/* Sections */
.section {
  padding: 70px 0;
}

.section-light {
  background: #fff7f0;
}

.section-gray {
  background: #f6f8fa;
}

.section-beige {
  background: #fff7f0;
}

.section-white {
  background: #fff;
}

.section-orange {
  background: #ff6b1a;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 30px;
  text-align: center;
}

.section-title-white {
  color: #fff;
}

.section-subtitle {
  font-size: 17px;
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.highlight {
  color: #ff6b1a;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn:hover {
  transform: scale(1.04);
  filter: brightness(0.92);
}

.btn-lg {
  padding: 18px 50px;
  font-size: 16px;
}

.btn-primary {
  background: #ff6b1a;
  color: #fff;
}

.btn-accent {
  background: #00b686;
  color: #fff;
}

.btn-dark {
  background: #2b2b2b;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #ff6b1a;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Hero */
.hero {
  background: #fff7f0;
  padding: 50px 20px 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #ff6b1a;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #2b2b2b;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
}

.hero-subtitle {
  font-size: 17px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 20px;
}

.hero-benefits span {
  white-space: nowrap;
}

/* Timer */
.timer-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
}

.timer-label {
  color: #666;
}

.timer-count {
  color: #ff6b1a;
  font-weight: 800;
  font-size: 16px;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: 280px;
  margin: 0 auto;
}

.phone-screen {
  width: 280px;
  height: 500px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 0 3px #333;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(145deg, #444, #222);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #aaa;
  font-size: 14px;
  font-weight: 500;
}

.video-placeholder-text {
  text-align: center;
  line-height: 1.5;
  color: #777;
}

.play-btn {
  width: 60px;
  height: 60px;
  background: #ff6b1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 10px;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 4px 15px rgba(255,107,26,0.4);
}

.play-btn:hover {
  transform: scale(1.1);
}

.play-btn-small {
  width: 48px;
  height: 48px;
  margin: 12px 0 8px;
}

.video-label {
  font-size: 12px;
  color: #999;
}

.phone-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  text-align: center;
  line-height: 1.3;
  font-size: 13px;
  color: #2b2b2b;
}

.phone-badge strong {
  display: block;
  font-size: 15px;
  color: #ff6b1a;
}

/* Hero Card */
.hero-card {
  max-width: 750px;
  margin: 30px auto 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hero-card p {
  font-size: 16px;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 20px;
}

/* Checklist Section */
.checklist {
  max-width: 600px;
  margin: 0 auto;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 17px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  line-height: 1.5;
}

.checklist li:last-child {
  border-bottom: none;
}

.check-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: #ff6b1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

/* Comparison Section */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.compare-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.compare-card-bad {
  border: 2px solid #ffccbb;
}

.compare-card-good {
  border: 2px solid #b2e6d4;
}

.compare-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.compare-card-bad h3 {
  color: #d45a3a;
}

.compare-card-good h3 {
  color: #00996f;
}

.compare-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.5;
}

.compare-card ul li:last-child {
  border-bottom: none;
}

.icon-x {
  color: #d45a3a;
  font-weight: 700;
  flex-shrink: 0;
}

.icon-check {
  color: #00996f;
  font-weight: 700;
  flex-shrink: 0;
}

/* Cards Grid (conteudo) */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 10px;
}

.cards-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.card-icon {
  font-size: 42px;
  margin-bottom: 16px;
}

.info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Video Section */
.phone-mockup-small {
  width: 220px;
  margin: 0 auto;
}

.phone-mockup-small .phone-screen {
  width: 220px;
  height: 390px;
  border-radius: 32px;
  padding: 10px;
}

.phone-mockup-small .video-placeholder {
  border-radius: 22px;
}

.material-img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.video-footnote {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 15px;
}

/* Bonus Section */
.bonus-tag {
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
  background: #fff;
  color: #ff6b1a;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 24px;
  border-radius: 50px;
}

.bonus-card {
  background: #fff;
  border-radius: 20px;
  padding: 0 0 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
}

.bonus-img {
  width: 100%;
  display: block;
}

.bonus-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(145deg, #ddd, #bbb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #777;
  font-weight: 500;
}

.bonus-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 18px 0 8px;
  padding: 0 15px;
}

.bonus-card p {
  font-size: 14px;
  color: #666;
  padding: 0 15px;
  line-height: 1.5;
}

.bonus-value {
  display: inline-block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #ff6b1a;
  text-decoration: line-through;
}

.bonus-total {
  text-align: center;
  color: #fff;
  margin: 30px 0 20px;
}

.bonus-total p {
  font-size: 16px;
  opacity: 0.9;
}

.price-strikethrough {
  font-size: 28px;
  font-weight: 800;
  text-decoration: line-through;
  opacity: 0.7;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-top: 10px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ff6b1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.testimonial-info span {
  font-size: 13px;
  color: #888;
}

.stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
}

/* Plans */
.plans-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-end;
  margin-top: 10px;
  flex-wrap: wrap;
}

.plan-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px 30px;
  width: 340px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  text-align: center;
}

.plan-card-featured {
  background: #ff6b1a;
  border: none;
  padding: 45px 30px 40px;
  position: relative;
  box-shadow: 0 10px 40px rgba(255,107,26,0.25);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #ff6b1a;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 18px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.plan-name-white {
  color: #fff;
}

.plan-desc {
  font-size: 14px;
  color: #888;
  margin-bottom: 16px;
}

.plan-desc-white {
  color: rgba(255,255,255,0.85);
}

.plan-price {
  margin-bottom: 4px;
}

.price-currency {
  font-size: 20px;
  font-weight: 700;
  vertical-align: super;
}

.price-value {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.plan-price-white .price-currency,
.plan-price-white .price-value {
  color: #fff;
}

.plan-payment {
  font-size: 13px;
  color: #888;
  margin-bottom: 22px;
}

.plan-payment-white {
  color: rgba(255,255,255,0.8);
}

.plan-list {
  text-align: left;
  margin-bottom: 25px;
}

.plan-list li {
  font-size: 14px;
  color: #444;
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-list-white li {
  color: rgba(255,255,255,0.92);
}

.icon-check-small {
  color: #00b686;
  font-weight: 700;
  flex-shrink: 0;
}

.icon-check-white {
  color: #fff;
}

/* Author */
.author-card {
  background: #fff;
  border-radius: 24px;
  padding: 45px 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}

.author-avatar-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  display: block;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ff6b1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 28px;
  margin: 0 auto 18px;
}

.author-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.author-role {
  display: block;
  font-size: 15px;
  color: #ff6b1a;
  font-weight: 600;
  margin-bottom: 20px;
}

.author-text {
  font-size: 15px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.author-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #ff6b1a;
}

.stat span {
  font-size: 13px;
  color: #888;
}

/* Guarantee */
.guarantee-icon {
  font-size: 56px;
  margin-bottom: 10px;
}

.guarantee-icon-img {
  width: 120px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

.guarantee-text {
  font-size: 16px;
  color: #666;
  max-width: 550px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.guarantee-benefits {
  justify-content: center;
  margin-top: 20px;
}

/* Footer */
.footer {
  background: #2b2119;
  color: rgba(255,255,255,0.7);
  padding: 40px 20px;
  font-size: 14px;
}

.footer p {
  margin-bottom: 6px;
}

.footer-sub {
  font-size: 13px;
  opacity: 0.7;
}

.footer-links {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

/* Popup / Modal Upsell */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-overlay.active {
  display: flex;
}

.popup-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  animation: popupIn 0.4s ease;
  position: relative;
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 2;
}

.popup-close:hover {
  color: #2b2b2b;
}

.popup-header {
  background: linear-gradient(135deg, #fff7f0, #ffe8d6);
  padding: 35px 35px 25px;
  text-align: center;
  border-radius: 24px 24px 0 0;
}

.popup-tag {
  display: inline-block;
  background: #ff6b1a;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  animation: pulseTag 1.5s infinite;
}

@keyframes pulseTag {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.popup-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: #2b2b2b;
  margin-bottom: 8px;
  line-height: 1.3;
}

.popup-subtitle {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.popup-subtitle strong {
  color: #ff6b1a;
}

.popup-body {
  padding: 25px 35px 20px;
}

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

.popup-price {
  background: #f6f8fa;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.popup-price-label {
  display: block;
  font-size: 14px;
  color: #888;
  margin-bottom: 6px;
}

.popup-price-label s {
  color: #bbb;
}

.popup-price-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.popup-currency {
  font-size: 24px;
  font-weight: 700;
  color: #00b686;
  vertical-align: super;
}

.popup-amount {
  font-size: 60px;
  font-weight: 900;
  color: #00b686;
  line-height: 1;
}

.popup-price-small {
  display: block;
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

.popup-price-small strong {
  color: #2b2b2b;
}

.popup-benefits {
  text-align: left;
  margin-bottom: 20px;
  display: inline-block;
}

.popup-benefits li {
  font-size: 14px;
  color: #444;
  padding: 5px 0;
  line-height: 1.5;
}

.popup-scarcity {
  margin-bottom: 20px;
}

.scarcity-bar {
  width: 100%;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.scarcity-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, #ff6b1a, #ff8a4a);
  border-radius: 3px;
  transition: width 0.5s;
}

.scarcity-text {
  font-size: 13px;
  color: #888;
  font-weight: 600;
  margin-bottom: 4px;
}

.scarcity-timer {
  font-size: 14px;
  color: #ff6b1a;
  font-weight: 800;
}

.popup-cta {
  width: 100%;
  margin-bottom: 12px;
}

.popup-skip {
  background: none;
  border: none;
  font-size: 13px;
  color: #999;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
  font-family: inherit;
}

.popup-skip:hover {
  color: #666;
}

.popup-skip strong {
  color: #ff6b1a;
}

.popup-footer {
  padding: 15px 35px 25px;
  text-align: center;
}

.popup-footer p {
  font-size: 12px;
  color: #aaa;
  font-weight: 600;
}

@media (max-width: 480px) {
  .popup-header {
    padding: 25px 20px 20px;
  }

  .popup-header h2 {
    font-size: 18px;
  }

  .popup-body {
    padding: 20px;
  }

  .popup-amount {
    font-size: 44px;
  }

  .popup-footer {
    padding: 12px 20px 20px;
  }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 992px) {
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
    text-align: center;
  }

  .hero {
    padding: 30px 15px 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

  .hero-card {
    padding: 25px 20px;
  }

.hero-mockup-img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
}

.phone-mockup {
    width: 220px;
  }

  .phone-screen {
    width: 220px;
    height: 390px;
    border-radius: 32px;
    padding: 10px;
  }

  .video-placeholder {
    border-radius: 22px;
  }

  .phone-badge {
    right: -10px;
    top: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 15px;
  }

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

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

  .cards-grid-3 {
    grid-template-columns: 1fr;
  }

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

  .plans-grid {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 100%;
    max-width: 380px;
  }

  .author-card {
    padding: 30px 20px;
  }

  .author-stats {
    gap: 20px;
    justify-content: center;
  }

  .checklist {
    text-align: left;
  }

  .compare-card {
    text-align: left;
  }

  .plan-list {
    text-align: left;
  }

  .timer-wrapper {
    justify-content: center;
  }

  .bonus-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .guarantee-benefits {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 13px;
  }

  .section-title {
    font-size: 22px;
  }

  .hero-benefits {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
}
