/*
Theme Name: P21 Reset Metabólico
Description: Tema para landing page de alta conversão do P21 Reset Metabólico
Version: 1.0
Author: Seu Nome
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Cores do tema */
:root {
    --primary: #27AE60;
    --primary-light: #2ECC71;
    --primary-lighter: #A9DFBF;
    --secondary: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.btn-hero {
    padding: 20px 40px;
    font-size: 1.3rem;
    width: 100%;
    max-width: 400px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(169, 223, 191, 0.1) 0%, #ffffff 100%);
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    space-y: 30px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(169, 223, 191, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.floating-badge {
    position: absolute;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.floating-badge.top-right {
    top: -15px;
    right: -15px;
}

.floating-badge.bottom-left {
    bottom: -15px;
    left: -15px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-secondary {
    background-color: var(--secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(169, 223, 191, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Value Stack */
.value-stack {
    background: linear-gradient(135deg, rgba(169, 223, 191, 0.1) 0%, #ffffff 100%);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow);
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.value-item:last-child {
    border-bottom: none;
}

.value-price {
    color: var(--text-light);
    text-decoration: line-through;
}

.total-price {
    text-align: center;
    margin-top: 30px;
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.current-price {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 700;
}

/* Timeline */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-lighter);
    transform: translateY(-50%);
}

.timeline-item {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.timeline-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Testimonials */
.testimonial {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    color: var(--primary-lighter);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-lighter);
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
}

/* Guarantee */
.guarantee-section {
    text-align: center;
}

.guarantee-card {
    background: linear-gradient(135deg, rgba(169, 223, 191, 0.1) 0%, #ffffff 100%);
    border: 2px solid var(--primary-lighter);
    border-radius: 30px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

/* Urgency */
.urgency-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer a {
    color: var(--primary-lighter);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid,
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .timeline::before {
        display: none;
    }
}