/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header */
.header {
  background: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.nav {
  position: absolute;
  right: 20px;
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #333;
  border-bottom: 2px solid #333;
  padding-bottom: 2px;
}

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

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.highlight {
  color: #ec4899;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
  color: #fde047;
}

.underline {
  text-decoration: underline;
  font-weight: bold;
  color: white;
}

.hero-cta {
  margin-bottom: 2rem;
}

.btn-primary {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  border: 4px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.offer-banner {
  background: #dc2626;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  font-size: 1.1rem;
  font-weight: bold;
}

.strikethrough {
  text-decoration: line-through;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #2563eb;
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  border: 4px solid white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.payment-icon {
  font-size: 2.5rem;
  color: #fbbf24;
}

.payment-text {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.2;
}

.guarantee-text {
  margin-top: 1rem;
  color: #d1d5db;
  font-size: 0.9rem;
}

/* Animations */
.pulse {
  animation: pulse 2s infinite;
}

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

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Product Section */
.product-section {
  padding: 5rem 0;
  background: white;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 4rem;
  font-size: 1.1rem;
}

.formol-free {
  color: #dc2626;
  font-weight: bold;
  font-size: 1.2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.product-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-card {
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid;
}

.benefit-card.green {
  background: #f0fdf4;
  border-color: #22c55e;
}

.benefit-card.pink {
  background: #fdf2f8;
  border-color: #ec4899;
}

.benefit-card.purple {
  background: #faf5ff;
  border-color: #a855f7;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.benefit-card.green h3 {
  color: #22c55e;
}
.benefit-card.pink h3 {
  color: #ec4899;
}
.benefit-card.purple h3 {
  color: #a855f7;
}

.highlight-text {
  font-weight: bold;
}

.benefit-card.green .highlight-text {
  color: #22c55e;
}
.benefit-card.pink .highlight-text {
  color: #ec4899;
}
.benefit-card.purple .highlight-text {
  color: #a855f7;
}

/* Results Section */
.results-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #faf5ff, #fdf2f8);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.results-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.result-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.special-offer {
  background: linear-gradient(135deg, #dc2626, #ec4899);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.special-offer h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.free-shipping {
  color: #fde047;
}

.pay-delivery {
  color: #86efac;
}

.urgency-box {
  background: #fef3c7;
  padding: 1.5rem;
  border-radius: 15px;
  border: 4px solid #f59e0b;
  margin-bottom: 2rem;
}

.urgency-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 1rem;
}

.units-left {
  color: #dc2626;
  font-weight: bold;
}

.security-text {
  color: #22c55e;
}

.zero-risk {
  color: #a855f7;
  font-weight: bold;
}

.guarantee-banner {
  background: #dc2626;
  color: white;
  padding: 0.75rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.deliveries-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Videos Section */
.videos-section {
  padding: 5rem 0;
  background: white;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

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

.btn-secondary {
  background: linear-gradient(135deg, #dc2626, #ec4899);
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fdf2f8, #faf5ff);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.check {
  color: #22c55e;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-item strong {
  color: #ec4899;
}

.approval-section {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.anvisa-badge {
  background: #dcfce7;
  color: #22c55e;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
}

.stars {
  color: #fbbf24;
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.btn-transform {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 1rem 0;
}

.btn-transform:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.price-info {
  margin-top: 1rem;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.old-price {
  text-decoration: line-through;
}

.free-shipping-text {
  font-size: 1.2rem;
  color: #22c55e;
  font-weight: bold;
}

.payment-info {
  font-size: 1.1rem;
}

/* Pay on Delivery Section */
.pay-delivery-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #22c55e, #10b981);
  color: white;
  text-align: center;
}

.pay-delivery-section h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.pay-delivery-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Revolution Section */
.revolution-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  text-align: center;
}

.revolution-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: bold;
  margin-bottom: 2rem;
}

.revolution-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.revolution-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.revolution-content strong {
  color: #ec4899;
}

.testimonial-highlight {
  background: #fef3c7;
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #f59e0b;
  margin-top: 1rem;
}

.testimonial-highlight p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #d97706;
  margin: 0;
}

/* Final CTA Section */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.today {
  color: #fde047;
  font-weight: bold;
}

.btn-final {
  background: white;
  color: #a855f7;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.btn-final:hover {
  background: #f3f4f6;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.final-offer {
  background: rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.final-price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.final-shipping {
  font-size: 1.2rem;
  color: #fde047;
  font-weight: bold;
}

.final-payment {
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .product-grid,
  .results-grid,
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .video-container iframe {
    height: 250px;
  }

  .payment-badge {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .payment-text {
    font-size: 1.2rem;
  }
}

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-final {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .offer-banner {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .benefit-card {
    padding: 1rem;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }
}
