/* ==========================================================================
   DESIGNS & STYLESHEET - TELA MOBILE APK FEMININA (ROSA / MODERN GLASS)
   ========================================================================== */

:root {
  --pink-primary: #ff2a75;
  --pink-gradient-start: #ff4d8d;
  --pink-gradient-end: #e60067;
  --pink-neon: #ff85b3;
  --pink-bg-dark: #1a0512;
  --pink-bg-card: #2d0b21;
  --pink-bg-glass: rgba(255, 42, 117, 0.12);
  --pink-glow: rgba(255, 42, 117, 0.45);
  
  --gold-accent: #ffd700;
  --warning-bg: #400612;
  --warning-border: #ff2a55;
  --warning-red: #ff3b60;

  --text-primary: #ffffff;
  --text-muted: #e6b8ce;
  --text-dark: #1a0512;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --shadow-pink: 0 10px 30px -5px rgba(255, 42, 117, 0.4);
  --shadow-card: 0 12px 35px rgba(0, 0, 0, 0.5);
}

/* BASE RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: #0d0209;
  color: var(--text-primary);
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: radial-gradient(circle at 50% 0%, #3d0928 0%, #170310 60%, #0d0209 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* MOBILE CONTAINER (SIMULATING APK VIEWPORT ON LARGER SCREENS, FULLSCREEN ON MOBILE) */
.mobile-container {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(45, 11, 33, 0.95) 0%, rgba(26, 5, 18, 0.98) 100%);
  box-shadow: 0 0 50px rgba(255, 42, 117, 0.2);
  display: flex;
  flex-direction: column;
  position: relative;
  border-left: 1px solid rgba(255, 105, 180, 0.15);
  border-right: 1px solid rgba(255, 105, 180, 0.15);
}

/* TOP PERMANENT WARNING BANNER */
.warning-top-banner {
  background: linear-gradient(90deg, #ff1a4b 0%, #e6005c 100%);
  color: #ffffff;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  line-height: 1.3;
  box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.warning-icon {
  font-size: 1.3rem;
  animation: pulse-icon 1.5s infinite ease-in-out;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* HEADER BAR */
.app-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(26, 5, 18, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 42, 117, 0.2);
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-highlight {
  color: var(--pink-neon);
  text-shadow: 0 0 10px var(--pink-glow);
}

.logo-sparkle {
  font-size: 1.2rem;
}

.vip-badge {
  background: rgba(255, 42, 117, 0.15);
  border: 1px solid rgba(255, 42, 117, 0.4);
  color: var(--pink-neon);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background-color: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* MAIN CONTENT */
.main-content {
  padding: 16px 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* SECTION HEADERS */
.section-title-wrap {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: var(--pink-gradient-start);
  border-radius: 2px;
  margin-top: 4px;
}

.swipe-hint {
  font-size: 0.75rem;
  color: var(--pink-neon);
  font-weight: 600;
}

/* CAROUSEL WRAPPER */
.carousel-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.carousel-container {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 20px;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  flex: 0 0 88%;
  scroll-snap-align: center;
}

/* VIDEO CARDS */
.video-card {
  background: var(--pink-bg-card);
  border: 1px solid var(--pink-bg-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  background-color: #000;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.video-info {
  padding: 16px;
}

.video-info h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.video-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* LOCKED / OFUSCADO CARD (SLIDE 4) */
.locked-card {
  border: 2px solid var(--pink-neon);
  box-shadow: 0 0 30px rgba(255, 42, 117, 0.45);
}

.blurred-wrapper {
  position: relative;
  overflow: hidden;
}

.blurred-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px) brightness(0.4) contrast(1.3);
  transform: scale(1.15);
  pointer-events: none;
}

.lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 3, 18, 0.78);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 18px;
  text-align: center;
  gap: 12px;
  z-index: 5;
}

.lock-badge-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ff2a75, #b8004f);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  box-shadow: 0 0 30px var(--pink-glow), 0 0 0 6px rgba(255, 42, 117, 0.2);
  animation: float-lock 3s infinite ease-in-out;
}

@keyframes float-lock {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.locked-tag {
  background: var(--gold-accent);
  color: #2b0018;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.8px;
}

.lock-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.lock-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 90%;
}

.btn-unlock-cta {
  width: 100%;
  margin-top: 6px;
  background: linear-gradient(135deg, #ff1a66 0%, #e6005c 100%);
  color: #ffffff;
  border: none;
  padding: 14px 18px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 26, 102, 0.6);
  animation: pulse-button 2s infinite ease-in-out;
  transition: transform 0.2s ease;
}

@keyframes pulse-button {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 26, 102, 0.6); }
  50% { transform: scale(1.03); box-shadow: 0 12px 30px rgba(255, 26, 102, 0.9); }
}

.btn-unlock-cta:active {
  transform: scale(0.96);
}

.locked-info {
  background: rgba(255, 42, 117, 0.1);
  border-top: 1px solid rgba(255, 42, 117, 0.2);
}

/* CAROUSEL CONTROLS */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--pink-neon);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.dots-container {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--pink-primary);
  width: 24px;
  border-radius: 10px;
  box-shadow: 0 0 10px var(--pink-glow);
}

.dot.lock-dot {
  font-size: 0.75rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FEATURES SECTION */
.features-section {
  display: flex;
  justify-content: space-around;
  padding: 0 20px;
  gap: 10px;
}

.feature-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 105, 180, 0.15);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CRITICAL ALERT BOX SECTION */
.alert-box-section {
  padding: 0 20px;
}

.alert-card {
  background: linear-gradient(135deg, #3d0718 0%, #24040e 100%);
  border: 1.5px solid var(--warning-red);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 8px 25px rgba(255, 26, 70, 0.25);
  position: relative;
  overflow: hidden;
}

.alert-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.alert-badge {
  background: rgba(255, 59, 96, 0.2);
  color: #ff5c7c;
  border: 1px solid rgba(255, 59, 96, 0.4);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-red {
  width: 6px;
  height: 6px;
  background-color: var(--warning-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--warning-red);
  animation: blink 1.2s infinite;
}

.alert-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.alert-message {
  font-size: 0.83rem;
  color: #f2c2d4;
  line-height: 1.5;
}

.alert-message strong {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--warning-red);
}

/* BOTTOM OFFER SECTION (#OFERTA) */
.offer-section {
  padding: 0 20px;
  scroll-margin-top: 70px;
}

.offer-card {
  background: linear-gradient(180deg, #380a29 0%, #200416 100%);
  border: 2px solid var(--pink-neon);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: 0 0 35px rgba(255, 42, 117, 0.35);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  position: relative;
}

.offer-tag {
  background: linear-gradient(90deg, #ff2a75, #ff65a3);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(255, 42, 117, 0.4);
}

.offer-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.offer-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.price-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 105, 180, 0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.price-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink-neon);
}

.price-main {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 15px var(--pink-glow);
}

.price-cents {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pink-neon);
}

.countdown-wrap {
  font-size: 0.78rem;
  color: var(--gold-accent);
  background: rgba(255, 215, 0, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 4px;
}

/* MAIN PROMINENT OFFER BUTTON */
.btn-main-offer {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #ff1a66 0%, #d60052 100%);
  border: 2px solid #ff85b3;
  color: #ffffff;
  padding: 18px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 26, 102, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-main-offer:hover .btn-glow {
  opacity: 1;
}

.btn-main-offer:active {
  transform: scale(0.97);
}

.btn-text {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-subtext {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.9;
  color: #ffd6e5;
}

.guarantee-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.offer-warning-footer {
  background: rgba(255, 59, 96, 0.12);
  border: 1px solid rgba(255, 59, 96, 0.3);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: #ffb8c6;
  line-height: 1.4;
  text-align: left;
}

/* FOOTER */
.app-footer {
  padding: 24px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 42, 117, 0.15);
  background: #12020c;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.app-footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-note {
  color: var(--pink-neon) !important;
  font-weight: 600;
}

/* 3 SECONDS PIX GENERATION OVERLAY */
.pix-loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 2, 10, 0.92);
  backdrop-filter: blur(14px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pix-loader-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.pix-loader-card {
  background: #2b071e;
  border: 2px solid var(--pink-neon);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-shadow: 0 0 50px rgba(255, 42, 117, 0.6);
}

.pix-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 42, 117, 0.2);
  border-top: 4px solid var(--pink-neon);
  border-right: 4px solid var(--pink-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  box-shadow: 0 0 20px var(--pink-glow);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.loader-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.progress-bar-wrap {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 105, 180, 0.3);
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff2a75, #ff85b3);
  box-shadow: 0 0 12px var(--pink-neon);
  transition: width 3s linear;
}

.countdown-seconds {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--pink-neon);
}

/* CHECKOUT SIMULATOR MODAL */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #26071b;
  border: 2px solid var(--pink-neon);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 400px;
  padding: 24px;
  position: relative;
  box-shadow: 0 0 40px rgba(255, 42, 117, 0.5);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
}

.modal-badge-pix {
  background: #00bdae;
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 6px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.modal-price {
  font-size: 0.9rem;
  color: var(--pink-neon);
}

.copied-alert-banner {
  background: rgba(0, 189, 174, 0.15);
  border: 1px solid #00bdae;
  color: #a4f5ed;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: left;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.qr-placeholder {
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.pix-copy-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pix-input-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: left;
}

.pix-copy-box input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 105, 180, 0.4);
  color: #ffffff;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.7rem;
  text-align: center;
  font-family: monospace;
}

.btn-copy-pix {
  background: rgba(255, 42, 117, 0.25);
  border: 1.5px solid var(--pink-neon);
  color: #fff;
  padding: 11px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.modal-warning-box {
  background: rgba(255, 59, 96, 0.15);
  border: 1px solid var(--warning-red);
  padding: 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #ffb3c1;
  text-align: center;
  line-height: 1.3;
}

.btn-confirm-sim {
  width: 100%;
  background: #00bdae;
  color: #000;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
}

/* TOAST NOTIFICATION */
.toast-notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, #00bdae, #008075);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 189, 174, 0.5);
  z-index: 3000;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  pointer-events: none;
  max-width: 90%;
  text-align: center;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* RESPONSIVENESS */
@media (max-width: 360px) {
  .carousel-slide {
    flex: 0 0 92%;
  }
  .btn-text {
    font-size: 0.88rem;
  }
  .price-main {
    font-size: 2.3rem;
  }
}
