/* Estilos base - Mobile First */
:root {
    --primary-color: #2C3E50;
    --secondary-color: #E74C3C;
    --accent-color: #f37012;
    --text-color: #333;
    --light-color: #d8e0db;
    --dark-color: #2c3e50;
    --success-color: #27AE60;
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background: linear-gradient(-90deg, #ecedf8 30%, #1900ff52 100%);
    padding-bottom: 60px;
    }

/* Social Proof Header */
.social-proof {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    text-align: center;
}

.profile-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.profile-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.profile-name {
    font-weight: 600;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    padding: 20px;
    text-align: center;
}

.headline {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.product-image-container {
    margin: 20px auto;
    max-width: 100%;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Benefits Section */
.benefits {
    padding: 20px;
    background-color: white;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.benefits h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.benefits-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2327AE60"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
    background-repeat: no-repeat;
}

/* Testimonials */
.testimonials {
    padding: 20px;
}

.testimonials h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.testimonial-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-card span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Offer Section */
.offer {
    padding: 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    margin: 20px 0;
    border-radius: 8px;
}

.price-container {
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1rem;
    display: block;
}

.price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-color);
    display: block;
    margin: 5px 0;
}

.installments {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-button {
    background-color: var(--success-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #2ECC71;
    transform: translateY(-2px);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.guarantee img {
    width: 50px;
    height: auto;
}

.guarantee p {
    font-size: 0.9rem;
    text-align: left;
    max-width: 250px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

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

/* Media Queries para Desktop */
@media (min-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }
    
    .subheadline {
        font-size: 1.5rem;
    }
    
    .product-image-container {
        max-width: 600px;
    }
    
    .benefits, .testimonials, .offer {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-card {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Seção Sobre Nós */
.about-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
}

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

.about-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    object-fit: cover;
    aspect-ratio: 1/1;
}

.about-content {
    flex: 1;
}

.about-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-social {
    margin-top: 25px;
    text-align: center;
}

.about-social p {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    color: white;
    background-color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Layout para desktop */
@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
        align-items: center;
        padding: 40px;
    }
    
    .about-content h3 {
        text-align: left;
        font-size: 1.8rem;
    }
    
    .about-social {
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

/* Estilos da Seção FAQ */
.faq-section {
    padding: 50px 20px;
    background-color: #f8fafc;
    margin: 40px 0;
  }
  
  .faq-section h2 {
    text-align: center;
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .faq-item {
    max-width: 800px;
    margin: 0 auto 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .faq-question {
    width: 100%;
    padding: 18px 25px;
    text-align: left;
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .faq-question::after {
    content: "+";
    font-size: 1.5rem;
  }
  
  .faq-question.active::after {
    content: "-";
  }
  
  .faq-question:hover {
    background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 100%);
  }
  
  .faq-answer {
    padding: 0;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-answer p {
    padding: 20px;
    margin: 0;
    line-height: 1.7;
  }
  
  .faq-answer.show {
    max-height: 500px;
    padding: 0;
  }
  
  .faq-contact {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
  }
  
  .faq-contact a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .faq-contact a:hover {
    color: #1e40af;
    text-decoration: underline;
  }
  
  /* Responsividade */
  @media (max-width: 600px) {
    .faq-question {
      padding: 15px 20px;
      font-size: 1rem;
    }
    
    .faq-answer p {
      padding: 15px;
    }
  }

  .countdown-container {
    width: 95%;
    background: linear-gradient(135deg, #ea5252 0%, #ec0505 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin: 30px auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.countdown-container span {
    display: inline-block;
    min-width: 60px;
    position: relative;
}

.countdown-container span:not(:last-child)::after {
    content: ":";
    position: absolute;
    right: -5px;
    color: rgba(255, 255, 255, 0.7);
}