/* ========== VARIÁVEIS ========== */
:root {
  --bg-dark-0: #0a0e14;
  --bg-dark-1: #111519;
  --bg-dark-2: #1a1f26;
  --text-light: #f0f4f8;
  --text-gray: #b8c4d0;
  --text-muted: #8a96a3;
  --primary: #42e695;
  --primary-dark: #2bc47a;
  --secondary: #3bb2ff;
  --accent: #ffb347;
  --glass: rgba(255, 255, 255, 0.04);
  --maxw: 1200px;
  --tab-bg: rgba(255, 255, 255, 0.03);
  --tab-border: rgba(255, 255, 255, 0.08);
  --tab-on: rgba(66, 230, 149, 0.18);
  --tab-on-border: rgba(66, 230, 149, 0.36);
  --focus: rgba(66, 230, 149, 0.55);
  --noise-opacity: 0.045;
  --noise-size: 160px;
  color-scheme: dark;
}

/* ========== RESET & BASE ========== */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: radial-gradient(1200px 600px at 15% 0%, rgba(66, 230, 149, 0.08), transparent 55%),
    radial-gradient(1000px 600px at 80% 20%, rgba(59, 178, 255, 0.06), transparent 55%),
    linear-gradient(180deg, var(--bg-dark-0) 0%, var(--bg-dark-1) 100%);
  color: var(--text-light);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Noise Texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: var(--noise-opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  background-size: var(--noise-size) var(--noise-size);
  mix-blend-mode: overlay;
}

/* Ajustar body com banner fixo */
body {
  padding-top: 65px;
}

/* ========== BANNER DE PROMOÇÃO ========== */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(66, 230, 149, 0.08) 0%, rgba(66, 230, 149, 0.05) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(66, 230, 149, 0.15);
  z-index: 9999;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  animation: fadeInDown 0.6s ease-out;
}

.promo-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease-in;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.promo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.promo-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.promo-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0a0e14;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.promo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.promo-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.3;
}

.promo-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.promo-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.promo-new {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.promo-installment {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 500;
}

.promo-cta {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: #0a0e14;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 250ms ease;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(66, 230, 149, 0.25);
}

.promo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 230, 149, 0.35);
  filter: brightness(1.1);
}

.promo-close {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.promo-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

/* ========== CONTAINER & LAYOUT ========== */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px;
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #111;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.skip-link:focus {
  left: 10px;
  z-index: 99999;
}

/* ========== HEADER ========== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(66, 230, 149, 0.25);
  flex: 0 0 auto;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.brand h1 {
  font-size: 18px;
  margin: 0;
}

.brand-subtitle {
  color: var(--text-gray);
  font-size: 13px;
}

nav {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: all 200ms ease;
}

.btn:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  transform: translateY(-2px);
}

.btn.primary {
  color: #0a0e14;
  border: 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(66, 230, 149, 0.35), 0 0 0 1px rgba(66, 230, 149, 0.1) inset;
}

.btn.primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(66, 230, 149, 0.45), 0 0 0 1px rgba(66, 230, 149, 0.1) inset;
}

.btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.btn-submit {
  width: 100%;
  margin-top: 12px;
}

/* ========== HERO SECTION ========== */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
}

.hero .left h2 {
  font-size: 40px;
  margin: 0 0 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .left p {
  color: var(--text-gray);
  margin: 0 0 18px;
  line-height: 1.6;
}

.ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Badge NOVO */
.badge-new {
  display: inline-block;
  background: linear-gradient(90deg, #ff6a3d, #ff3d00);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: 8px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ========== CARDS ========== */
.card {
  background: radial-gradient(900px 220px at 20% 0%, rgba(66, 230, 149, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012));
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.preview {
  height: 320px;
  border-radius: 10px;
  background-image: linear-gradient(180deg, var(--bg-dark-0), var(--bg-dark-1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* ========== HIGHLIGHT BOX ========== */
.highlight-box {
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.12), rgba(255, 106, 61, 0.08));
  border: 2px solid rgba(255, 179, 71, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
  text-align: center;
}

.highlight-box h3 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 24px;
}

.highlight-box p {
  color: var(--text-gray);
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
}

/* ========== TABS ========== */
.tabs-wrap {
  margin-top: 10px;
}

.tablist {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 10px;
}

.tab {
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--tab-border);
  color: var(--text-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  user-select: none;
  transition: all 200ms ease;
}

.tab:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  transform: translateY(-2px);
}

.tab[aria-selected='true'] {
  background: linear-gradient(90deg, rgba(66, 230, 149, 0.16), rgba(59, 178, 255, 0.1));
  border-color: var(--tab-on-border);
  box-shadow: 0 0 0 1px rgba(66, 230, 149, 0.08) inset;
}

.tab:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.tab .icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex: 0 0 auto;
  opacity: 0.95;
}

.tab .icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.tab .label {
  line-height: 1;
}

.tabpanel {
  margin-top: 10px;
  border-radius: 16px;
}

.tabpanel[hidden] {
  display: none;
}

.tabpanel.is-enter {
  animation: tabFadeIn 180ms ease-out;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tabpanel.is-enter {
    animation: none;
  }
}

.section-title {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* ========== O QUE VEM NA CAIXA ========== */
.box-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.box-item {
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(66, 230, 149, 0.08), rgba(59, 178, 255, 0.05));
  border: 1px solid rgba(66, 230, 149, 0.15);
  transition: all 200ms ease;
}

.box-item:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 230, 149, 0.35);
  box-shadow: 0 8px 24px rgba(66, 230, 149, 0.2);
}

.box-item-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.box-item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.box-item h4 {
  margin: 0 0 8px;
  color: var(--text-light);
  font-size: 16px;
}

.box-item p {
  margin: 0;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* ========== CARROSSEL ========== */
.carousel {
  position: relative;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-dark-0);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 200ms ease;
}

.carousel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 300ms ease;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 200ms ease;
  z-index: 2;
}

.carousel:hover .carousel-btn,
.carousel:focus-within .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: rgba(66, 230, 149, 0.8);
  border-color: var(--primary);
}

.carousel-btn.prev {
  left: 8px;
}

.carousel-btn.next {
  right: 8px;
}

.carousel-btn svg {
  width: 16px;
  height: 16px;
}

.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 200ms ease;
}

.carousel-dot.active,
.carousel-dot:hover {
  background: var(--primary);
}

.carousel-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-light);
  z-index: 2;
  border: 1px solid rgba(66, 230, 149, 0.3);
}

/* ========== STEPS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.step {
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 200ms ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 230, 149, 0.3);
  box-shadow: 0 8px 24px rgba(66, 230, 149, 0.15);
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.step h4 {
  margin: 0 0 8px;
  color: var(--text-light);
}

.step p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.prose {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.prose p {
  margin: 0 0 12px;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* ========== FAQ ========== */
.faq-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 200ms ease;
}

.faq-item:hover {
  border-color: rgba(66, 230, 149, 0.2);
}

.faq-question {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

.faq-question h4 {
  margin: 0;
  font-size: 15px;
  color: var(--text-light);
}

.faq-icon {
  color: var(--primary);
  font-size: 20px;
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
  padding: 0 18px;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 18px 16px;
}

.faq-answer ul {
  margin: 8px 0;
  padding-left: 20px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.testimonial {
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 200ms ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 230, 149, 0.3);
  box-shadow: 0 8px 24px rgba(66, 230, 149, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.testimonial-name {
  font-weight: 700;
  margin: 0;
  font-size: 14px;
}

.testimonial-pet {
  color: var(--text-muted);
  font-size: 13px;
}

.testimonial-text {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ========== FORM ========== */
.feedback-form {
  margin-top: 28px;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(66, 230, 149, 0.06), rgba(66, 230, 149, 0.02));
  border: 1px solid rgba(66, 230, 149, 0.15);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  font-family: inherit;
  font-size: 14px;
  transition: all 200ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(66, 230, 149, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-rating {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.star-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  transition: all 200ms ease;
  padding: 0;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
}

.star-btn:hover,
.star-btn.active {
  transform: scale(1.2);
  color: var(--primary);
}

.success-message {
  display: none;
  padding: 14px;
  border-radius: 10px;
  background: rgba(66, 230, 149, 0.2);
  border: 1px solid rgba(66, 230, 149, 0.4);
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
  font-weight: 600;
}

/* ========== FOOTER ========== */
footer {
  padding: 28px 0;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== FLOAT BUTTONS ========== */
.float-ctas {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  border: 0;
  transition: all 200ms ease;
}

.fab:hover {
  transform: translateY(-4px) scale(1.05);
}

.fab.wh {
  background: #25d366;
  color: #fff;
}

.fab.ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
}

.fab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fab.forge {
  position: relative;
  background: linear-gradient(90deg, #ffdd57, #ffb347);
  color: #0a0e14;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(255, 221, 87, 0.7);
  }
  50% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 15px rgba(255, 221, 87, 0);
  }
  100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(255, 221, 87, 0);
  }
}

.badge-novo {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff3d00;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 10px;
  animation: blink 1.5s infinite;
  box-shadow: 0 2px 8px rgba(255, 61, 0, 0.5);
  z-index: 1;
}

@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0.4;
  }
}

/* ========== COOKIE NOTICE ========== */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 20, 0.98);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-top: 1px solid rgba(66, 230, 149, 0.2);
  z-index: 10000;
  display: none;
}

.cookie-notice.show {
  display: block;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-gray);
}

.cookie-content a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-accept {
  background: var(--primary);
  color: #0a0e14;
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 200ms ease;
}

.cookie-accept:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .box-items {
    grid-template-columns: 1fr;
  }

  .promo-container {
    padding: 12px 20px;
  }

  .promo-content {
    gap: 12px;
  }

  .promo-title {
    font-size: 13px;
  }

  .promo-new {
    font-size: 16px;
  }

  .promo-cta {
    padding: 9px 20px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 110px;
  }

  .promo-container {
    flex-direction: column;
    gap: 12px;
    padding: 14px 16px 16px;
  }

  .promo-content {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .promo-text {
    align-items: center;
  }

  .promo-pricing {
    justify-content: center;
  }

  .promo-cta {
    width: 100%;
    padding: 12px 20px;
  }

  .promo-close {
    top: 10px;
    right: 10px;
    transform: none;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-accept {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .logo {
    width: 70px;
    height: 70px;
  }

  .hero .left h2 {
    font-size: 28px;
  }

  .container {
    padding: 18px;
  }

  .carousel {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .promo-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .promo-title {
    font-size: 12px;
  }

  .promo-pricing {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .promo-old {
    font-size: 12px;
  }

  .promo-new {
    font-size: 20px;
  }

  .promo-installment {
    font-size: 11px;
  }
}
