/* ================================================
   DEZPILA - Estilos Originais
   Todos os estilos mantidos exatamente como o original
   ================================================ */

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

html, body {
    background: #000 !important;
    color: #fff;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove margens do admin bar do WordPress */
html {
    margin-top: 0 !important;
}

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

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

ul, ol {
    list-style: none;
}

/* ================================================
   TOP BAR
   ================================================ */
.dp-topbar {
    background: #E63946;
    text-align: center;
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
}
.dp-topbar b {
    font-weight: 800;
}

/* ================================================
   HERO
   ================================================ */
.dp-hero-wrap {
    font-family: 'Inter', sans-serif;
    background: #000;
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
}
.dp-hero-wrap::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(230,57,70,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.dp-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(230,57,70,0.12);
    border: 1px solid rgba(230,57,70,0.25);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #E63946;
    margin-bottom: 28px;
}
.dp-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fafafa;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.dp-hero-title .dp-red, .dp-red {
    color: #E63946;
}
.dp-hero-desc {
    font-size: 16px;
    font-weight: 400;
    color: #999;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}
.dp-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.dp-btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E63946;
    color: #fff;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.dp-btn-red:hover {
    background: #C5303C;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230,57,70,0.3);
    color: #fff;
}
.dp-btn-red .dp-arrow {
    font-size: 18px;
    transition: transform 0.3s;
}
.dp-btn-red:hover .dp-arrow {
    transform: translateX(4px);
}
.dp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid #333;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.dp-btn-outline:hover {
    border-color: #555;
    background: rgba(255,255,255,0.03);
    color: #fff;
}
.dp-hero-member {
    font-size: 14px;
    color: #777;
}
.dp-hero-member a {
    color: #E63946;
    text-decoration: underline;
    font-weight: 600;
}
.dp-hero-member a:hover {
    color: #FF4D5A;
}

.dp-hero-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* HERO RESPONSIVE */
@media (max-width: 1000px) {
    .dp-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .dp-hero-title { font-size: 3rem; }
    .dp-hero-desc { margin-left: auto; margin-right: auto; }
    .dp-hero-buttons { justify-content: center; }
    .dp-hero-member { text-align: center; }
    .dp-hero-img { margin: 40px auto 0; max-width: 480px; }
}
@media (max-width: 600px) {
    .dp-hero-wrap { padding: 50px 0 60px; }
    .dp-hero-title { font-size: 2.2rem; }
    .dp-btn-red, .dp-btn-outline { padding: 14px 28px; font-size: 13px; }
    .dp-topbar { font-size: 12px; padding: 10px 16px; }
}

/* ================================================
   FEATURES
   ================================================ */
.dp-feat-wrap {
    font-family: 'Inter', sans-serif;
    background: #131316;
    padding: 80px 24px;
    border-top: 1px solid #1a1a1a;
}

.dp-feat-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dp-feat-header {
    text-align: center;
    margin-bottom: 48px;
}

.dp-feat-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    font-style: italic;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.dp-feat-sub {
    font-size: 15px;
    color: #888;
    font-weight: 400;
}

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

.dp-feat-card {
    background: #1A1A1E;
    border: 1px solid #2a2a2e;
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s;
}
.dp-feat-card:hover {
    border-color: #3a3a3e;
    transform: translateY(-4px);
}

.dp-feat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 22px;
    background: rgba(230,57,70,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dp-feat-icon svg {
    width: 26px;
    height: 26px;
    stroke: #E63946;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dp-feat-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.dp-feat-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    font-weight: 400;
}

/* FEATURES RESPONSIVE */
@media (max-width: 900px) {
    .dp-feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .dp-feat-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
    .dp-feat-wrap {
        padding: 50px 20px;
    }
}

/* ================================================
   PLANOS
   ================================================ */
.dp-plans-wrap {
    font-family: 'Inter', sans-serif;
    background: #0A0A0A;
    padding: 80px 24px;
}

.dp-plans-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dp-plans-header {
    text-align: center;
    margin-bottom: 52px;
}
.dp-plans-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.1;
}
.dp-plans-sub {
    font-size: 15px;
    color: #888;
    font-weight: 400;
}

.dp-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.dp-plan {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 36px 28px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}
.dp-plan:hover {
    border-color: #3a3a3a;
    transform: translateY(-4px);
}

.dp-plan.dp-popular {
    border: 2px solid #E63946;
}

.dp-plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #E63946;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 7px 22px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.dp-plan-name {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.dp-plan-screens {
    font-size: 14px;
    color: #777;
    font-weight: 400;
    margin-bottom: 20px;
}

.dp-plan-price {
    font-size: 48px;
    font-weight: 900;
    color: #E63946;
    letter-spacing: -2px;
    line-height: 1;
    font-style: italic;
}
.dp-plan-price .dp-curr {
    font-size: 22px;
    font-weight: 700;
    vertical-align: top;
    letter-spacing: 0;
    margin-right: 2px;
}

.dp-plan-period {
    font-size: 14px;
    color: #777;
    font-weight: 400;
    margin-bottom: 28px;
    margin-top: 4px;
}

.dp-plan-divider {
    height: 1px;
    background: #222;
    margin-bottom: 24px;
}

.dp-plan-feats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    text-align: left;
}
.dp-plan-feats li {
    font-size: 14px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-weight: 500;
}
.dp-plan-feats li .dp-chk {
    color: #E63946;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.dp-plan-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
}
.dp-plan-btn-dark {
    background: #2a2a2a;
    color: #ccc;
}
.dp-plan-btn-dark:hover {
    background: #333;
    color: #fff;
}
.dp-plan-btn-red {
    background: #E63946;
    color: #fff;
}
.dp-plan-btn-red:hover {
    background: #C5303C;
    box-shadow: 0 8px 30px rgba(230,57,70,0.3);
}

/* PLANOS RESPONSIVE */
@media (max-width: 1000px) {
    .dp-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .dp-plans-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
    .dp-plans-wrap {
        padding: 50px 20px;
    }
    .dp-plan-price {
        font-size: 40px;
    }
}

/* ================================================
   FAQ
   ================================================ */
.dp-faq-wrap {
    font-family: 'Inter', sans-serif;
    background: #131316;
    padding: 80px 24px;
}
.dp-faq-inner {
    max-width: 760px;
    margin: 0 auto;
}
.dp-faq-header {
    text-align: center;
    margin-bottom: 44px;
}
.dp-faq-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.1;
}
.dp-faq-title .dp-red {
    color: #E63946;
    font-style: italic;
}
.dp-faq-sub {
    font-size: 15px;
    color: #888;
}

.dp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dp-faq-item {
    background: #1e1e22;
    border: 1px solid #2a2a2e;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.dp-faq-item.dp-open {
    border-color: #3a3a3e;
}

.dp-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    gap: 16px;
    user-select: none;
    transition: color 0.3s;
}
.dp-faq-q:hover {
    color: #ccc;
}

.dp-faq-arr {
    flex-shrink: 0;
    font-size: 20px;
    color: #666;
    transition: transform 0.3s;
    line-height: 1;
}
.dp-faq-item.dp-open .dp-faq-arr {
    transform: rotate(180deg);
}

.dp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    font-size: 14px;
    color: #999;
    line-height: 1.7;
}
.dp-faq-item.dp-open .dp-faq-a {
    max-height: 220px;
    padding: 0 24px 22px;
}

@media (max-width: 600px) {
    .dp-faq-wrap { padding: 50px 16px; }
    .dp-faq-q { font-size: 14px; padding: 16px 18px; }
}

/* ================================================
   SUPORTE
   ================================================ */
.dp-sup-wrap {
    font-family: 'Inter', sans-serif;
    background: #151518;
    padding: 60px 24px;
    text-align: center;
}
.dp-sup-inner {
    max-width: 700px;
    margin: 0 auto;
}
.dp-sup-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.dp-sup-sub {
    font-size: 15px;
    color: #888;
    margin-bottom: 32px;
}
.dp-sup-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.dp-sup-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.dp-sup-btn-red { background: #E63946; }
.dp-sup-btn-red:hover { background: #C5303C; color: #fff; }
.dp-sup-btn-green { background: #25D366; }
.dp-sup-btn-green:hover { background: #1FBF5E; color: #fff; }
.dp-sup-btn svg { width: 20px; height: 20px; fill: #fff; }

/* ================================================
   FOOTER
   ================================================ */
.dp-foot-wrap {
    font-family: 'Inter', sans-serif;
    background: #0A0A0A;
    padding: 60px 24px 0;
    border-top: 1px solid #1a1a1a;
}
.dp-foot-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.dp-foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}
.dp-foot-brand {
    font-size: 24px;
    font-weight: 900;
    color: #E63946;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.dp-foot-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    max-width: 340px;
}
.dp-foot-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}
.dp-foot-col a {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
    text-decoration: none;
    transition: color 0.3s;
}
.dp-foot-col a:hover {
    color: #fff;
}
.dp-foot-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #777;
    margin-bottom: 14px;
}
.dp-foot-contact-icon {
    font-size: 16px;
    flex-shrink: 0;
}
.dp-foot-bottom {
    border-top: 1px solid #1a1a1a;
    margin-top: 44px;
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: #555;
}
@media (max-width: 768px) {
    .dp-foot-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .dp-foot-desc {
        margin: 0 auto;
    }
    .dp-foot-contact {
        justify-content: center;
    }
}
