/* --- RESET BÁSICO --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Roboto', sans-serif; 
    background-color: #050810; 
    background-image: linear-gradient(rgba(5,8,16,0.95), rgba(5,8,16,0.95)), url('img/cracked-bg.jpg'); 
    background-size: cover;
    background-attachment: fixed;
    color: #fff; 
    overflow-x: hidden; 
}

.container { max-width: 600px; margin: 0 auto; padding: 0 20px; text-align: center; }

/* --- CORES --- */
:root {
    --yellow-power: #FFD700; 
    --red-alert: #D90429;     
    --red-hover: #b00220;
    --green-btn: #28a745; 
    --green-hover: #218838;
    --silver: #E0E0E0;
    --card-bg: #121620;
}

/* --- ESTILOS NOVOS (BOTÕES DE IMAGEM + BÔNUS + VÍDEO FIX) --- */
.img-btn-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
}

.img-btn {
    width: 100%;
    max-width: 380px; 
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
    display: block;
    border-radius: 10px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.img-btn:hover { 
    transform: scale(1.03); 
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.bonus-dark-box {
    background-color: #fff;
    color: #000;
    border: 2px dashed var(--red-alert);
    padding: 20px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 600px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* --- SALES POP --- */
.sales-pop {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    padding: 15px;
    z-index: 9999;
    transform: translateX(-150%);
    transition: transform 0.5s ease-in-out;
    border-left: 5px solid var(--green-btn);
    max-width: 320px;
}
.sales-pop.show { transform: translateX(0); }
.sales-pop-img img { width: 60px; height: auto; margin-right: 15px; }
.sales-pop-content p { margin: 2px 0; font-size: 13px; text-align: left; }
.sales-time { font-size: 11px; color: #777; }

/* --- BARRA DE TOPO --- */
.top-bar { background-color: #000; border-bottom: 2px solid var(--yellow-power); padding: 10px 0; position: sticky; top: 0; z-index: 100; }
.top-flex { display: flex; justify-content: space-between; align-items: center; }
.top-text-left { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; font-style: italic; color: #fff; }
.top-badge-right { background-color: var(--red-alert); color: #fff; font-weight: bold; font-size: 10px; padding: 5px 10px; border-radius: 4px; text-transform: uppercase; }
.blink-text { animation: blink-anim 1s infinite; }
@keyframes blink-anim { 0% { opacity: 1; color: #fff; } 50% { opacity: 1; color: var(--yellow-power); } 100% { opacity: 1; color: #fff; } }

/* --- TARJA FRETE --- */
.shipping-strip {
    background-color: var(--red-alert);
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse-strip 2s infinite;
}
@keyframes pulse-strip { 0% { background-color: var(--red-alert); } 50% { background-color: #b00220; } 100% { background-color: var(--red-alert); } }

/* --- HERO SECTION --- */
.hero-section { padding-top: 30px; background-color: transparent; }
.main-headline { font-family: 'Oswald', sans-serif; font-size: 32px; line-height: 1.1; color: var(--silver); margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.text-yellow { color: var(--yellow-power); text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
.sub-headline { font-size: 16px; color: #ccc; line-height: 1.5; margin-bottom: 30px; }
.sub-headline strong { color: #fff; }
.hero-image-container { margin: 20px 0; display: flex; justify-content: center; align-items: center; }
.product-img { width: 100%; max-width: 360px; height: auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8)); }

/* --- BENEFITS --- */
.benefits-section { padding-bottom: 30px; }
.benefit-list { list-style: none; padding: 0; margin: 0 auto 30px auto; text-align: left; max-width: 500px; }
.benefit-list li { font-size: 16px; margin-bottom: 15px; display: flex; align-items: flex-start; color: #eee; line-height: 1.4; }
.icon-yellow { color: var(--yellow-power); font-size: 20px; margin-right: 15px; min-width: 25px; }
.benefit-text { flex: 1; }

/* --- TICKER --- */
.scrolling-ticker { background-color: #000; border-top: 3px solid var(--yellow-power); border-bottom: 3px solid var(--yellow-power); padding: 15px 0; overflow: hidden; white-space: nowrap; position: relative; width: 100%; }
.ticker-content { display: inline-block; animation: scroll-left 15s linear infinite; }
.ticker-content span { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 700; color: #fff; text-transform: uppercase; margin-right: 50px; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- SECTIONS GERAIS --- */
.specialist-section, .lifestyle-section, .power-section, .performance-section { padding: 50px 0; background-color: rgba(0,0,0,0.3); border-bottom: 1px solid #222; }
.transformation-section { padding: 50px 0; background-color: rgba(11, 16, 30, 0.8); border-top: 2px solid var(--yellow-power); border-bottom: 2px solid var(--yellow-power); }
.safety-section { padding: 60px 0; background-color: transparent; border-top: 1px solid #333; }

/* --- PROSTATE/MECHANISM SECTION CORRIGIDA --- */
.prostate-connection { 
    padding: 50px 0; 
    background-color: rgba(0,0,0,0.5); 
    border-bottom: 1px solid #222;
    overflow: hidden; 
}
.connection-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
    align-items: center; 
    width: 100%;
}
.connection-img-box { 
    width: 100%; 
    max-width: 500px; 
    margin: 0 auto;
    border: 2px solid #333; 
    padding: 10px; 
    background-color: #000; 
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.connection-img { 
    width: 100%; 
    height: auto; 
    display: block; 
    border-radius: 5px; 
}
.img-caption { 
    font-size: 12px; color: #777; margin-top: 10px; font-style: italic; text-align: center;
}
.connection-text-box { text-align: center; width: 100%; }
.conn-headline { font-family: 'Oswald', sans-serif; font-size: 28px; color: #fff; margin-bottom: 20px; line-height: 1.2; }
.conn-body { font-size: 16px; line-height: 1.6; color: #ccc; margin-bottom: 20px; }

/* Headlines Gerais */
.spec-headline, .life-headline, .power-headline, .trans-headline, .safety-headline, .pricing-headline, .faq-headline {
    font-family: 'Oswald', sans-serif; 
    font-size: 28px; 
    color: #fff; 
    line-height: 1.2; 
    margin-bottom: 20px;
}
.text-red { color: var(--red-alert); }
.text-green { color: var(--green-btn); }

/* --- VIDEO WRAPPERS --- */
.video-wrapper, .power-video-container { 
    position: relative; width: 100%; max-width: 500px; margin: 0 auto 30px auto; 
    border: 2px solid var(--yellow-power); border-radius: 10px; overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
}
.specialist-video, .mech-video { width: 100%; display: block; }
.video-overlay-box { 
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); 
    background-color: rgba(255, 215, 0, 0.9); padding: 20px 40px; border-radius: 10px; 
    text-align: center; color: #000; cursor: pointer; border: 2px solid #fff; 
}

/* --- DISCREET BOX --- */
.discreet-shipping-block { margin-top: 20px; background-color: #fff; color: #000; padding: 15px; border-radius: 10px; border: 2px solid var(--yellow-power); max-width: 500px; margin-left: auto; margin-right: auto; }
.discreet-content { display: flex; align-items: center; gap: 15px; text-align: left; }
.discreet-icon-img { width: 50px; height: auto; }
.discreet-info h4 { font-family: 'Oswald', sans-serif; font-size: 16px; margin-bottom: 5px; }
.discreet-info p { font-size: 12px; line-height: 1.3; }

/* --- BONUS BLOCK --- */
.bonus-block { margin-top: 50px; padding: 20px; border: 1px dashed #444; border-radius: 12px; background: rgba(0,0,0,0.2); }
.free-tag { background-color: var(--red-alert); color: #fff; padding: 5px 10px; font-weight: 900; text-transform: uppercase; border-radius: 4px; font-size: 12px; display: inline-block; margin-bottom: 10px; animation: pulse 2s infinite; }

/* --- TESTIMONIALS --- */
.testimonials-grid { display: grid; gap: 20px; margin-top: 30px; }
.testi-card { background-color: var(--card-bg); border-radius: 12px; overflow: hidden; border: 1px solid #333; box-shadow: 0 5px 15px rgba(0,0,0,0.3); text-align: left; }
.testi-img-container img { width: 100%; height: 200px; object-fit: cover; }
.testi-header { padding: 10px 15px; display: flex; align-items: center; border-bottom: 1px solid #222; font-size: 13px; color: #fff; flex-wrap: wrap; gap: 5px; }
.verified-badge { color: #00b67a; margin-left: auto; font-weight: bold; }
.testi-text { padding: 15px; color: #ccc; font-style: italic; font-size: 14px; line-height: 1.5; }

/* --- TRANSFORMATION --- */
.trans-image-box { position: relative; border: 3px solid var(--yellow-power); border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
.trans-img { width: 100%; display: block; }
.badge-label { position: absolute; top: 10px; padding: 5px 10px; font-weight: bold; font-family: 'Oswald', sans-serif; border-radius: 4px; font-size: 12px; }
.label-before { left: 10px; background: rgba(0,0,0,0.8); color: #fff; }
.label-after { right: 10px; background: var(--yellow-power); color: #000; }

/* --- SAFETY GRID --- */
.safety-grid { display: grid; gap: 20px; margin-top: 20px; }
.safety-card { background-color: var(--card-bg); border-radius: 12px; padding: 20px; border: 2px solid #333; position: relative; }
.danger-card { border-color: var(--red-alert); }
.safe-card { border-color: var(--yellow-power); }
.safety-img-wrapper { width: 100%; height: 150px; background: #fff; margin: 15px 0; border-radius: 8px; overflow: hidden; }
.safety-img { width: 100%; height: 100%; object-fit: cover; }
.card-badge-danger, .card-badge-safe { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 5px 15px; font-weight: bold; font-size: 12px; border-radius: 4px; color: #fff; font-family: 'Oswald', sans-serif; }
.card-badge-danger { background: var(--red-alert); }
.card-badge-safe { background: var(--green-btn); }
.danger-list, .safe-list { list-style: none; padding: 0; text-align: left; font-size: 14px; color: #ddd; }
.danger-list li, .safe-list li { margin-bottom: 8px; }
.vs-badge { width: 50px; height: 50px; background: #333; color: #fff; font-family: 'Oswald', sans-serif; font-weight: bold; font-size: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: -10px auto; border: 3px solid #000; z-index: 10; }

/* --- FAQ --- */
.faq-green-strip { background-color: var(--green-btn); color: #fff; padding: 15px 0; text-align: center; font-size: 16px; margin-bottom: 30px; }
.accordion-item { margin-bottom: 10px; border-bottom: 1px solid #333; }
.accordion-header { background: var(--card-bg); color: #fff; padding: 15px; width: 100%; text-align: left; border: none; font-size: 16px; font-weight: bold; border-radius: 5px; display: flex; justify-content: space-between; cursor: pointer; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s; background: #111; padding: 0 15px; color: #ccc; font-size: 14px; }
.accordion-item.active .accordion-content { padding: 15px; max-height: 500px; }

/* --- CTA BUTTONS --- */
.cta-button { display: inline-block; color: #fff; font-size: 20px; font-weight: 900; text-decoration: none; padding: 15px; border-radius: 8px; width: 100%; text-transform: uppercase; font-family: 'Oswald', sans-serif; text-align: center; margin-top: 10px; }
.btn-red { background: var(--red-alert); box-shadow: 0 0 10px rgba(217, 4, 41, 0.5); }
.btn-green { background: var(--green-btn); box-shadow: 0 0 10px rgba(40, 167, 69, 0.5); }
.pulse { animation: pulse-anim 2s infinite; }
@keyframes pulse-anim { 0% { transform: scale(1); } 50% { transform: scale(1.02); } 100% { transform: scale(1); } }
.small-cta { display: block; font-size: 11px; font-weight: normal; margin-top: 5px; opacity: 0.9; text-transform: none; }

/* --- FOOTER --- */
.main-footer { background-color: #fff; color: #333; padding: 40px 0 20px 0; border-top: 5px solid var(--yellow-power); margin-top: 0; }
.footer-support-header { color: #000; font-size: 24px; font-family: 'Oswald', sans-serif; }
.footer-team-img { width: 150px; border-radius: 8px; border: 2px solid var(--yellow-power); }
.footer-col-title { color: #000; font-size: 18px; font-family: 'Oswald', sans-serif; margin-bottom: 15px; }
.footer-links-list { list-style: none; padding: 0; }
.footer-links-list a { color: #444; text-decoration: none; }
.footer-copy { font-size: 12px; color: #666; margin-top: 20px; }

/* --- RESPONSIVO (TABLET/DESKTOP) --- */
@media (min-width: 768px) {
    .container { max-width: 1000px; }
    .main-headline { font-size: 52px; }
    .hero-image-container { margin: 40px 0; }
    .benefit-list { font-size: 20px; max-width: 600px; }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .trans-grid, .perf-grid { grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
    .safety-grid { grid-template-columns: 1fr auto 1fr; align-items: center; }
    .vs-badge { margin: 0; }
    .footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; text-align: left; }

    /* Ajuste específico para a seção Connection no PC */
    .connection-grid { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 60px; 
        align-items: center; 
    }
    .connection-text-box { text-align: left; }
    .conn-headline { font-size: 42px; }
    .conn-body { font-size: 18px; }
}