/* CSS Design System - Desafio 30 Dias: Shape Definido */
:root {
    --bg-dark: #0a0c10;
    --bg-card: #12161f;
    --bg-card-hover: #1a202c;
    --accent-orange: #ff5500;
    --accent-green: #00e676;
    --accent-yellow: #ffcc00;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --danger-red: #ff3366;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-glow: 0 0 35px rgba(255, 85, 0, 0.35);
    --shadow-green: 0 0 30px rgba(0, 230, 118, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
}

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

.text-center { text-align: center; }
.text-light { color: #ffffff; }
.text-danger { color: var(--danger-red); }

.highlight-text {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Urgency Top Bar */
.top-bar {
    background: linear-gradient(90deg, #111, #1e0900, #111);
    border-bottom: 1px solid var(--accent-orange);
    padding: 10px 0;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pulse-badge {
    background: var(--accent-orange);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    animation: pulse 1.5s infinite;
}

.timer {
    font-family: monospace;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent-yellow);
    background: rgba(0,0,0,0.5);
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,204,0,0.3);
}

/* Hero Section */
.hero-section {
    padding: 60px 0 80px;
    background: radial-gradient(circle at 80% 20%, rgba(255, 85, 0, 0.15), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(0, 230, 118, 0.08), transparent 50%);
}

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

.tag-headline {
    display: inline-block;
    color: var(--accent-yellow);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    background: rgba(255, 204, 0, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.main-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.hero-cta-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff5500, #ff2200);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    padding: 20px 36px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 85, 0, 0.6);
}

.pulse-btn {
    animation: buttonPulse 2s infinite;
}

.security-badges {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    justify-content: flex-start;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.mockup-wrapper {
    position: relative;
}

.product-img {
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 85, 0, 0.2);
    border: 1px solid var(--border-color);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(18, 22, 31, 0.9);
    border: 2px solid var(--accent-orange);
    backdrop-filter: blur(15px);
    padding: 15px 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-orange);
    line-height: 1;
}

.badge-lbl {
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

/* Proof Bar */
.proof-bar {
    background: #0f131a;
    border-y: 1px solid var(--border-color);
    padding: 25px 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.proof-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-green);
}

.proof-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Problem Section */
.dark-bg {
    background-color: var(--bg-card);
}

.problem-section {
    padding: 90px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.problem-card {
    max-width: 800px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.01);
}

.problem-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.problem-highlight {
    background: rgba(255, 51, 102, 0.1);
    border-left: 4px solid var(--danger-red);
    padding: 20px;
    border-radius: var(--radius-sm);
    text-align: left;
}

.problem-highlight p {
    font-size: 1.15rem;
    color: #fff;
}

.quote-signature {
    display: block;
    margin-top: 10px;
    font-weight: 800;
    color: var(--accent-orange);
    font-family: var(--font-heading);
}

/* Solution & Weeks */
.solution-section {
    padding: 90px 0;
}

.sub-tag {
    color: var(--accent-green);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 10px auto 0;
}

.method-promise {
    margin: 40px 0;
    font-size: 1.15rem;
}

.weeks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.week-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.week-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.15);
}

.week-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.week-number {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-orange);
    background: rgba(255, 85, 0, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.week-icon { font-size: 1.5rem; }

.week-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

/* Deliverables Section */
.deliverables-section {
    padding: 90px 0;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.deliv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: background 0.3s ease;
}

.deliv-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.deliv-icon {
    font-size: 2.2rem;
    background: rgba(0,0,0,0.3);
    padding: 12px;
    border-radius: var(--radius-sm);
    line-height: 1;
}

.deliv-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--accent-yellow);
}

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

/* Bonus Section */
.bonus-section {
    padding: 90px 0;
}

.bonus-box {
    background: linear-gradient(135deg, #161d2b, #0f141f);
    border: 2px solid var(--accent-green);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-green);
}

.bonus-badge {
    background: var(--accent-green);
    color: #000;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}

.bonus-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.bonus-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.bonus-note {
    background: rgba(0, 230, 118, 0.08);
    border-left: 4px solid var(--accent-green);
    padding: 18px;
    border-radius: var(--radius-sm);
}

.bonus-note p {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0;
}

.app-img {
    width: 100%;
    max-width: 320px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    margin: 0 auto;
    display: block;
}

/* Imagine Section */
.imagine-section {
    padding: 90px 0;
}

.imagine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.imagine-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.imagine-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.imagine-card p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.imagine-footer-box {
    font-size: 1.3rem;
    background: rgba(255, 85, 0, 0.1);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px dashed var(--accent-orange);
}

/* CTA Offer Section */
.cta-offer-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 85, 0, 0.12), transparent 70%);
}

.urgency-callout {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-yellow);
    background: rgba(255, 204, 0, 0.08);
    padding: 15px 25px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.cta-reflection {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 50px;
    color: var(--text-secondary);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--accent-orange);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-glow);
}

.pricing-badge {
    background: var(--accent-orange);
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 20px;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    margin: 15px 0 5px;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-container {
    margin: 30px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
    display: block;
}

.current-price {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--accent-green);
    line-height: 1;
    margin: 5px 0;
}

.current-price .currency { font-size: 2rem; vertical-align: top; }
.current-price .cents { font-size: 2rem; }

.price-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-y: 1px solid var(--border-color);
    padding: 20px 0;
}

.pricing-features li {
    font-size: 1.05rem;
    color: #fff;
}

.btn-large {
    width: 100%;
    padding: 22px;
    font-size: 1.2rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    text-align: left;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: var(--radius-sm);
}

.shield-icon {
    font-size: 2rem;
}

.guarantee-badge strong {
    font-size: 0.85rem;
    color: var(--accent-green);
    display: block;
}

.guarantee-badge p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Footer Disclaimer */
.footer-section {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.disclaimer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

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

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 85, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 85, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 85, 0, 0); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-cta-box { align-items: center; }
    .security-badges { justify-content: center; }
    .weeks-grid { grid-template-columns: repeat(2, 1fr); }
    .deliverables-grid { grid-template-columns: 1fr; }
    .bonus-box { grid-template-columns: 1fr; text-align: center; }
    .imagine-grid { grid-template-columns: repeat(2, 1fr); }
    .main-title { font-size: 2.5rem; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

@media (max-width: 576px) {
    .weeks-grid { grid-template-columns: 1fr; }
    .imagine-grid { grid-template-columns: 1fr; }
    .main-title { font-size: 2rem; }
    .top-bar-content { flex-direction: column; text-align: center; }
}
