:root {
  --bg-dark: #000000;
  --bg-card: #0a0a0a;
  --bg-accent: #111111;
  --orange: #ff4b1f;
  /* Vibrant orange from images */
  --orange-muted: #cc3c19;
  --green: #37c837;
  /* Success green for buttons */
  --green-hover: #2eb02e;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #888888;
  --gray-dark: #1a1a1a;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--white);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-section {
  padding: 0 0 10px 0;
  background: #000;
  width: 100%;
}

.trust-section h2 {
  max-width: 90%;
  margin: 0 auto 50px;
}

.project-card {
  background: #0a0a0a;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 30px;
  width: 92%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
  padding: 2px;
  /* Space for the animated border */
  display: flex;
  flex-direction: column;
}

.project-card::before {
  content: '';
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: #1a1a1a;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: conic-gradient(transparent, var(--orange), transparent 30%);
  animation: rotate 4s linear infinite;
}

.project-card::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #0a0a0a;
  border-radius: 22px;
}

@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

.project-header {
  padding: 25px 20px;
  text-align: center;
  border-bottom: 1px solid #151515;
}

.project-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: #37c837;
  letter-spacing: 3px;
}

.project-image-box {
  position: relative;
  width: 100%;
  background: #0d0d0d;
  display: block;
  padding: 0;
  overflow: hidden;
}

.compare-badge {
  width: 90%;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  margin: 5px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.badge-planilha {
  background: #fff;
  color: #000;
}

.badge-planilha span {
  color: #37c837;
}

.badge-real {
  background: #000;
  color: #fff;
  border: 1px solid #37c837;
}

.badge-real span {
  color: #37c837;
}

.project-image-box::before {
  display: none;
}

.accuracy-bar {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  background: linear-gradient(to bottom, transparent, rgba(255, 75, 31, 0.05));
  position: relative;
  z-index: 2;
}

.accuracy-label {
  font-size: 0.6rem;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
}

.accuracy-value {
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 900;
}

.products-delivery-section {
  padding: 40px 0 30px 0;
  background: linear-gradient(180deg, #000 0%, #050505 100%);
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 50px;
}

@media (min-width: 992px) {
  .delivery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.delivery-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  /* Keep visible by default */
}

.delivery-card:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.delivery-type-tag {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.delivery-type-tag span {
  text-decoration: none !important;
  display: block;
  margin-top: 5px;
}

.laptop-mockup {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px;
  perspective: 1000px;
}

.laptop-screen {
  background: #050505;
  border: 8px solid #222;
  border-bottom: 15px solid #222;
  border-radius: 12px 12px 0 0;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.laptop-screen img {
  display: none;
}

.data-anim-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  padding: 15% 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Animated Data Loading Effect */
.data-anim-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  padding: 15% 10%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Animation 1: Horizontal Scanning (Card 1) */
.card-simulacao .data-line {
  height: 8px;
  background: rgba(255, 75, 31, 0.05);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 75, 31, 0.1);
}

.card-simulacao .data-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: scanning 1.5s infinite linear;
}

@keyframes scanning {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Animation 2: Vertical Growth (Card 2) */
.card-projeto .data-anim-overlay {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-around;
  padding-bottom: 20%;
}

.card-projeto .data-line {
  width: 12px;
  height: 0;
  background: var(--orange);
  border-radius: 6px 6px 0 0;
  animation: grow 2s infinite ease-in-out alternate;
  box-shadow: 0 0 15px rgba(255, 75, 31, 0.3);
}

@keyframes grow {
  0% {
    height: 10%;
    opacity: 0.3;
  }

  100% {
    height: 80%;
    opacity: 1;
  }
}

.data-line:nth-child(2) {
  animation-delay: 0.2s;
}

.data-line:nth-child(3) {
  animation-delay: 0.4s;
}

.data-line:nth-child(4) {
  animation-delay: 0.6s;
}

.laptop-base {
  height: 8px;
  background: #333;
  width: 110%;
  margin-left: -5%;
  border-radius: 0 0 10px 10px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 25%;
  height: 4px;
  background: #1a1a1a;
  border-radius: 0 0 5px 5px;
}

.delivery-label-badge {
  background: var(--orange);
  color: #fff;
  padding: 5px 20px;
  border-radius: 4px;
  font-weight: 900;
  font-size: 0.8rem;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.delivery-list-container {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
  border-radius: 12px;
}

.delivery-list-title {
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--white);
  text-align: center;
}

.delivery-list {
  list-style: none;
  padding: 0;
}

.delivery-list li {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.delivery-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

/* Testimonials */
.testimonials-section {
  padding: 40px 0;
  background: transparent;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 20px;
  border-radius: 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-photo {
  width: 50px;
  height: 50px;
  background: #222;
  border-radius: 50%;
  border: 2px solid var(--orange);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 0.6rem;
  color: #444;
}

.testimonial-info h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
  margin-top: 0;
}

.testimonial-stars {
  color: #ffbd2e;
  font-size: 0.7rem;
}

.testimonial-text {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}

@media (min-width: 768px) {
  .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}


.text-center {
  text-align: center;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}

.text-orange {
  color: var(--orange);
}

.text-green {
  color: var(--green);
}

/* --- Top Bar --- */
.top-bar {
  background-color: #ff0000;
  color: white;
  text-align: center;
  padding: 8px 0;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* --- Hero --- */
.hero {
  padding: 40px 0;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero-mockup {
  margin: 30px auto;
  max-width: 100%;
  padding: 0 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smart-spreadsheet {
  width: 100%;
  max-width: 500px;
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.sheet-header {
  background: #111;
  padding: 12px 15px;
  border-bottom: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sheet-title {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.sheet-body {
  padding: 10px;
}

.sheet-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #151515;
  font-size: 0.7rem;
}

.sheet-row.head {
  border-bottom: 2px solid #222;
  color: var(--gray);
  font-weight: 700;
}

.sheet-cell.val {
  color: var(--white);
  font-family: monospace;
}

.sheet-cell.orange {
  color: var(--orange);
  font-weight: 700;
}

/* Animation for generating values */
.sheet-row .val {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  animation: typing 2.5s steps(20, end) infinite;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.total-bar {
  margin-top: 25px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
  border: 1px solid rgba(255, 75, 31, 0.4);
  color: white;
  padding: 25px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 75, 31, 0.05);
  width: 100%;
}

.total-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gray);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.total-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  text-shadow: 0 0 30px rgba(255, 75, 31, 0.4);
  white-space: nowrap;
  font-family: var(--font-display);
}

@media (max-width: 480px) {
  .total-value {
    font-size: 1.7rem;
  }

  .total-bar {
    padding: 20px 15px;
  }
}

.mobile-badges {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

.m-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  padding: 10px;
  border-radius: 8px;
  flex: 1;
  max-width: 160px;
  text-align: center;
}

.m-badge .label {
  font-size: 0.5rem;
  color: var(--gray);
  display: block;
}

.m-badge .value {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green);
}

@keyframes badge-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.how-it-works-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.how-it-works-step:last-child {
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  .how-it-works-step {
    flex-direction: row;
    justify-content: space-between;
  }

  .how-it-works-step:nth-child(even) {
    flex-direction: row-reverse;
  }

  .how-it-works-step .step-text {
    width: 45%;
  }

  .how-it-works-step .step-visual {
    width: 50%;
  }
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 75, 31, 0.1);
  line-height: 1;
  margin-bottom: -20px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
}

.step-visual {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 1px solid #222;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.step-visual::before {
  display: none;
}

.step-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  to {
    left: 200%;
  }
}

.phone-mock img,
.hero-mockup img,
.bonus-card img,
.author-photos img {
  display: none;
  /* Hide broken icons */
}

.hero-mockup::before {
  display: none;
}

.phone-mock:nth-child(1)::before {
  content: 'Planilhas Antigas';
}

.phone-mock:nth-child(3)::before {
  content: 'Simulador Novo';
}

.badge-roas .label {
  font-size: 0.6rem;
  color: #10b981;
  font-weight: 700;
  display: block;
}

.badge-roas .value {
  font-size: 1.2rem;
  color: #10b981;
  font-weight: 900;
}

.badge-lucro .label {
  font-size: 0.6rem;
  color: #10b981;
  font-weight: 700;
  display: block;
}

.badge-lucro .value {
  font-size: 1.2rem;
  color: #10b981;
  font-weight: 900;
}

.feature-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 25px 0;
  flex-wrap: wrap;
  width: 100%;
}

.pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #1a1a1a;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--white);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .pill {
    padding: 6px 10px;
    font-size: 0.6rem;
    gap: 6px;
  }
}

.pill:hover {
  border-color: var(--orange);
  background: rgba(255, 75, 31, 0.05);
}

.pill-check {
  width: 16px;
  height: 16px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--orange);
  background: rgba(255, 75, 31, 0.1);
}

/* --- Buttons --- */
.btn-primary {
  display: block;
  background-color: var(--orange);
  color: white;
  text-decoration: none;
  font-weight: 900;
  padding: 18px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  margin: 20px auto;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 15px rgba(255, 75, 31, 0.4);
  transition: transform 0.2s;
  white-space: nowrap;
  /* Garante que o texto fique em uma única linha */
}

@media (max-width: 480px) {
  .btn-primary {
    font-size: 0.9rem;
    /* Reduz um pouco o tamanho no mobile para caber tudo */
    padding: 18px 20px;
  }
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-green {
  background-color: var(--green);
  box-shadow: 0 4px 15px rgba(55, 200, 55, 0.4);
}

/* --- Results Grid --- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 40px 0;
}

.result-phone {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #1a1a1a;
  aspect-ratio: 9/16;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-phone::before {
  content: 'Modelo de Orçamento';
  color: #222;
  font-weight: 800;
}

.format-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 900;
  z-index: 3;
}

.result-roas {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(16, 185, 129, 0.5);
  padding: 4px 8px;
  border-radius: 50px;
  font-size: 10px;
  color: #10b981;
  font-weight: 900;
}

/* --- Before/After --- */
.before-after {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 40px 0;
}

.phone-mock {
  width: 40%;
  position: relative;
}

.phone-mock img {
  width: 100%;
}

.arrow-right {
  font-size: 2rem;
  color: var(--orange);
}

/* --- Bullets Section --- */
.bullets-section {
  background-color: var(--white);
  color: var(--bg-dark);
  padding: 80px 0;
  position: relative;
}

.bullets-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--bg-dark), transparent);
  pointer-events: none;
}

.bullet-card {
  background-color: black;
  color: white;
  padding: 20px 25px;
  border-radius: 12px;
  margin-bottom: 15px;
  font-weight: 800;
  text-align: left;
  border-left: 5px solid var(--orange);
  font-size: 1.1rem;
}

/* --- Table Styles --- */
.results-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.8rem;
  color: black;
}

.results-table th,
.results-table td {
  border: 1px solid #777;
  padding: 8px;
  text-align: left;
}

.results-table .highlight-yellow {
  background-color: #ffff00;
}

.results-table .highlight-green {
  background-color: #ccffcc;
}

/* --- Bonus Section --- */
.bonus-section {
  padding: 30px 0 40px 0;
  background-color: #050505;
  position: relative;
}

.bonus-header {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.bonus-pill {
  background: rgba(255, 75, 31, 0.1);
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 30px rgba(255, 75, 31, 0.2);
  letter-spacing: 1px;
}

.bonus-main-title {
  font-size: 2.2rem;
  max-width: 550px;
  line-height: 1.1;
  color: var(--white);
}

.bonus-timer {
  color: #ff3b30;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

.bonus-card {
  background: #0a0a0a;
  border-radius: 24px;
  padding: 40px 20px 30px;
  margin-bottom: 50px;
  position: relative;
  border: 1px solid #1a1a1a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  color: var(--white);
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
}

.bonus-title {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: 0.5px;
}

.bonus-title strong {
  font-weight: 800;
}

.bonus-pricing {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bonus-price-old {
  color: #ff5f56;
  /* Vermelho mais vibrante para fundo escuro */
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

.bonus-price-free {
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 900;
  font-family: var(--font-display);
  text-shadow: 0 0 20px rgba(55, 200, 55, 0.3);
}

.gift-icon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
}

.bonus-card img {
  display: none;
}

.bonus-card-placeholder {
  width: 100%;
  height: 140px;
  background: transparent;
  border: none;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bonus-icon-svg {
  width: 110px;
  height: 110px;
  filter: drop-shadow(0 0 25px rgba(255, 75, 31, 0.4));
  transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-icon-svg {
  transform: scale(1.1) rotate(2deg);
  filter: drop-shadow(0 0 35px rgba(255, 75, 31, 0.6));
}

/* --- Blueprint Drawing Animation --- */
.anim-draw {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 4s ease-in-out infinite alternate;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.anim-glow {
  animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    filter: drop-shadow(0 0 5px var(--orange));
  }

  to {
    filter: drop-shadow(0 0 15px var(--orange));
  }
}

/* --- Shield Pulse Animation --- */
.anim-pulse {
  transform-origin: center;
  animation: svgPulse 2s ease-in-out infinite;
}

@keyframes svgPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.anim-check {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawCheck 2s ease-in-out infinite;
}

@keyframes drawCheck {

  0%,
  20% {
    stroke-dashoffset: 100;
  }

  50%,
  100% {
    stroke-dashoffset: 0;
  }
}

/* --- Document Shine Animation --- */
.anim-shine {
  position: relative;
}

.anim-shine-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: moveShine 3s infinite linear;
}

@keyframes moveShine {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}

.anim-alert {
  animation: alertFlicker 1.5s ease-in-out infinite;
}

@keyframes alertFlicker {

  0%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 5px var(--orange));
  }

  50% {
    opacity: 0.8;
    filter: drop-shadow(0 0 15px var(--orange));
  }
}

/* Camadas de profundidade para ícones high-end */
.svg-layer-low {
  opacity: 0.15;
}

.svg-layer-mid {
  opacity: 0.45;
}

.svg-layer-high {
  opacity: 1;
}

.anim-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px) scale(1.02);
  }
}


.bonus-tag {
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* --- Final Offer --- */
/* --- Final Offer --- */
.offer-section {
  padding: 0 0 80px 0;
  background: linear-gradient(180deg, #050505 0%, #000 100%);
  position: relative;
}

.offer-stripe {
  background: var(--orange);
  color: white;
  padding: 10px 0;
  font-weight: 900;
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 50px;
  text-transform: uppercase;
  box-shadow: 0 5px 20px rgba(255, 75, 31, 0.3);
}

.offer-headline {
  font-size: 1.8rem;
  margin-bottom: 50px;
  line-height: 1.2;
}

.vital-badge {
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  margin-bottom: 30px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
}

.offer-box {
  border-radius: 32px;
  padding: 50px 25px;
  position: relative;
  z-index: 1;
  max-width: 510px;
  margin: 0 auto;
  border: 1px solid rgba(255, 75, 31, 0.25);
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(5, 5, 5, 0.9) 100%);
  backdrop-filter: blur(15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 75, 31, 0.12);
  animation: floatOfferBox 6s ease-in-out infinite;
}

@keyframes floatOfferBox {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 75, 31, 0.12);
  }

  50% {
    transform: translateY(-12px);
    box-shadow: 0 45px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(255, 75, 31, 0.18);
  }
}

.offer-checklist {
  list-style: none;
  padding: 0;
  margin: 35px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.offer-checklist li {
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
  line-height: 1.4;
}

.offer-checklist li strong {
  color: #fff;
  font-weight: 800;
}

.check-icon {
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(55, 200, 55, 0.3);
}

/* --- Scanner Animation OFFER --- */
.minimal-house-svg {
  width: 180px;
  height: 180px;
  overflow: visible;
}

/* --- Offer Product Image --- */
.offer-product-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

/* Efeito de flutuação para a imagem */
.offer-visual-container.active .offer-product-img {
  animation: imgFloat 4s ease-in-out infinite alternate;
}

@keyframes imgFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

.offer-visual {
  width: 100%;
  height: auto;
  min-height: 250px;
  margin-bottom: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
}

.offer-visual-container {
  width: 100%;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}


.price-box {
  margin: 20px 0;
}

.price-old {
  text-decoration: line-through;
  font-size: 0.9rem;
  color: var(--gray);
}



.price-main {
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--green);
  text-shadow: 0 0 30px rgba(46, 213, 115, 0.5);
  margin-top: 10px;
}


/* --- Footer --- */
.footer {
  padding: 40px 0;
  font-size: 0.7rem;
  color: var(--gray);
}