* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Nunito', Arial, sans-serif;
    background-image: url("img/1000032042.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
}

/* Início da página */
#main {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.content {
    text-align: center;
    color: white;
    padding: 30px;
    border-radius: 20px;
}

.logo-principal {
    width: 320px;
    max-width: 85%;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 25px #8a2cff);
}

.content h1 {
    font-family: 'Rubik', Arial, sans-serif;
    font-size: 58px;
    font-weight: 800;
    margin: 10px 0;
    color: #7b2cff;
    text-shadow: 0 0 20px #8a2cff;
    letter-spacing: 2px;
}

.content p {
    font-size: 21px;
    margin: 6px 0;
    font-weight: 700;
}

.sub-text {
    color: #d8c4ff;
    font-size: 18px;
    font-weight: 600;
}

/* Título dos produtos */
.produtos-section {
    text-align: center;
    color: white;
    margin-top: 20px;
    padding: 20px;
}

.produtos-section h2 {
    font-family: 'Fredoka', Arial, sans-serif;
    font-size: 44px;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 0 0 18px #8a2cff;
}

.produtos-section p {
    color: #cfc0ff;
    font-size: 18px;
    margin: 0;
}

/* Cards dos pods */
.pods-container {
    width: 94%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 45px 20px;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.pod-card {
    min-width: 0;

    background: rgba(14, 14, 14, 0.96);
    border: 1px solid #7b2cff;
    border-radius: 18px;
    padding: 18px;
    text-align: center;

    box-shadow: 0 0 22px rgba(123, 44, 255, 0.35);
    transition: 0.3s ease;
}

.pod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(123, 44, 255, 0.75);
}

.pod-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 14px;
    margin-bottom: 14px;
}

.pod-card h2 {
    font-family: 'Fredoka', Arial, sans-serif;
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0 12px;
}

/* Preços */
.price-box {
    margin-top: 8px;
}

.old-price {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.old-price span {
    text-decoration: line-through;
}

.price {
    color: #ffffff;
    font-size: 29px;
    font-weight: 900;
    margin: 2px 0 0;
    font-family: 'Rubik', Arial, sans-serif;
    text-shadow: 0 0 14px #8a2cff;
}

/* Botão de compra */
.buy-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 18px;

    background: linear-gradient(135deg, #7b2cff, #b56cff);
    color: white;

    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;

    box-shadow: 0 0 18px rgba(123, 44, 255, 0.6);
    transition: 0.3s ease;
}

.buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 28px rgba(181, 108, 255, 0.9);
}

/* Benefícios */
.benefits {
    max-width: 900px;
    margin: 20px auto 50px;
    padding: 20px;

    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.benefits div {
    background: rgba(14, 14, 14, 0.95);
    border: 1px solid #7b2cff;
    border-radius: 18px;
    padding: 20px;
    width: 190px;
    text-align: center;
    color: white;
    box-shadow: 0 0 18px rgba(123, 44, 255, 0.35);
    transition: 0.3s ease;
}

.benefits div:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 28px rgba(123, 44, 255, 0.7);
}

.benefits i {
    font-size: 34px;
    color: #b56cff;
}

.benefits p {
    margin: 10px 0 0;
    font-weight: 800;
}

/* Redes sociais */
.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 30px 0 45px;
    padding: 0 20px;
}

.social-media a,
.gmail-contact {
    min-height: 52px;
    background-color: white;
    color: #7b2cff;

    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    padding: 0 18px;

    transition: 0.3s ease;
    box-shadow: 0 0 16px rgba(123, 44, 255, 0.35);
}

.social-media a i,
.gmail-contact i {
    font-size: 26px;
}

.social-media a:hover {
    transform: scale(1.08);
    box-shadow: 0 0 26px rgba(123, 44, 255, 0.75);
}

.gmail-contact span {
    font-size: 15px;
    color: #111;
}

/* Rodapé */
footer {
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.78);
    padding: 18px 12px;
}

footer p {
    margin: 5px 0;
}

.age-warning {
    color: #cfc0ff;
    font-size: 14px;
    font-weight: 700;
}

/* ========================================
   CORREÇÃO MOBILE SB PODS
======================================== */

@media screen and (max-width: 600px) {

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }

    #main {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 30px 15px !important;
    }

    .content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 10px !important;
    }

    .produtos-section {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 15px !important;
    }

    .pods-container {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 25px 15px !important;
        gap: 25px !important;
    }

    .pod-card {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 18px !important;
    }

    .pod-card img {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 240px !important;
        object-fit: contain !important;
        margin: 0 auto 14px !important;
    }

    .pod-card h2 {
        width: 100% !important;
        font-size: 22px !important;
        white-space: normal !important;
        overflow: visible !important;
        word-break: normal !important;
    }

    .price-box {
        width: 100% !important;
    }

    .buy-btn {
        display: inline-block !important;
        max-width: 100% !important;
        white-space: normal !important;
    }
}