#myVideo {
    width: 800px;
}

@media (max-width: 992px) {
    #myVideo {
        width: 600px;
    }
}

@media (max-width: 768px) {
    #myVideo {
        width: 100%;
    }
}

@media (max-width: 576px) {
    #myVideo {
        width: 100%;
    }
}


.phone-container {
    position: relative;
    width: 300px; /* Largura do contêiner do celular */
    height: 600px; /* Altura do contêiner do celular */
    margin: 0 auto;
    z-index: 500;
}

.phone-frame {
    width: 100%;
    height: 100%;
    display: block;
}

#mobileVideo {
    position: absolute;
    top: 0%; /* Ajuste conforme necessário */
    left: 0%; /* Ajuste conforme necessário */
    width: 100%; /* Ajuste conforme necessário */
    height: 100%; /* Ajuste conforme necessário */
    border-radius: 70px; /* Para arredondar as bordas do vídeo, se necessário */
    z-index: -10;
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 25px;
    z-index: 1000;
}

.float-main {
    width: 50px;
    height: 50px;
    background-image: linear-gradient(45deg, #FF4C4C, #4C6FFF); /* Gradiente inspirado nas cores do logo */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.float-main:hover {
    opacity: 0.8; /* Efeito de transparência ao passar o mouse */
    transform: scale(1.1); /* Leve aumento de tamanho ao passar o mouse */
}
.float-whatsapp, .float-telegram {
    position: absolute;
    width: 50px;
    height: 50px;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    opacity: 0;
    transform: scale(0);
}

.float-whatsapp {
    background-color: #22c55e;
    bottom: 80px;
}

.float-telegram {
    background-color: #0088cc; /* Cor azul do Telegram */
    bottom: 140px;
}

.floating-button.active .float-whatsapp,
.floating-button.active .float-telegram {
    opacity: 1;
    transform: scale(1);
}

.floating-button .float-whatsapp a,
.floating-button .float-telegram a {
    color: #FFF !important;
    text-decoration: none !important;
}

.blog-footer-img {
    height: 230px !important;
    object-fit: cover;
}

.blog-middle-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.post-date span {
    color: #555555;
    font-size: 0.85rem;
    font-weight: normal;
}

.post-date i {
    color: #555555;
}

.post-author span {
    color: #555555;
    font-size: 0.85rem;
    font-weight: normal;
}

.post-author i {
    color: #555555;
}

.post-backlink a,
li.post-backlink a {
    color: #2C5568;
    text-decoration: none;
}

.post-backlink a:hover {
    color: #3A6B7E;
    text-decoration: underline;
}

/* 2. Texto do card como um todo */
.card {
    color: #333333;
}

.card-body {
    color: #333333;
}

.card-footer {
    color: #333333;
    background-color: #f8f9fa;  /* Fundo sutil para contraste */
}

/* 3. Links dentro do card (exceto botões) */
.card a:not(.btn):not(.btn-primary) {
    color: #2C5568;
}

.card a:not(.btn):not(.btn-primary):hover {
    color: #3A6B7E;
}