/* ============================================================
   DIRIJA FÁCIL — Clone CSS
   Fontes: Roboto + Roboto Slab | Cores: marca original
   ============================================================ */

/* ---------- RESET & VARIABLES ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red:        #e50000;
  --pink:       #E0A800;
  --pink-hover: #C89000;
  --gold:       #FFCA30;
  --black:      #000000;
  --dark:       #111111;
  --dark-mid:   #1a1a1a;
  --white:      #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid:   #7a7a7a;
  --text:       #333333;
  --text-light: #555555;
  --shadow:     0 3px 15px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 30px rgba(0,0,0,.15);
  --radius-btn: 50px;
  --radius-card: 5px;
  --transition: .3s ease;
  --font-main:  'Roboto', -apple-system, sans-serif;
  --font-slab:  'Roboto Slab', serif;
  --container:  1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padded { padding: 80px 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  text-transform: none;
  letter-spacing: .3px;
}

.btn:hover { transform: translateY(-2px); }

.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

.btn-pink {
  background: var(--pink);
  color: var(--black);
  border-color: var(--pink);
}
.btn-pink:hover {
  background: var(--pink-hover);
  border-color: var(--pink-hover);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  color: var(--black);
}

/* ---------- SECTION TITLE ---------- */
.section-title {
  font-family: var(--font-slab);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 50px;
}
.text-center { text-align: center; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background var(--transition), box-shadow var(--transition),
              backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.nav { width: 100%; }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--pink); }

.nav-cta {
  margin-left: 10px;
  padding: 12px 24px;
  font-size: 14px;
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease;
  animation: kenBurns 10s ease-in-out infinite alternate;
}

.hero-slide.active { opacity: 1; }

@keyframes kenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,.65);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 24px;
  animation: fadeInUp .9s ease forwards;
}

.hero-content h1 {
  font-family: var(--font-main);
  font-size: 62px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.hero-content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 36px;
  opacity: .95;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 40px 30px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.feature-icon-wrap i {
  font-size: 34px;
  color: var(--white);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ============================================================
   PRESENTATION
   ============================================================ */
.presentation { background: var(--gray-light); }

.presentation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.presentation-centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.presentation-centered h2 {
  font-family: var(--font-slab);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.25;
}
.presentation-centered p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}
.presentation-centered .btn {
  margin-top: 8px;
}

.presentation-text h2 {
  font-family: var(--font-slab);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.25;
}
.presentation-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-family: var(--font-slab);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.about-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text strong { color: var(--dark); }

.about-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.about-list li i {
  color: var(--pink);
  font-size: 18px;
  flex-shrink: 0;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
  z-index: 0;
}

.stats-inner {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item { color: var(--white); }

.stat-number {
  display: block;
  font-size: 72px;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--font-main);
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }

.section-label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card-photo {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-photo img { transform: scale(1.06); }

.service-card-body {
  padding: 28px 24px 32px;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon img {
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
  filter: hue-rotate(75deg) brightness(86%);
  transition: filter var(--transition), transform var(--transition);
}
.service-card:hover .service-icon img {
  filter: hue-rotate(75deg) brightness(75%);
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 10px; color: var(--pink-hover); }

.services-cta-line {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: var(--text);
}
.services-cta-line a {
  color: var(--pink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.services-cta-line a:hover { gap: 10px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.70);
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.cta-inner h2 {
  font-family: var(--font-slab);
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 18px;
  margin-bottom: 36px;
  opacity: .9;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  height: 96px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  opacity: .75;
}

.footer-contact h4,
.footer-social h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pink);
  display: inline-block;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.footer-contact-list li i {
  color: var(--pink);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-list a {
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.footer-contact-list a:hover { color: var(--pink); }

.footer-map-btn {
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.3);
  font-size: 13px;
}
.footer-map-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* Social links */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: background var(--transition), transform var(--transition);
}
.social-link:hover {
  background: var(--pink);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: .6;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--pink); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat-number { font-size: 56px; }
}

@media (max-width: 768px) {
  .section-padded { padding: 60px 0; }

  /* Nav mobile */
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-menu.open { display: flex; }
  .nav-link { width: 100%; padding: 12px 0; font-size: 16px; }
  .nav-cta { margin-left: 0; margin-top: 8px; width: 100%; justify-content: center; }

  /* Hero */
  .hero-content h1 { font-size: 34px; }
  .hero-content p  { font-size: 17px; }

  /* Grids → single column */
  .features-grid,
  .services-grid     { grid-template-columns: 1fr; gap: 20px; }

  .presentation-grid,
  .about-grid        { grid-template-columns: 1fr; gap: 40px; }

  .about-gallery-grid { grid-template-columns: 1fr 1fr; }

  /* Stats */
  .stats-grid   { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-number  { font-size: 48px; }

  /* Footer */
  .footer-grid  { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-inner h2 { font-size: 32px; }

  /* Section title */
  .section-title { font-size: 28px; margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 26px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 40px; }
  .about-gallery-grid { grid-template-columns: 1fr; }
  .about-gallery-grid img { height: 220px; }
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials { background: var(--gray-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 28px 24px 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #F4B400;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-author > div strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
  font-weight: 700;
}
.testimonial-author > div span {
  font-size: 12px;
  color: var(--text-light);
}
.testimonial-google {
  margin-left: auto;
  width: 20px;
  height: 20px;
  opacity: .7;
}

.testimonial-screenshot {
  margin: 0 -24px;
  border-top: 1px solid var(--gray-light);
}
.testimonial-screenshot img {
  width: 100%;
  display: block;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  filter: brightness(.95);
}

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   POPUP PROMOÇÃO
   ============================================================ */
.promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: promoFadeIn .4s ease;
}
.promo-overlay.hidden { display: none; }

@keyframes promoFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.promo-modal {
  position: relative;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,.7), 0 0 0 2px var(--pink);
  animation: promoSlideUp .4s ease;
}

@keyframes promoSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.promo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.promo-close:hover { background: rgba(255,255,255,.2); }

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

.promo-footer {
  padding: 20px 24px 24px;
  text-align: center;
}

.promo-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}
.promo-countdown p {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

.promo-countdown-ring {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.promo-countdown-ring svg {
  width: 48px;
  height: 48px;
  transform: rotate(-90deg);
}
.promo-ring-bg {
  fill: none;
  stroke: rgba(255,255,255,.15);
  stroke-width: 3;
}
.promo-ring-fill {
  fill: none;
  stroke: var(--pink);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 113;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}
.promo-countdown-ring span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 18px;
  font-weight: 900;
  font-family: var(--font-main);
}

.promo-dots::after {
  content: '';
  animation: promoDots 1.2s steps(3, end) infinite;
}
@keyframes promoDots {
  0%   { content: ''; }
  33%  { content: '.'; }
  66%  { content: '..'; }
  100% { content: '...'; }
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--pink);
  color: var(--black);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 16px 32px;
  border-radius: 50px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(224,168,0,.4);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.promo-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease, background .2s, box-shadow .2s;
}
.promo-btn:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,168,0,.5);
}
.promo-btn i { font-size: 20px; }

@media (max-width: 480px) {
  .promo-modal { max-width: 100%; }
  .promo-btn { font-size: 14px; padding: 14px 20px; }
}
