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

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: url('https://thumbs.dreamstime.com/b/heavy-barbell-sits-gym-floor-surrounded-weight-plates-chalk-dust-fills-air-enhancing-moody-atmosphere-training-362085596.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    color: #c00;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-block;
    background: #c00;
    color: #fff;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
    margin: 15px 10px;
}

.cta-button:hover {
    background: #a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.6);
}

.cta-button:active {
    transform: translateY(0);
}

/* ===== PULSE ANIMATION ===== */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== SEÇÃO OFERTA (DESIGN DA IMAGEM) ===== */
.oferta {
    padding: 80px 0;
    background: #0a0a0a;
    position: relative;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    color: #c00;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c00, transparent);
    margin: 15px auto 30px;
}

.product-list {
    list-style: none;
    font-size: 1.3rem;
    margin: 30px 0;
    line-height: 2.2;
}

.product-list li {
    padding: 10px 0;
    color: #fff;
    font-weight: 600;
}

.bullet {
    color: #fff;
    margin-right: 8px;
}

/* ===== SEÇÃO PROMOÇÃO ===== */
.promo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.promo-strip {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #1a1a1a, #000);
    border: 2px solid #c00;
    padding: 20px 15px;
    border-radius: 4px;
    min-width: 150px;
}

.promo-label {
    font-family: 'Anton', sans-serif;
    color: #ffb84d;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promo-value {
    font-family: 'Anton', sans-serif;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 5px;
}

/* ===== KIT IMAGE ===== */
.kit-display {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.kit-image {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    filter: drop-shadow(0 10px 30px rgba(204, 0, 0, 0.3));
}

/* ===== PREÇO COM SETA ===== */
.price-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.price-arrow {
    width: 60px;
    height: 60px;
    fill: #c00;
    filter: drop-shadow(0 4px 8px rgba(204, 0, 0, 0.4));
    animation: bounce-arrow 1.5s infinite;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.price-value {
    font-family: 'Anton', sans-serif;
    font-size: 5.5rem;
    color: #c00;
    font-weight: 900;
    text-shadow: 3px 3px 10px rgba(204, 0, 0, 0.5);
    line-height: 1;
    font-style: italic;
}

/* ===== SELOS DE CONFIANÇA ===== */
.badges-section {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    flex-wrap: wrap;
}

/* Selo Garantia */
.badge-warranty {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-warranty::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #ffb84d, #ff8c00, #c00);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(255, 136, 0, 0.4), inset 0 -2px 5px rgba(0, 0, 0, 0.3);
}

.badge-warranty::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    background: #000;
    border-radius: 50%;
    z-index: 2;
}

.badge-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.badge-text-top {
    font-family: 'Anton', sans-serif;
    font-size: 0.75rem;
    color: #ffb84d;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-text-main {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    color: #ffb84d;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

.badge-stars {
    font-size: 0.8rem;
    color: #ffb84d;
    margin-top: 2px;
    letter-spacing: 2px;
}

.badge-subtitle {
    font-size: 0.75rem;
    color: #ffb84d;
    margin-top: 15px;
    font-weight: 600;
    max-width: 160px;
}

/* Selo Estoque */
.badge-stock {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-stock::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, #c00, #ff4444, #c00);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(204, 0, 0, 0.5), inset 0 -2px 5px rgba(0, 0, 0, 0.3);
}

.badge-stock::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    background: #000;
    border-radius: 50%;
    z-index: 2;
}

.badge-stock .badge-inner {
    position: relative;
    z-index: 3;
}

.badge-stock .badge-text-main {
    color: #fff;
    font-size: 1.2rem;
}

.badge-fire {
    font-size: 2rem;
    margin-top: 5px;
}

/* ===== INFORMAÇÕES DE ENVIO ===== */
.shipping-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.shipping-info p {
    font-size: 1rem;
    color: #aaa;
    font-weight: 600;
}

/* ===== SEÇÃO TRANSFORMAÇÃO ===== */
.transformacao {
    padding: 80px 0;
    background: #000;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.ba-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ba-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.2);
    max-height: 400px;
}

.ba-image.gray {
    filter: grayscale(100%);
    opacity: 0.8;
}

.arrow-separator {
    font-size: 2.5rem;
    color: #c00;
    font-weight: 900;
}

/* ===== SEÇÃO DOR + CURA ===== */
.dor-cura {
    padding: 80px 0;
    background: #0a0a0a;
}

.pain-points {
    margin: 40px 0;
}

.pain-points h3 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: #c00;
    text-transform: uppercase;
    margin: 15px 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.pain-message {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 30px;
    font-weight: 700;
}

/* ===== SEÇÃO DEPOIMENTOS ===== */
.depoimentos {
    padding: 80px 0;
    background: #000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #c00;
    transition: transform 0.3s ease;
}

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

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    border: 3px solid #c00;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: #c00;
    font-size: 1rem;
}

/* ===== SEÇÃO URGÊNCIA ===== */
.urgencia {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 100%);
}

.urgency-box {
    background: rgba(204, 0, 0, 0.1);
    border: 3px solid #c00;
    padding: 50px;
    border-radius: 8px;
}

.urgency-box h2 {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    color: #c00;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(204, 0, 0, 0.5);
}

.urgency-text {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
}

/* ===== STOCK COUNTER ===== */
.stock-counter {
    background: #ff0000;
    color: #fff;
    padding: 12px;
    text-align: center;
    font-weight: 900;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* ===== NOTIFICAÇÕES ===== */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
}

.notification {
    background: #c00;
    color: #fff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    animation: slideIn 0.5s ease-out;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.notification.fadeOut {
    animation: slideOut 0.5s ease-out forwards;
}

/* ===== FOOTER ===== */
footer {
    background: #0a0a0a;
    padding: 30px 0;
    border-top: 2px solid #c00;
    margin-top: 60px;
}

footer p {
    color: #aaa;
    font-size: 0.95rem;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #c00;
    color: #fff;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    display: none;
    z-index: 9998;
    font-weight: 900;
    font-size: 1rem;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    border-top: 2px solid #a00;
    box-shadow: 0 -4px 15px rgba(204, 0, 0, 0.3);
}

.mobile-sticky-cta:hover {
    background: #a00;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .price-value {
        font-size: 3.5rem;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .promo-section {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .price-arrow {
        width: 45px;
        height: 45px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .kit-image {
        max-height: 350px;
    }

    .promo-strip {
        padding: 15px 12px;
    }

    .promo-label {
        font-size: 0.9rem;
    }

    .promo-value {
        font-size: 1.1rem;
    }

    .badges-section {
        gap: 30px;
    }

    .badge-warranty,
    .badge-stock {
        width: 120px;
        height: 120px;
    }

    .badge-text-main {
        font-size: 1.1rem;
    }

    .badge-fire {
        font-size: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .urgency-box {
        padding: 30px;
    }

    .urgency-box h2 {
        font-size: 2rem;
    }

    .urgency-text {
        font-size: 1.1rem;
    }

    #notification-container {
        max-width: 280px;
        right: 10px;
        top: 10px;
    }

    .notification {
        font-size: 0.85rem;
        padding: 12px 15px;
    }

    .shipping-info {
        gap: 15px;
    }

    .shipping-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .title-divider {
        width: 40px;
        height: 2px;
    }

    .product-list {
        font-size: 1rem;
        line-height: 1.8;
    }

    .price-value {
        font-size: 2rem;
    }

    .price-arrow {
        width: 35px;
        height: 35px;
    }

    .price-section {
        gap: 10px;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 12px 20px;
        margin: 10px 5px;
    }

    .kit-image {
        max-height: 250px;
    }

    .promo-section {
        flex-direction: column;
        gap: 15px;
    }

    .promo-strip {
        min-width: 100%;
        padding: 12px 10px;
    }

    .badges-section {
        flex-direction: column;
        gap: 20px;
    }

    .badge-warranty,
    .badge-stock {
        width: 100px;
        height: 100px;
    }

    .badge-text-main {
        font-size: 0.9rem;
    }

    .badge-fire {
        font-size: 1.2rem;
    }

    .badge-subtitle {
        font-size: 0.65rem;
        margin-top: 10px;
    }

    .shipping-info {
        flex-direction: column;
        gap: 8px;
    }

    .shipping-info p {
        font-size: 0.8rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 20px;
    }

    .avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .pain-points h3 {
        font-size: 1.3rem;
    }

    .pain-message {
        font-size: 1.1rem;
    }

    .urgency-box {
        padding: 20px;
    }

    .urgency-box h2 {
        font-size: 1.5rem;
    }

    .urgency-text {
        font-size: 0.95rem;
    }

    .stock-counter {
        font-size: 0.9rem;
        padding: 10px;
    }

    #notification-container {
        max-width: 250px;
        right: 5px;
        top: 5px;
    }

    .notification {
        font-size: 0.8rem;
        padding: 10px 12px;
        margin-bottom: 8px;
    }

    .mobile-sticky-cta {
        font-size: 0.85rem;
        padding: 12px;
    }
}
