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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #2B2B2B;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.text-rosa {
  color: #E47191;
}

.text-marrom {
  color: #8B5E3C;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #8B5E3C;
}

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

.section-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #3CB371 0%, #2E8B57 100%);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(60, 179, 113, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(60, 179, 113, 0.4);
}

.cta-button.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  width: 100%;
  max-width: 500px;
}

.whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(244, 225, 210, 0.3) 0%, rgba(255, 255, 255, 1) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(228, 113, 145, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #E47191;
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(228, 113, 145, 0.3);
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-text {
  font-size: 0.875rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(228, 113, 145, 0.2);
}

.testimonial-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-text {
  flex: 1;
}

.stars {
  color: #FCD34D;
  margin-bottom: 0.5rem;
}

.testimonial-quote {
  font-size: 0.875rem;
  color: #666;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  font-size: 0.75rem;
  color: #E47191;
  font-weight: 500;
}

/* Pain Section */
.pain-section {
  background: white;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 3rem;
}

.pain-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #FEF2F2;
  border-radius: 0.75rem;
}

.pain-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: #EF4444;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.solution-message {
  background: linear-gradient(90deg, rgba(228, 113, 145, 0.1) 0%, rgba(244, 225, 210, 0.1) 100%);
  border-left: 4px solid #E47191;
  padding: 1.5rem;
  border-radius: 0 0.75rem 0.75rem 0;
  text-align: left;
  font-size: 1.125rem;
  color: #8B5E3C;
}

/* Transformation Section */
.transformation-section {
  background: linear-gradient(135deg, rgba(244, 225, 210, 0.3) 0%, rgba(228, 113, 145, 0.1) 100%);
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.transformation-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.transformation-content {
  text-align: left;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.check-icon {
  width: 2rem;
  height: 2rem;
  background: #3CB371;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.transformation-cta {
  background: #E47191;
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Benefits Section */
.benefits-section {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(228, 113, 145, 0.05) 0%, rgba(244, 225, 210, 0.1) 100%);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-card.featured {
  background: linear-gradient(135deg, rgba(60, 179, 113, 0.1) 0%, rgba(60, 179, 113, 0.05) 100%);
  border: 2px solid rgba(60, 179, 113, 0.2);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  background: #E47191;
  color: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.benefit-card.featured .benefit-icon {
  background: #3CB371;
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: #8B5E3C;
  margin-bottom: 1rem;
}

.benefit-card.featured h3 {
  color: #3CB371;
}

/* Objections Section */
.objections-section {
  background: linear-gradient(135deg, #F9FAFB 0%, rgba(244, 225, 210, 0.2) 100%);
}

.objections-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.objection-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.objection-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.objection-header h3 {
  font-size: 1.25rem;
  color: #DC2626;
  font-weight: 600;
}

.objection-response {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-left: 4.5rem;
}

.objection-icon.negative {
  width: 3rem;
  height: 3rem;
  background: #DC2626;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.objection-icon.positive {
  width: 2rem;
  height: 2rem;
  background: #3CB371;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.objection-response p {
  font-size: 1.125rem;
  color: #374151;
}

/* Testimonials Section */
.testimonials-section {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card-full {
  background: linear-gradient(135deg, rgba(228, 113, 145, 0.05) 0%, rgba(244, 225, 210, 0.1) 100%);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #8B5E3C;
}

.testimonial-text {
  color: #374151;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-details {
  font-size: 0.75rem;
  color: #E47191;
  font-weight: 500;
}

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

/* Specialist Section */
.specialist-section {
  background: linear-gradient(135deg, rgba(244, 225, 210, 0.3) 0%, rgba(228, 113, 145, 0.05) 100%);
}

.specialist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.specialist-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.specialist-content {
  text-align: left;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.credential-icon {
  width: 2rem;
  height: 2rem;
  background: #E47191;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.specialist-quote {
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}

.quote-author {
  color: #E47191;
  font-weight: 600;
  margin-top: 1rem;
}

.specialist-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem;
  border-radius: 0.75rem;
}

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

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #E47191;
}

.stat-item .stat-label {
  font-size: 0.875rem;
  color: #666;
}

/* Offer Section */
.offer-section {
  background: white;
}

.offer-card {
  background: linear-gradient(135deg, rgba(244, 225, 210, 0.3) 0%, rgba(228, 113, 145, 0.1) 100%);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  max-width: 1000px;
  margin: 0 auto;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.offer-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.offer-content {
  text-align: left;
}

.offer-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.offer-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: #3CB371;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.price-card {
  background: #8B5E3C;
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

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

.price-value {
  font-size: 3rem;
  font-weight: 700;
}

.price-note {
  font-size: 0.875rem;
  opacity: 0.9;
}

.guarantee-card {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(60, 179, 113, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.guarantee-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.guarantee-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3CB371;
  margin-bottom: 0.5rem;
}

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

/* Urgency Section */
.urgency-section {
  background: linear-gradient(135deg, rgba(228, 113, 145, 0.1) 0%, #FEF2F2 100%);
}

.urgency-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.urgency-icon {
  width: 5rem;
  height: 5rem;
  background: #DC2626;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  animation: pulse 2s infinite;
}

.urgency-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.urgency-message {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.urgency-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.urgency-stat .urgency-number {
  font-size: 3rem;
  font-weight: 700;
  color: #DC2626;
}

.urgency-stat:last-child .urgency-number {
  color: #3CB371;
}

.urgency-stat .urgency-label {
  font-size: 0.875rem;
  color: #666;
}

.urgency-cta {
  font-size: 1.125rem;
  color: #8B5E3C;
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  background: white;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(90deg, rgba(244, 225, 210, 0.2) 0%, rgba(228, 113, 145, 0.1) 100%);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: white;
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #8B5E3C;
}

.faq-question:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #E47191;
  margin-right: 0.75rem;
}

.faq-arrow {
  color: #E47191;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-arrow.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.75rem;
  display: none;
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  color: #374151;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, rgba(228, 113, 145, 0.2) 0%, rgba(244, 225, 210, 0.3) 100%);
}

.final-cta-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.final-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 2rem;
  border-radius: 1rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.final-message {
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.final-cta-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.final-prompt {
  font-size: 1.125rem;
  color: #8B5E3C;
  font-weight: 600;
  margin-bottom: 1rem;
}

.final-details {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.final-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.final-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #666;
}

.feature-icon {
  color: #3CB371;
}

/* Footer */
.footer {
  background: #8B5E3C;
  color: white;
  padding: 3rem 0;
}

.footer-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.footer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-subtitle {
  color: #F4E1D2;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.social-link {
  background: #25D366;
  padding: 0.75rem;
  border-radius: 50%;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 225, 210, 0.3);
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(244, 225, 210, 0.8);
}

.footer-credits {
  font-size: 0.75rem;
  color: rgba(244, 225, 210, 0.6);
  margin-top: 0.5rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  animation: pulse 2s infinite;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-icon {
  width: 2rem;
  height: 2rem;
  color: white;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  section {
    padding: 3rem 0;
  }

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

  .hero-grid,
  .transformation-grid,
  .specialist-grid,
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .urgency-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .final-features {
    flex-direction: column;
    align-items: center;
  }

  .specialist-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .objection-response {
    margin-left: 0;
    margin-top: 1rem;
  }

  .offer-card {
    padding: 2rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .floating-whatsapp {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .floating-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

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

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

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
  }

  .stat-badge {
    position: static;
    margin-top: 1rem;
    align-self: center;
  }
}