.logo{
	max-height: 80px;
}

/* ======================== */
/* RESPONSIVE.CSS - BASE */
/* ======================== */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Exemplo */
    body {
        font-size: 14px;
    }
}

/* Small devices (portrait tablets and large phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container {
        padding: 0 15px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .menu {
        flex-direction: column;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .sidebar {
        width: 250px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* ======================== */
/* CASOS COMUNS EXTRAS */
/* ======================== */

/* Ocultar algo só no mobile */
@media (max-width: 767.98px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Ocultar algo só no desktop */
@media (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Centralizar texto no mobile */
@media (max-width: 575.98px) {
    .text-center-mobile {
        text-align: center !important;
    }
}

/* Grid com 2 colunas no mobile */
@media (max-width: 767.98px) {
    .grid-mobile-2col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}


#header::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px; /* soma das duas linhas */
    background: linear-gradient(
        to bottom,
        var(--xcolors-root-vermelho) 0%,
        var(--xcolors-root-vermelho) 50%,
        var(--xcolors-root-verde) 50%,
        var(--xcolors-root-verde) 100%
    );
    box-shadow: 0 3px 6px rgba(0,0,0,.25); /* sombra após a última */
}

footer{
    position: relative;
}



footer::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0; /* fica por cima */
    width: 100%;
    height: 4px; /* soma das duas linhas */
    background: linear-gradient(
        to bottom,
        var(--xcolors-root-vermelho) 0%,
        var(--xcolors-root-vermelho) 50%,
        var(--xcolors-root-verde) 50%,
        var(--xcolors-root-verde) 100%
    );
    box-shadow: 0 -3px 6px rgba(0,0,0,.25); /* sombra para cima */
}




.logo-felicita-topo{
    position: absolute;
    top: 10px;

    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;

    transform: scale(1);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
    z-index: 9;
	border-radius: 5px;
    max-height: 170px;
}

header.navbar-fixed-top .navbar-brand .logo-felicita-topo {
	transform: scale(0.35);
	top: -40px;
}

.links-footer a{
    color: white;
    text-decoration: none;
}

.link-with-icons i{
    margin-right: 8px;
}

.link-with-icons a:hover{
    text-decoration: underline;
}

.felicita-h1{
    font-size: 28px;
}

.felicita-produto-data{
    border-top: 1px solid #ccc;
    padding-top: 10px;
    color: var(--xcolors-root-vermelho);
    font-weight: bold;
}

.felicita-produto-data strong{
    color: var(--xcolors-root-verde);
}

.felicita-blog-single-share {
	border-top: 1px solid #ccc;
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 10px;
	display: block;
	padding-top: 12px;
}

.video-feature{
    position: relative;
    overflow: visible;
    background: #f7f5f2;
    padding: 80px 0;
}

.video-frame{
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 25px;
}

/* container do vídeo */
.video-responsive{
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 35px 80px rgba(0,0,0,.12);
    background: #000;
}

.video-responsive iframe{
    border: 0;
}

/* imagens decorativas PNG */
.video-decoration{
    position: absolute;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    max-width: 100%;
}

/* superior direita */
.decoration-1 {
	width: 240px;
	top: -5px;
	right: -10px;
}

/* inferior esquerda */
.decoration-2 {
	width: 240px;
	left: -50px;
	bottom: -28px;
}

.decoration-1,
.decoration-2{
    z-index: 3;
    transition: opacity .45s ease,
                transform .45s ease;
}

/* hover no bloco do vídeo */
.video-frame:hover .decoration-1,
.video-frame:hover .decoration-2{
    opacity: 0;
}

/* pequeno movimento para ficar mais elegante */
.video-frame:hover .decoration-1{
    transform: translate(20px, -20px);
}

.video-frame:hover .decoration-2{
    transform: translate(-20px, 20px);
}

/* tablet */
@media(max-width:991px){

    .decoration-1{
        width: 160px;
        top: -20px;
        right: -20px;
    }

    .decoration-2{
        width: 120px;
        left: -15px;
        bottom: -15px;
    }
}

/* mobile */
@media(max-width:767px){

    .decoration-1{
        width: 100px;
        top: -10px;
        right: -10px;
    }

    .decoration-2{
        width: 80px;
        left: -8px;
        bottom: -8px;
    }
}


.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.social-links li {
    animation: socialFadeUp .6s ease forwards;
    opacity: 0;
}

.social-links li:nth-child(1) { animation-delay: .1s; }
.social-links li:nth-child(2) { animation-delay: .2s; }
.social-links li:nth-child(3) { animation-delay: .3s; }
.social-links li:nth-child(4) { animation-delay: .4s; }
.social-links li:nth-child(5) { animation-delay: .5s; }

.social-item {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 22px;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.social-item::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,.25), transparent);
    top: -100%;
    left: -100%;
    transition: .5s;
}

.social-item:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 25px rgba(0,0,0,.25);
    border-color: rgba(255,255,255,.35);
    background: #ffffffa3;
    color: #02a550;
}

.social-item:hover::before {
    top: 100%;
    left: 100%;
}

.social-item i {
    position: relative;
    z-index: 2;
}

@keyframes socialFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}