/* Sem Parar clone — estilos principais */
:root {
    --sp-pink: #D60B52;
    --sp-pink-dark: #b00945;
    --sp-pink-light: #fce4ef;
    --sp-dark: #1a1a1a;
    --sp-gray: #666;
    --sp-gray-bg: #f5f5f5;
    --sp-white: #fff;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--sp-dark);
    line-height: 1.5;
    background: var(--sp-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: var(--sp-white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.logo svg { display: block; height: 32px; width: auto; }

.nav-main {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav-main a {
    text-decoration: none;
    color: var(--sp-dark);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-main a:hover { background: var(--sp-gray-bg); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    background: var(--sp-pink);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover { background: var(--sp-pink-dark); }

.btn-outline {
    background: transparent;
    color: var(--sp-pink);
    border: 2px solid var(--sp-pink);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-outline:hover { background: var(--sp-pink-light); }

.btn-block { width: 100%; }

.btn-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
}

/* Hero */
.hero { position: relative; overflow: hidden; }

.hero-slide {
    display: none;
    min-height: 420px;
    align-items: center;
}

.hero-slide.active { display: flex; }

.hero-slide--tag {
    background: linear-gradient(105deg, #1a1a1a 55%, #2d1020 55%);
}

.hero-slide--guincho {
    background: linear-gradient(105deg, #0d2847 55%, #163a5f 55%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
    width: 100%;
}

.hero-content { max-width: 480px; color: #fff; }

.hero-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.9;
}

.hero-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 24px;
}

.hero-note {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    opacity: 0.7;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0;
}

.hero-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

/* Plans */
.plans-section { padding: 56px 0; background: var(--sp-gray-bg); }

.section-head { text-align: center; margin-bottom: 32px; }

.section-head h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.plan-tabs {
    display: inline-flex;
    background: #fff;
    border-radius: 999px;
    padding: 4px;
    box-shadow: var(--shadow);
}

.plan-tab {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sp-gray);
    cursor: pointer;
}

.plan-tab.active { background: var(--sp-pink); color: #fff; }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.plan-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card--featured {
    border: 2px solid var(--sp-pink);
    transform: scale(1.02);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sp-pink);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.plan-name { font-size: 22px; font-weight: 800; margin-bottom: 8px; }

.plan-offer { font-size: 14px; color: var(--sp-gray); margin-bottom: 4px; }

.plan-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

.plan-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--sp-dark);
    margin: 8px 0 16px;
}

.plan-price small { font-size: 14px; font-weight: 500; color: var(--sp-gray); }

.plan-features { list-style: none; margin-bottom: 20px; flex: 1; }

.plan-features li {
    font-size: 14px;
    padding: 6px 0 6px 22px;
    position: relative;
    color: #444;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sp-pink);
    font-weight: 700;
}

.plan-note { font-size: 12px; color: var(--sp-gray); margin-bottom: 16px; }

/* Features */
.features-strip { padding: 56px 0; }

.features-strip h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.feature-item { text-align: center; padding: 24px; }

.feature-icon { font-size: 40px; display: block; margin-bottom: 12px; }

.feature-item h3 { font-size: 18px; margin-bottom: 8px; }

.feature-item p { font-size: 14px; color: var(--sp-gray); }

/* CTA */
.cta-banner {
    background: linear-gradient(135deg, var(--sp-pink) 0%, #a00840 100%);
    color: #fff;
    padding: 56px 24px;
    text-align: center;
}

.cta-banner h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }

.cta-banner p { opacity: 0.9; margin-bottom: 24px; }

.cta-banner .btn-primary { background: #fff; color: var(--sp-pink); }

.cta-banner .btn-primary:hover { background: #f5f5f5; }

/* Footer */
.site-footer { background: var(--sp-dark); color: #ccc; padding: 48px 0 24px; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 16px; }

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    padding: 4px 0;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .header-inner { height: 56px; }
    .nav-main, .header-actions .btn-outline:not(.btn-menu) { display: none; }
    .btn-menu { display: block; }
    .hero-slide { min-height: 360px; }
    .hero-slide--tag, .hero-slide--guincho {
        background: linear-gradient(180deg, #1a1a1a 0%, #2d1020 100%);
    }
    .plan-card--featured { transform: none; }
}

@media (min-width: 769px) {
    .btn-menu { display: none; }
}
