@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --primary: #9c27b0;
  --primary-dark: #7b1fa2;
  --primary-light: #e1bee7;
  --accent: #ff4081;
  --dark: #333;
  --light: #fff;
  --gray: #f5f5f5;
  --text: #444;
  --border-radius: 10px;
  --box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--light);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary-dark);
  margin-top: 2rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  color: var(--primary);
}

p {
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

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

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn:hover {
  background-color: #f50057;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.btn:hover::before {
  left: 100%;
}

.btn-large {
  padding: 20px 40px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

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

.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('hero_image.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(255,255,255,1), transparent);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--light);
}

.highlight {
  color: var(--accent);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.highlight:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-dark {
  background-color: var(--primary-dark);
  color: white;
  position: relative;
}

.section-dark::before,
.section-dark::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50px;
  background-size: 20px 40px;
  left: 0;
}

.section-dark::before {
  top: 0;
  background-image: linear-gradient(135deg, white 25%, transparent 25%),
                    linear-gradient(225deg, white 25%, transparent 25%);
  background-position: 0 0;
}

.section-dark::after {
  bottom: 0;
  background-image: linear-gradient(45deg, white 25%, transparent 25%),
                    linear-gradient(315deg, white 25%, transparent 25%);
  background-position: 0 0;
}

.section-dark h2 {
  color: white;
}

.section-light {
  background-color: var(--gray);
  position: relative;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px 0;
}

.feature {
  flex-basis: calc(33.333% - 30px);
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: -1;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.feature h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-light);
}

.feature-icon {
  font-size: 3rem;
  color: #ffffff; /* branco */
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.feature-icon::after {
 /* content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3; */
}

.testimonials-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  flex: 0 0 calc(50% - 20px);
  min-width: calc(50% - 20px);
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 0 10px 30px;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-light);
  font-family: 'Playfair Display', serif;
  opacity: 0.3;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 0px solid var(--primary-light);
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.slider-btn {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  color: white;
}

.price-box {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23e1bee7" stroke-width="1"/></svg>');
  background-size: 100px 100px;
  opacity: 0.1;
  z-index: -1;
}

.price {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin: 20px 0;
  position: relative;
  display: inline-block;
}

.price::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.price-original {
  text-decoration: line-through;
  color: #999;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-right: 15px;
  position: relative;
}

.price-original::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f44336;
  transform: rotate(-10deg);
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  padding: 20px;
  background-color: rgba(225, 190, 231, 0.1);
  border-radius: var(--border-radius);
}

.guarantee-img {
  width: 100px;
  margin-right: 20px;
}

.guarantee-text {
  text-align: left;
}

.author {
  display: flex;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.author::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.author-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 30px;
  border: 4px solid #ffffff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.author-bio h3 {
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.author-bio h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.faq-question {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  transition: var(--transition);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  transition: var(--transition);
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.show {
  max-height: 500px;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 60px;
  border-radius: var(--border-radius);
  text-align: center;
  color: white;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 80%);
  z-index: 0;
}

.cta-box h2 {
  color: white;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.countdown {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.countdown-item {
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 5px;
  min-width: 60px;
}

.countdown-number {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  display: block;
}

.countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.7;
}

.benefits-list {
  max-width: 800px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateX(10px);
}

.benefit-icon {
  min-width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
}

.benefit-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, transparent 70%);
}

.before-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0;
}

.before-after-img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.before-after-img:hover {
  transform: scale(1.02);
}

.before-after-caption {
  margin-top: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: center;
}

.footer {
  background: var(--dark);
  color: white;
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.urgency-bar {
  background: linear-gradient(90deg, var(--accent), #ff6b9b);
  color: white;
  text-align: center;
  padding: 15px;
  font-weight: 700;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 64, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 64, 129, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Floating elements animation */
.float {
  animation: float 3s ease-in-out infinite;
}

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

/* Responsive styles */
@media (max-width: 992px) {
  .feature {
    flex-basis: calc(50% - 20px);
  }
  
  .testimonial {
    flex: 0 0 calc(100% - 20px);
    min-width: calc(100% - 20px);
  }
  
  .hero {
    padding: 120px 0;
  }
}

@media (max-width: 768px) {
  .feature {
    flex-basis: 100%;
  }
  
  .hero {
    padding: 100px 0;
  }
  
  .author {
    flex-direction: column;
    text-align: center;
  }
  
  .author-img {
    margin: 0 auto 20px;
  }
  
  .author-bio h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .guarantee {
    flex-direction: column;
    text-align: center;
  }
  
  .guarantee-img {
    margin: 0 0 20px 0;
  }
  
  .guarantee-text {
    text-align: center;
  }
  
  .cta-box {
    padding: 30px;
  }
  
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .countdown {
    flex-wrap: wrap;
  }
  
  .countdown-item {
    flex: 1 0 calc(50% - 10px);
    margin-bottom: 10px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-icon {
    margin: 0 0 15px 0;
  }
}


