/*
Theme Name: Método Proibido
Theme URI: https://metodoproibido.com
Author: Método Proibido
Author URI: https://metodoproibido.com
Description: Tema de página de vendas para o Método Proibido - Perca 10kg em 30 dias
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: metodo-proibido
*/

/* ========================================
   CSS VARIABLES / DESIGN TOKENS
======================================== */
:root {
    --background: #0d0d0d;
    --foreground: #f5f3ef;
    --card: #141414;
    --card-hover: #1a1a1a;
    --muted: #262626;
    --muted-foreground: #999999;
    --border: #333333;
    
    --red: #e63946;
    --red-light: #ef5a68;
    --red-dark: #c42a36;
    
    --green: #22a559;
    --green-light: #2ecc71;
    --green-dark: #1a7f44;
    
    --destructive: #dc3545;
    
    --radius: 0.75rem;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ========================================
   RESET & BASE STYLES
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

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

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

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

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

.text-gradient-red {
    background: linear-gradient(135deg, var(--red-light), var(--red), var(--red-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-red {
    color: var(--red);
}

.text-green {
    color: var(--green);
}

.text-muted {
    color: var(--muted-foreground);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    box-shadow: 0 4px 30px -5px rgba(34, 165, 89, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 40px -5px rgba(34, 165, 89, 0.7);
}

.btn-pulse {
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 20px -5px rgba(34, 165, 89, 0.5); }
    50% { box-shadow: 0 0 40px -5px rgba(34, 165, 89, 0.7); }
}

/* ========================================
   CARDS
======================================== */
.card {
    background: linear-gradient(180deg, var(--card), #0f0f0f);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: scale(1.02);
}

.card-border-gradient {
    border: 2px solid transparent;
    background: 
        linear-gradient(var(--card), var(--card)) padding-box,
        linear-gradient(135deg, var(--red), var(--red-dark)) border-box;
}

.card-glow {
    box-shadow: 0 0 60px -15px rgba(34, 165, 89, 0.4);
}

/* ========================================
   BADGES & TAGS
======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-red {
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    color: var(--red);
}

.badge-danger {
    background: rgba(220, 53, 69, 0.2);
    color: var(--destructive);
}

/* ========================================
   ICONS (usando pseudo-elementos ou SVG inline)
======================================== */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-lg {
    width: 2.5rem;
    height: 2.5rem;
}

.icon-red {
    color: var(--red);
}

.icon-green {
    color: var(--green);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.8),
        rgba(13, 13, 13, 0.6),
        var(--background)
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.logo-icon {
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: -0.5rem;
    background: rgba(230, 57, 70, 0.3);
    filter: blur(1rem);
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: 0.05em;
}

.logo-line {
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--red), transparent);
    margin-top: 0.25rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   PROBLEM SECTION
======================================== */
.problem-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, var(--background), var(--card));
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.problem-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--destructive);
}

/* ========================================
   SOLUTION SECTION
======================================== */
.solution-section {
    padding: 5rem 1rem;
}

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

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.benefit-card h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   WHAT YOU GET SECTION
======================================== */
.whatyouget-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, var(--card), var(--background));
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

.item-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background: rgba(230, 57, 70, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.item-value {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    padding: 5rem 1rem;
}

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

.testimonial-card {
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    color: rgba(230, 57, 70, 0.2);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    width: 1rem;
    height: 1rem;
    color: var(--red);
    fill: var(--red);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(245, 243, 239, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-name {
    font-weight: 700;
}

.author-location {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.result-badge {
    background: rgba(230, 57, 70, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    color: var(--red);
    font-weight: 700;
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing-section {
    padding: 5rem 1rem;
    background: linear-gradient(
        to bottom,
        var(--background),
        var(--card),
        var(--background)
    );
}

.pricing-card {
    max-width: 48rem;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
}

.price-original {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.price-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--muted-foreground);
}

.price-value {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 6rem);
}

.price-installments {
    color: var(--red);
    font-weight: 500;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge svg {
    color: var(--red);
}

/* Guarantee Box */
.guarantee-box {
    max-width: 32rem;
    margin: 3rem auto 0;
    text-align: center;
}

.guarantee-box svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--red);
    margin: 0 auto 1rem;
}

.guarantee-box h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guarantee-box p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    padding: 5rem 1rem;
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--red);
}

.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ========================================
   FINAL CTA SECTION
======================================== */
.final-cta-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, var(--background), var(--card));
    text-align: center;
}

.final-cta-section h2 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.final-cta-section p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 36rem;
    margin: 0 auto 2rem;
}

.final-cta-section .btn {
    margin-bottom: 1.5rem;
}

.final-cta-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    padding: 2rem 1rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer p {
    margin-bottom: 0.5rem;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
======================================== */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .trust-badges {
        flex-direction: column;
    }
}
