body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bg-custom-dark {
    background-color: #1a1a1a;
}

/* Estilização dos Cards de Entrada */
.feature-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ffb703;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.img-wrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .img-wrapper img {
    transform: scale(1.05);
}

/* Estilização dos Cards Principais */
.card-media {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-media:hover {
    transform: translateY(-5px);
    border-color: #ffb703;
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.25);
}

.card-media-img-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 380px;
}

.card-media-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.card-media:hover .card-media-img-wrapper img {
    transform: scale(1.05);
}

/* Overlay do Ícone de Play para Vídeo */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.card-media:hover .play-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.play-overlay i {
    font-size: 4rem;
    color: #ffb703;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7));
    transition: transform 0.3s ease;
}

.card-media:hover .play-overlay i {
    transform: scale(1.15);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.card-img-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-custom:hover .card-img-wrapper img {
    transform: scale(1.05);
}

/* Overlay do Badge de Clique */
.overlay-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: #ffb703;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 183, 3, 0.3);
}

/* Botão Mãozinha Flutuante */
.btnIndc {
    position: fixed;
    bottom: 18vh;
    right: 150px;
    z-index: 1000;
    /* background-color: rgba(30, 30, 30, 0.95); */
    background-color: rgba(107, 104, 104, 0.95);
    border: 2px solid #ffb703;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.2s ease;
    animation: pulse-light 2s infinite;
}

.btnIndc img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.btnIndc:hover {
    transform: scale(1.15);
}

@keyframes pulse-light {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 183, 3, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 183, 3, 0);
    }
}

/* Botão Flutuante do WhatsApp */
.btn-zap-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-zap-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.text-white-hover:hover {
    color: #fff !important;
}