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

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

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.2;
}

p {
    margin-bottom: 20px;
    font-size: 18px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Cores e Destaques */
.highlight {
    color: #ff3366;
    font-weight: 800;
}

.highlight-secondary {
    color: #ff3366;
    font-weight: 800;
}

.highlight-text {
    color: #ff3366;
    font-weight: 600;
}

.gold {
    color: #ffd700;
    font-weight: 700;
}

/* Botão CTA */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff3366, #ff5e62);
    color: white;
    font-weight: 700;
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 50px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.6);
}

/* Header / Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/fundo.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.logo {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

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

.hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-name h2 {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(45deg, #ff3366, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}

/* Seções */
.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #ff3366, #ffd700);
}

/* Benefits Section */
.benefits {
    background-color: #1a1a1a;
}

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

/* Problem Section */
.problem {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('images/fundo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

/* Benefits Main Section */
.benefits-main {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background-color: #222;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.benefit-icon {
    font-size: 40px;
    color: #ff3366;
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: #ff3366;
    margin-bottom: 15px;
    font-size: 22px;
}

/* Features Section */
.features {
    background-color: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h3 {
    padding: 20px 20px 10px;
    color: #ff3366;
}

.feature-card p {
    padding: 0 20px 20px;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials {
    background-color: #121212;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 80px;
    color: rgba(255, 51, 102, 0.1);
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: serif;
}

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

.testimonial h4 {
    color: #ff3366;
    font-weight: 600;
}

/* About / Quem Somos Section */
.about {
    background-color: #1a1a1a;
    padding: 80px 0;
}
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.about-logo-side {
    flex: 0 0 auto;
    text-align: center;
}
.about-logo-side img {
    width: 120px;
    filter: brightness(0) invert(1);
    margin: 0 auto 16px;
}
.about-logo-side .insta-handle {
    color: #ff3366;
    font-weight: 700;
    font-size: 15px;
}
.about-logo-side .insta-handle i {
    margin-right: 6px;
}
.about-text {
    flex: 1;
    min-width: 260px;
}
.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 16px;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.about-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #ff3366;
}
.about-stat span {
    font-size: 14px;
    color: #aaa;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('images/fundo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pricing-card {
    background-color: #ff3366;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 30px;
    color: white;
    text-align: center;
}

.pricing-header h3 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 800;
}

.limited-offer .limited-badge {
    background-color: #ffcc00;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9em;
    margin-bottom: 20px;
    display: inline-block;
}

.pricing-header .price {
    font-size: 1.2em;
    text-decoration: line-through;
    margin-top: 20px;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-header p:nth-of-type(2) {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
}

.highlight-price-box {
    border: 3px solid #ffcc00;
    padding: 15px 0;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 250px;
}

.highlight-price-box .price-highlight {
    font-size: 3em;
    font-weight: 900;
    color: #ffcc00;
    margin: 0;
    line-height: 1;
}

.highlight-price-box .price-highlight-description {
    font-size: 1.2em;
    font-weight: 600;
    color: white;
    margin: 0;
}

.pricing-header .price-description {
    font-size: 1.1em;
    margin-top: 15px;
    margin-bottom: 20px;
}

.countdown-container {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

#countdown {
    font-size: 1.8em;
    font-weight: 700;
    color: #ffcc00;
}

.pricing-features {
    text-align: left;
    margin-top: 30px;
}

.pricing-features p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.pricing-features p::before {
    content: "✓ ";
    color: #ffcc00;
    font-weight: 700;
}

.pricing-card .cta-button {
    background: white;
    color: #ff3366;
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pricing-card .cta-button:hover {
    background-color: #f0f0f0;
    color: #e62e5c;
}

/* Guarantee Section */
.guarantee {
    background-color: #1a1a1a;
}

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

/* FAQ Section */
.faq {
    background-color: #121212;
}

.faq-item {
    background-color: #222;
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #ff3366;
    font-size: 20px;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    margin-bottom: 0;
}

/* CTA Final Section */
.cta-final {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('images/fundo.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
}

.cta-final p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 20px;
}

.scarcity-warning {
    background-color: rgba(255, 51, 102, 0.15);
    border: 2px solid #ff3366;
    border-radius: 10px;
    padding: 15px;
    margin: 0 auto 30px;
    max-width: 600px;
}

.scarcity-warning p {
    margin: 5px 0;
    font-size: 18px;
}

.scarcity-warning i {
    color: #ffd700;
    margin: 0 5px;
}

.stock-warning {
    font-size: 20px !important;
    font-weight: 600;
}

.stock-warning .highlight {
    color: #ffd700;
    font-weight: 800;
    font-size: 24px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 60px 0 20px;
}

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

.footer-logo, .footer-contact {
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 24px;
    color: #ff3366;
    margin-top: 15px;
}

.footer-logo-img {
    max-width: 120px;
    margin: 0 auto 15px;
    filter: brightness(0) invert(1);
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ff3366;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-contact i {
    margin-right: 10px;
    color: #ff3366;
}

.footer-contact a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ff3366;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .product-name h2 {
        font-size: 48px;
    }
    
    .price {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .product-name h2 {
        font-size: 36px;
    }
    
    .price {
        font-size: 36px;
    }
}


