/* Main Styles for Clonatran Sales Funnel */
:root {
  --primary-color: #0056b3;
  --secondary-color: #004494;
  --accent-color: #ff6b00;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

ul {
  list-style: none;
}

.highlight {
  color: var(--accent-color);
  font-weight: 700;
}

/* Header Styles */
header {
  background-color: white;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

header.header-scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 40px;
  transition: all 0.3s ease;
}

.header-scrolled .logo img {
  height: 35px;
}

.header-cta .cta-button {
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
}

/* CTA Button Styles */
.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(255, 107, 0, 0.2);
  text-transform: uppercase;
}

.cta-button:hover {
  background-color: #e05e00;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(255, 107, 0, 0.3);
}

/* Hero Section */
.hero {
  padding-top: 80px;
  background-image: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
  color: white;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  position: relative;
}

.hero-image img {
  max-width: 80%;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.hero-benefits {
  margin-bottom: 2rem;
}

.hero-benefits li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.hero-benefits li i {
  color: var(--accent-color);
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.hero-cta {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
  }
}

.hero-cta:hover {
  background-color: #e05e00;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.hero-security {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-security i {
  margin-right: 0.5rem;
}

.ml-3 {
  margin-left: 1rem;
}

/* Section Styles */
section {
  padding: 5rem 5%;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
}

.section-title p {
  font-size: 1.2rem;
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Pain Points Section */
.pain-points {
  background-color: white;
}

.problems-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-item {
  padding: 2rem;
  background-color: var(--light-color);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.problem-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.problem-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  margin-bottom: 1rem;
}

.problem-icon i {
  font-size: 2.5rem;
  color: var(--danger-color);
}

.problem-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.problem-cta {
  text-align: center;
  margin-top: 3rem;
}

.problem-cta p {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.scroll-down {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Solution Section */
.solution {
  background-color: var(--light-color);
}

.solution-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.solution-image img {
  max-width: 70%;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.solution-text {
  flex: 1;
  min-width: 300px;
  padding-left: 2rem;
}

.solution-intro {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.ingredients {
  margin-bottom: 2rem;
}

.ingredient-item {
  display: flex;
  margin-bottom: 1.5rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s ease;
}

.ingredient-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.ingredient-item:nth-child(2) {
  transition-delay: 0.2s;
}

.ingredient-item:nth-child(3) {
  transition-delay: 0.4s;
}

.ingredient-icon {
  margin-right: 1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
  width: 40px;
  text-align: center;
}

.ingredient-text h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.solution-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.feature-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  margin-bottom: 1rem;
}

.feature-item i {
  font-size: 1.8rem;
  color: var(--success-color);
  margin-bottom: 0.5rem;
}

/* Benefits Section */
.benefits {
  background-color: white;
}

.benefits-container {
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  margin-bottom: 2rem;
  background-color: var(--light-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.benefit-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.benefit-item:nth-child(2) {
  transition-delay: 0.1s;
}

.benefit-item:nth-child(3) {
  transition-delay: 0.2s;
}

.benefit-item:nth-child(4) {
  transition-delay: 0.3s;
}

.benefit-item:nth-child(5) {
  transition-delay: 0.4s;
}

.benefit-item:nth-child(6) {
  transition-delay: 0.5s;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
}

.benefit-content {
  flex: 1;
  padding: 1.5rem;
}

.benefit-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--light-color);
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-item {
  flex: 1;
  min-width: 300px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-item:nth-child(2) {
  transition-delay: 0.2s;
}

.testimonial-item:nth-child(3) {
  transition-delay: 0.4s;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto auto 0;
  border: 5px solid white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  padding: 1.5rem;
  text-align: center;
}

.testimonial-stars {
  margin-bottom: 1rem;
  color: var(--warning-color);
}

.testimonial-text p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-text h4 {
  color: var(--gray-color);
  font-weight: 600;
}

/* Offers Section */
.offers {
  background-color: white;
}

.offers-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.offer-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background-color: var(--light-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.offer-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.offer-card:nth-child(2) {
  transition-delay: 0.2s;
}

.offer-card:nth-child(3) {
  transition-delay: 0.4s;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.offer-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom-left-radius: 10px;
  z-index: 1;
}

.offer-badge.floating {
  animation: float-badge 2s ease-in-out infinite;
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.offer-image {
  background-color: white;
  padding: 2rem;
  text-align: center;
}

.offer-image img {
  max-height: 200px;
  transition: all 0.3s ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.05);
}

.offer-content {
  padding: 2rem;
}

.offer-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.offer-subtitle {
  color: var(--gray-color);
  margin-bottom: 1.5rem;
}

.offer-price {
  margin-bottom: 1.5rem;
}

.old-price {
  text-decoration: line-through;
  color: var(--gray-color);
  font-size: 0.9rem;
}

.current-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.3rem 0;
}

.installments {
  font-size: 0.9rem;
  color: var(--gray-color);
}

.stock-left {
  margin: 0.5rem 0 1.5rem;
  padding: 0.5rem;
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger-color);
  border-radius: 5px;
  font-size: 0.9rem;
  text-align: center;
}

.stock-left i {
  margin-right: 0.5rem;
}

.offer-features {
  margin-bottom: 1.5rem;
}

.offer-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.offer-features li i {
  color: var(--success-color);
  margin-right: 0.8rem;
  margin-top: 0.2rem;
}

.offer-cta {
  display: block;
  background-color: var(--accent-color);
  color: white;
  padding: 1rem;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  transition: all 0.3s ease;
}

.offer-cta:hover {
  background-color: #e05e00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.payment-methods {
  text-align: center;
}

.payment-icons {
  margin-top: 1rem;
}

.payment-icons i {
  font-size: 2rem;
  margin: 0 0.5rem;
  color: var(--gray-color);
}

/* FAQ Section */
.faq {
  background-color: var(--light-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(0, 86, 179, 0.05);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.faq-question i {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
  animation: fadeDown 0.5s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item.active .faq-question {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Guarantee Section */
.guarantee {
  background-color: #fff8e1;
  padding: 4rem 5%;
}

.guarantee-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.guarantee-image {
  flex: 1;
  min-width: 250px;
  padding: 2rem;
  text-align: center;
}

.guarantee-image img {
  max-width: 150px;
  animation: pulse 3s infinite;
}

.guarantee-text {
  flex: 2;
  min-width: 300px;
  padding: 2rem;
}

.guarantee-text h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.guarantee-text p {
  margin-bottom: 1.5rem;
}

/* Last CTA Section */
.last-cta {
  background-image: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
  color: white;
  text-align: center;
}

.last-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.last-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.last-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.last-cta .cta-button {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
}

.security-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.security-item {
  margin: 0 1.5rem;
  text-align: center;
}

.security-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-logo {
  flex: 2;
  min-width: 250px;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-links {
  flex: 1;
  min-width: 150px;
  margin-bottom: 2rem;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
  margin-bottom: 1rem;
}

/* Animation Classes */
.animate {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content, .solution-content, .guarantee-content {
    flex-direction: column;
  }
  
  .hero-text {
    order: 2;
    padding-right: 0;
    text-align: center;
  }
  
  .hero-image {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .solution-text {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .benefit-number {
    width: 50px;
  }
  
  .offer-cta, .hero-cta, .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .last-cta h2 {
    font-size: 2rem;
  }
  
  .security-item {
    margin: 1rem;
    flex: 1 1 100px;
  }
} 