    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: Arial, sans-serif;
        background-color: #dd0053;
        color: #dd0053;
    }

    .container {
        width: 100%;
        margin: 0;
        background-color: #dd0053;
        text-align: center;
    }

    .alinhamento-column {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10xp;
        max-width: 500px;
    }

    .alinhamento-row {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 10xp;
        max-width: 500px;
    }

    .fundo-png {
        width: 100%;
        background-image: linear-gradient(to bottom, #dd005577, #dd0053), url('../imgs/sec1/foto loja.png');
        background-position: center;
        background-repeat: no-repeat;
        min-height: 500px;
        background-size: contain;
    }

    .image-block {
        max-width: 900px;
        margin: 0 auto;
        padding: 10px 0;
    }

    .image-block img {
        width: 90%;
        max-width: 600px;
        display: block;
        margin: 10px auto;
    }

    .features {
        background-color: #fff;
        color: #dd0053;
        padding: 20px;
        text-align: center;
    }

    .features h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .feature-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .feature-item {
        padding: 10px;
        border-radius: 8px;
        width: 45%;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 900px;
    }

    .footer {
        background-color: #dd0053;
        color: #fff;
        font-size: 12px;
        padding: 10px;
    }

    /* Swiper Custom */
    .swiper {
        width: 100%;
        padding: 20px 0;
        max-width: 900px;
    }

    .swiper-slide {
        display: flex !important;
        min-height: 500px;
        align-items: center;
        justify-content: center;
    }

    .swiper-slide img {
        width: 90%;
        max-width: 420px;
        background-color: #dd0053;
        border-radius: 10px;
        min-height: 500px;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-pagination-bullet-active {
        background-color: #fff;
    }

    .swiper-pagination-bullet-active {
        background-color: white !important;
    }

    .btn {
        display: inline-block;
        background-color: #fff;
        color: #e91e63;
        padding: 12px 24px;
        border-radius: 25px;
        font-weight: bold;
        max-width: 95%;
        margin: 15px auto;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

/*
btn:hover {
background-color: #dd0053;
color: #fff;
transform: scale(1.05);
    }
*/

    #loading {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #e91e63;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 1;
        transition: opacity 0.5s ease;
    }

    #loading.fade-out {
        opacity: 0;
        pointer-events: none;
    }


    .spinner {
        border: 6px solid #fff;
        border-top: 6px solid transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }



    .video-container {
        position: relative;
        width: 100%;
        max-width: 350px;
        margin: auto;
    }

    .video-thumb {
        position: relative;
        width: 100%;
        /* ou use a proporção real do seu vídeo */
        overflow: hidden;
    }

    .video-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #dd0053;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    transition: opacity 0.5s ease;
    z-index: 10;
    opacity: 1;
}

.play-button.hidden {
    opacity: 0;
    pointer-events: none;
}
    .responsive-video {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .swiper-button-next, .swiper-button-prev{
        color: #dd0053!important;
    }
    
    .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25D366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

    
    @media only screen and (max-width:600px){
        
        .feature-item{
            width: 95%;
        }
        
    }