/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #fd288d;
    --primary-pink-dark: #ea1e79;
    --bg-dark: #1a1a1a;
    --bg-darker: #0d0d0d;
    --bg-card: #2b1821;
    --text-white: #ffffff;
    --text-cream: #efecef;
    --text-gray: #a0a0a0;
    --border-radius: 12px;
    --shadow: 0 10px 40px rgba(253, 40, 141, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-white);
    background: var(--bg-dark);
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight {
    color: var(--primary-pink);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-pink);
    color: var(--text-white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-pink-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    color: var(--text-white);
    letter-spacing: 2px;
}

.btn-header {
    background: var(--primary-pink);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: var(--primary-pink-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(253, 40, 141, 0.15);
    color: var(--primary-pink);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-cream);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.hero-image {
    position: relative;
    width: 280px;
    height: 280px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-pink);
}

.circle-accent {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px solid rgba(253, 40, 141, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.2; }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-darker);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-pink);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-number {
    display: inline-block;
    background: var(--primary-pink);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* For Who Section */
.for-who {
    padding: 100px 0;
    background: var(--bg-dark);
}

.for-who h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.for-who-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.for-who-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(253, 40, 141, 0.08);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(253, 40, 141, 0.2);
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.for-who-item p {
    font-size: 1rem;
    color: var(--text-cream);
}

.for-who-item strong {
    color: var(--primary-pink);
}

/* How it Works */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-darker);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.step-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Results */
.results {
    padding: 100px 0;
    background: var(--bg-dark);
}

.results h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.result-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--primary-pink);
}

.result-card.single img {
    width: 100%;
    height: auto;
    display: block;
}

.result-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

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

.disclaimer {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 2rem;
    font-style: italic;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-darker);
}

.about .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.about-image {
    position: relative;
    width: 250px;
    height: 250px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-pink);
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.credentials {
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-cream);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-content strong {
    color: var(--primary-pink);
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-darker);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid var(--primary-pink);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-pink);
    color: var(--text-white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 2.5rem;
    margin: 1.5rem 0 1rem;
}

.pricing-description {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-cream);
    font-size: 0.95rem;
    padding-left: 30px;
    position: relative;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: bold;
}

.pricing-value {
    margin: 2rem 0;
}

.price {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.5rem;
    color: var(--primary-pink);
}

.payment-info {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.guarantee {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 1.5rem;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--bg-dark);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-pink);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    color: var(--text-cream);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-pink);
}

.footer-brand p,
.footer-contact p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-disclaimers {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.footer-disclaimers p {
    color: var(--text-gray);
    font-size: 0.8rem;
    max-width: 700px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Chat Widget */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-pink);
    color: var(--text-white);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(253, 40, 141, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.1);
    background: var(--primary-pink-dark);
}

.chat-widget {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    max-width: calc(100vw - 40px);
    height: 450px;
    background: var(--bg-darker);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(253, 40, 141, 0.3);
}

.chat-widget.active {
    display: flex;
}

.chat-header {
    background: var(--primary-pink);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.chat-header h4 {
    font-size: 1rem;
    margin: 0;
}

.chat-status {
    font-size: 0.75rem;
    opacity: 0.9;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: var(--bg-dark);
}

.message {
    margin-bottom: 1rem;
    max-width: 85%;
}

.bot-message {
    background: var(--bg-card);
    padding: 0.75rem 1rem;
    border-radius: 12px 12px 12px 0;
}

.bot-message p {
    font-size: 0.9rem;
    color: var(--text-cream);
    margin: 0;
}

.user-message {
    background: var(--primary-pink);
    padding: 0.75rem 1rem;
    border-radius: 12px 12px 0 12px;
    margin-left: auto;
}

.user-message p {
    font-size: 0.9rem;
    margin: 0;
}

.chat-input-container {
    padding: 1rem;
    background: var(--bg-darker);
    display: flex;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input-container input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: var(--bg-dark);
    color: var(--text-white);
    font-size: 0.9rem;
}

.chat-input-container input::placeholder {
    color: var(--text-gray);
}

.chat-send-btn {
    background: var(--primary-pink);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s ease;
}

.chat-send-btn:hover {
    background: var(--primary-pink-dark);
}

/* ===================== */
/* RESPONSIVE - TABLET   */
/* ===================== */
@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .hero-content {
        max-width: 55%;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        margin: 0 0 2rem;
    }

    .hero-image {
        width: 350px;
        height: 350px;
    }

    .circle-accent {
        width: 400px;
        height: 400px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .for-who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .result-images img {
        height: 250px;
    }

    .about .container {
        flex-direction: row;
        text-align: left;
        gap: 4rem;
    }

    .about-image {
        width: 300px;
        height: 300px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ===================== */
/* RESPONSIVE - DESKTOP  */
/* ===================== */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 5.5rem;
    }

    .hero-image {
        width: 400px;
        height: 400px;
    }

    .circle-accent {
        width: 460px;
        height: 460px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .for-who-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps {
        flex-direction: row;
        justify-content: space-between;
    }

    .step {
        flex-direction: column;
        text-align: center;
        flex: 1;
        gap: 1rem;
    }

    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================== */
/* WHATSAPP FLOAT BUTTON */
/* ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Footer links */
.footer-contact a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
