@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;800;900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: "Axiforma";
    src: url(../fonts/Axiforma/Axiforma-SemiBold.ttf);
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: "Axiforma";
    src: url(../fonts/Axiforma/Axiforma-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Axiforma";
    src: url(../fonts/Axiforma/Axiforma-Black.ttf);
    font-weight: 800;
    font-display: swap;
}
@font-face {
    font-family: "Axiforma";
    src: url(../fonts/Axiforma/Axiforma-ExtraBold.ttf);
    font-weight: 900;
    font-display: swap;
}
@font-face {
    font-family: "Gelica";
    src: url(../fonts/Gelica/Gelica\ Regular.otf);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Gelica";
    src: url(../fonts/Gelica/Gelica\ Medium.otf);
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "Gelica";
    src: url(../fonts/Gelica/Gelica\ Medium\ Italic.otf);
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Gelica";
    src: url(../fonts/Gelica/Gelica\ Semibold.otf);
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: "Gelica";
    src: url(../fonts/Gelica/Gelica\ Bold.otf);
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Eugusto";
    src: url(../fonts/Eugusto/eugusto-free-font.otf);
    font-weight: 400;
    font-display: swap;
}
.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

select, textarea {
	min-height: 60px;
	width: 100%;
	border-radius: 8px;
	border: 1px solid #333333;
	padding-left: 20px;
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #8d8d8d;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

body {
   font-family: "Axiforma", sans-serif;
    -webkit-font-smooth: antialiased;
}

main,
header {
    opacity: 0;
}

header .logo span {
	font-family: "Eugusto";
	color: #e8d9c7;
	font-size: 77px;
}

header.scroll .logo span {
	font-size: 66px;
}

.header.scroll .logo .maringa {
	bottom: -34px;
    right: -34px;
    height: 46px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

input:not(input[type="radio"]):not(input[type="checkbox"]):not(
		input[type="search"]
	), select, textarea {
	min-height: 60px;
	width: 100%;
	border-radius: 8px
        }

.container {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding-inline: 20px;
}

/* Cookies */
#aviso-cookies {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: fixed;
    bottom: 0;
    padding: 13px 15px;
    background-color: #fff;
	z-index: 4;
    width: 100%;
    text-align: center;
    box-shadow: 0px 0px 2px 1px rgba(50, 50, 50, 0.58);
    transition: all 300ms ease-in-out;
}
#aviso-cookies p {
	max-width: 61.25rem;
	font-size: 1rem;
	font-family: "Axiforma", sans-serif;
}
#aviso-cookies p a {
	color: #B69AE2;
	transition: color 200ms ease-in-out;
	text-decoration: none;
	font-weight: 600;
}
#aviso-cookies p a:hover {
	color: #B69AE2;
}
#aviso-cookies button {
    display: flex;
    align-items: center;
	padding: 10px 15px;
	margin: auto 0;
	background-color: #B69AE2;
	border-radius: 8px;
	border: none;
	font-size: 16px;
	font-family: "Axiforma", sans-serif;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	transition: 300ms ease-in-out;
	width: fit-content;
	margin-inline: auto;
}
#aviso-cookies button:hover {
	/* background-color: #B69AE2; */
}
#aviso-cookies.hideCookie {
	transform: translateY(100%);
}
@media (max-width: 750px) {
	#aviso-cookies {
		flex-direction: column;
	}
	#aviso-cookies p {
		font-size: 13px;
}
}

input:not(input[type=radio]):not(input[type=checkbox]):not(input[type=search]), select{
    min-height: 60px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #333333;
    padding-left: 20px;
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #8D8D8D;
}

#aviso-cookies p{
    max-width: 61.25rem;
}

@media screen and (max-width: 900px) {
    .container {
        max-width: 600px;
    }
    }

/* header .logo span {
	font-size: 60px;
} */

.container-article {
    max-width: 730px;
    width: 100%;
    margin: 0 auto;
    padding-inline: 20px;
}

.container-article img{
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 1000px) {
    .only-desktop {
        display: none;
    }
}

.only-mobile {
    display: block;
}
@media screen and (min-width: 1000px) {
    .only-mobile {
        display: none;
    }
}

.card-border-top {
    border-top: 1px solid #DEDEDE;
    padding-top: 50px;
    margin-top: 50px;
}
@media screen and (max-width: 525px) {
    .card-border-top {
        padding-top: 40px;
        margin-top: 40px;
    }
}

.card-border-bottom {
    border-bottom: 1px solid #DEDEDE;
    padding-bottom: 50px;
    margin-bottom: 50px;
}


@media screen and (min-width: 525px) {
    .visible-only-mobile-525 {
        display: none;
    }
}

main {
    padding-top: 56px;
}
@media screen and (min-width: 700px) {
    main {
        padding-top: 148px;
    }
}

.header {
    background-color: #000000;
    height: 148px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6;
    transition: 200ms ease-in-out;
}
.header .logo-menu {
    display: none;
}
.header.active {
    background-color: #E8D9C7;
}
@media screen and (min-width: 780px) {
    .header.active {
        height: auto;
    }
    .header.active .logo-menu {
        transform: translateY(10px);
    }
    .header.active .box-menu {
        margin-top: 30px;
        padding-bottom: 30px;
        gap: 62px;
    }
}
@media screen and (max-width: 780px) {
    .header.active {
        width: 90%;
    }
}


.header.active .menu span {
    background-color: #000000;
}
.header.active .logo-menu {
    display: block;
}
.header.active .logo, .header.active .form, .header.active .box-menu .tagline {
    display: none;
}
.header .container {
    display: flex;
    justify-content: space-between;
}
.header .box-menu {
    display: flex;
    align-items: center;
    gap: 19px;
    cursor: pointer;
}
.header .box-menu .tagline {
    font-family: "Axiforma", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 72px;
    color: #E8D9C7;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}
.header .logo {
    display: flex;
    align-items: center;
    margin-inline-end: 0.5rem;
    transition: 200ms ease-in-out;
}

.header .logo span {
    position: relative;
    white-space: nowrap;
}
.header .logo span.italico {
    font-style: italic;
}
.header .logo .maringa {
    position: absolute;
	bottom: -61px;
    right: -38px;
    height: 56px;
    transition: all 200ms ease;
}

.header .logo img {
    max-width: 100%;
    display: block;
}
.header .search-container {
    display: flex;
    align-items: center;
}
.header .search-container.active {
	border: 2px solid #e8d9c7;
    border-radius: 62px;
}
.header .form {
    display: flex;
    align-items: center;
    width: 1px;
    height: 62px;
    transition: 200ms ease-in-out;
}
.header .form.active {
    /* border: 2px solid #E8D9C7;
    border-radius: 62px; */
    width: 300px;
}
.header .form input {
    flex: 1;
    outline: none;
    height: 62px;
    background-color: transparent;
    border: 0 !important;
    font-size: 14px !important;
    font-weight: 500;
    letter-spacing: -2% !important;
	color: #e8d9c7 !important;
    padding: 12px 15px;
}
.header .form ~ img {
    transition: 200ms ease-in-out;
    width: 28px;
    height: 28px;
    margin-right: 15px;
    cursor: pointer;
}
.header .form ~ img.active {
    width: 14px;
    height: 14px;
}
.header.scroll {
    height: 90px;
}
@media screen and (max-width: 900px) {
	.header .form.active {
        width: 150px;
	}
}
@media screen and (max-width: 399px) {
	.header .form.active {
        width: 200px;
	}
}
@media screen and (max-width: 700px) {
    .header {
        height: 56px;
    }
    .header.scroll {
        height: 56px;
    }

    .header .container {
        /* justify-content: flex-start; */
        align-items: center;
    }
    .header .box-menu {
        margin-right: 20px;
    }
    .header .box-menu .tagline {
        display: none;
    }
    .header .box-menu .menu {
        width: 20px;
        height: 16px;
    }
    .header .box-menu .menu span {
        height: 2px;
    }
    .header .box-menu .menu span:nth-child(1) {
        top: 0;
    }
    .header .box-menu .menu span:nth-child(2) {
        top: 7px;
    }
    .header .box-menu .menu span:nth-child(3) {
        top: 14px;
    }

	/* header.scroll .logo span {
        font-size: 24px;
        display: unset;
	} */
    .header .logo {
        margin-inline-end: 0.5rem;
    }
	.header .logo .maringa {
        bottom: -22px !important;
        right: -32px !important;
        height: 33px !important;
	}
	.header.scroll .logo .maringa {
        bottom: -27px;
        right: -19px;
        height: 30px;
    }
}

@media screen and (max-width: 700px) and (max-width: 700px) {
    .header .box-menu .menu.active {
        width: 20px;
        height: 16px;
    }
    .header .box-menu .menu.active span {
        height: 2px;
    }
    .header .box-menu .menu.active span:nth-child(1) {
        top: 7px;
    }
    .header .box-menu .menu.active span:nth-child(2) {
        top: 7px;
    }
    .header .box-menu .menu.active span:nth-child(3) {
        top: 7px;
    }
}
@media screen and (max-width: 700px) {
    header .logo span {
		font-size: 44px !important;
    }
}
@media screen and (max-width: 700px) {
    .header .form {
        height: 30px;
        margin-left: auto;
		width: 1px;
    }
    .header .form input {
        width: 100%;
        height: 50px;
    }
    .header .form img {
        width: 16px;
    }
}
@media screen and (max-width: 700px) {
    .header.active .logo {
        display: none;
    }
    .header.active .form {
        display: none;
    }
}


@media screen and (max-width: 525px) {
    .card-border-bottom {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    header .logo span{
        font-size: 30px !important;
    }
}

.menu {
    display: flex;
    width: 36px;
    height: 28px;
    flex-direction: column;
    position: relative;
    z-index: 6;
}
.menu span {
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
	background-color: #e8d9c7;
    border-radius: 10px;
    transition: 200ms ease-in-out;
}
.menu span:nth-child(1) {
    top: 0;
}
.menu span:nth-child(2) {
    top: 12px;
}
.menu span:nth-child(3) {
    top: 24px;
}
.menu.active span {
    background-color: #000000;
}
.menu.active span:nth-child(1) {
    top: 12px;
    transform: rotate(45deg);
}
.menu.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.menu.active span:nth-child(3) {
    top: 12px;
    transform: rotate(-45deg);
}

.menu-container {
    width: 100%;
	background-color: #e8d9c7;
    position: fixed;
    top: 100%;
    left: 0;
    z-index: 5;
    transition: 200ms;
    overflow: hidden;
    height: 100vh;
}
.menu-container.active {
    inset: 0;
    overflow-y: auto;
}
.menu-container.active ~ :is(main, footer) {
    pointer-events: none;
}

.menu-container .menus-boxes {
    padding-top: 200px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.menu-container .menus-boxes .item {
    min-width: 160px;
    margin-bottom: 100px;
    flex-basis: calc(16.6% - 16px);
}
.menu-container .menus-boxes .item h2 {
    font-size: 24px;
    font-weight: 400;
    font-family: "Eugusto", sans-serif;
    color: #000000;
    margin-bottom: 30px;
}
.menu-container .menus-boxes .item ul {
    list-style: none;
}
.menu-container .menus-boxes .item ul li {
    margin-bottom: 30px;
}
.menu-container .menus-boxes .item ul li a {
    font-size: 14px;
    font-weight: 500;
    font-family: "Gelica", sans-serif;
    color: #000000;
    text-decoration: none;
}
.menu-container .menus-boxes .item ul li a:hover {
    text-decoration: underline;
}
@media (max-width: 780px) {
    .menu-container {
        width: 90%;
    }
    .menu-container .menus-boxes {
        padding-top: 90px;
    }
    .menu-container .menus-boxes .item {
        width: 100%;
        margin-bottom: 16px;
        flex-basis: unset;
    }
    .menu-container .menus-boxes .item h2{
        margin-bottoM: 8px;
    }
    .menu-container .menus-boxes .item ul li {
        margin-bottom: 8px;
    }
    .menu-bottom{
        align-items: baseline;
    }
    .h-newsletter .aside-newsletter{
        width: 100%;
    }
}

.badge {
    display: block;
    width: -moz-max-content;
    width: max-content;
    padding: 10px 25px;
    font-family: "Gelica", sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
    border-radius: 82px;
    border: 1.5px solid #000000;
    text-transform: lowercase;
    text-decoration: none;
}
.badge.size-g {
    font-size: 20px;
}
@media screen and (max-width: 900px) {
    .badge {
        font-size: 14px;
        padding: 6px 19px;
    }
    .badge.size-g {
        font-size: 14px;
    }
}

.carrosel-article {
    display: flex;
    align-items: center;
    gap: 74px;
    cursor: pointer;
}
.carrosel-article h1 {
    font-size: 35px;
    font-weight: 400;
    font-family: "Gelica", sans-serif;
    color: #000000;
    margin-top: 15px;
    margin-bottom: 35px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3.6em;
}
@media screen and (max-width: 525px) {
    .carrosel-article h1 {
        margin-bottom: 50px;
    }
}

.carrosel-article .cover {
    width: 600px;
    height: 600px;
    min-width: 600px;
    border-radius: 49px;
    overflow: hidden;
}

.carrosel-article .cover img{
    height: 100%;
        width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1200px) {
    .carrosel-article {
        gap: 20px;
    }
}
@media screen and (max-width: 1100px) {
    .carrosel-article {
        width: 100%;
        flex-direction: column-reverse;
    }
    .carrosel-article .description {
        margin-inline: auto;
        max-width: 650px;
    }
    .carrosel-article .cover img {
        display: block;
        width: 100%;
    }
}
@media screen and (max-width: 900px) {
    .carrosel-article {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .carrosel-article h1 {
        font-size: 24px;
        max-width: 280px;
        margin-inline: auto;
    }
    .carrosel-article .description {
        text-align: center;
    }
    .carrosel-article .description .badge {
        margin-inline: auto;
    }
    .carrosel-article .cover {
        min-width: auto;
        width: 100%;
        border-radius: 0;
    }
    .carrosel-article .cover{
        height: 350px;
    }
    .carrosel-article .cover img {
        border-radius: 0;
    }
}

.card-story {
    aspect-ratio: 37/56;
    border-radius: 32px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    padding-inline: 35px;
    padding-bottom: 73px;
    background-color: #000;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    cursor: pointer;
    transition: background-size 200ms ease-in-out;
}
.card-story:hover {
    background-size: 110%;
}
.card-story h3 {
    font-size: 30px;
    font-weight: 500;
    font-family: "Gelica", sans-serif;
    line-height: 110%;
    color: #FFFFFF;
}
@media screen and (max-width: 1100px) {
    .card-story {
        padding-inline: 25px;
        padding-bottom: 40px;
    }
    .card-story h3 {
        font-size: 20px;
    }
}

.article-emphasis {
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    background-color: #DDA5B2;
    max-height: 479px;
}
.article-emphasis .cover {
    width: 100%;
    max-width: 532px;
    height: 479px;    
}
.article-emphasis .cover img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer;
}
.article-emphasis .description {
    padding: 70px;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-right: 180px;
}
.article-emphasis .description .badge {
    margin-bottom: 10px;
    font-size: 16px;
    color: #FFFFFF;
    border-color: #FFFFFF;
}
.article-emphasis .description .title {
    font-size: 24px;
    font-family: "Gelica", sans-serif;
    font-weight: 400;
    margin-bottom: 25px;
    color: #FFFFFF;
}
.article-emphasis .description hr {
    background-color: #FFFFFF;
    border: 0;
    width: 100%;
    height: 1px;
    margin-bottom: 25px;
    max-width: 250px;
}
@media screen and (max-width: 525px) {
    .article-emphasis .description hr {
        max-width: 130px;
    }
}
.article-emphasis .description .tagline {
    font-family: "Gelica", sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 50px;
}
.article-emphasis .description .more {
    font-size: 20px;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}
.article-emphasis .description .more:hover img {
    transition: 200ms ease-in-out;
    transform: translateX(10px);
}
@media screen and (max-width: 1200px) {
    .article-emphasis .description {
        padding-right: 70px;
    }
}
@media screen and (max-width: 1000px) {
    .article-emphasis {
        height: 400px;
    }
    .article-emphasis .cover {
        height: 100%;
        overflow: hidden;
    }
    .article-emphasis .cover img {
        -o-object-position: top;
        object-position: top;
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .article-emphasis .description {
        padding: 20px;
    }
}
@media screen and (max-width: 900px) {
    .article-emphasis {
        align-items: flex-start;
        height: 220px;
        max-height: unset;
    }
    .article-emphasis .cover {
        height: 220px;
        width: 40%;
    }
    .article-emphasis .description .badge {
        font-size: 12px;
        padding: 4px 19px;
    }
    .article-emphasis .description .title {
        font-size: 16px;
        font-weight: 400;
        max-width: 225px;
        margin-bottom: 10px;
    }
    .article-emphasis .description hr {
        margin-bottom: 10px;
    }
    .article-emphasis .description .tagline {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .article-emphasis .description .more {
        font-size: 12px;
    }
}
@media screen and (max-width: 780px) {
    .article-emphasis {
        flex-direction: column;
        height: auto;
    }
    .article-emphasis .cover {
        width: 100%;
    }
}

.sidebar-articles {
    min-width: 385px;
    width: 385px;
    padding-top: 50px;
    padding-inline: 30px;
    padding-bottom: 100px;
    border: 1px solid #000000;
    border-radius: 16px;
}
.sidebar-articles .title {
    font-size: 20px;
    font-family: "Axiforma", sans-serif;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 36px;
}
.sidebar-articles .title span {
    transform: translateY(-18px);
    display: block;
    font-family: "Gelica", sans-serif;
    font-weight: 500;
    font-style: italic;
    color: #DDA5B2;
    text-transform: lowercase;
}
.sidebar-articles .sidebar-post-item {
    display: flex;
    gap: 32px;
    padding-left: 6px;
    padding-right: 27px;
}
.sidebar-articles .sidebar-post-item .number {
    font-size: 32px;
    line-height: 38px;
    font-family: "Gelica", sans-serif;
    font-weight: 500;
    color: #9A9A9A;
}
.sidebar-articles .sidebar-post-item .content .title-article {
    font-size: 16px;
    font-weight: 400;
    font-family: "Gelica", sans-serif;
    color: #000000;
    margin-bottom: 10px;
}
.sidebar-articles .sidebar-post-item .content .more {
    font-size: 14px;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    color: #DDA5B2;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    gap: 10px;
    text-decoration: none;
}
.sidebar-articles .sidebar-post-item .content .more:hover {
    color: #ef6c8a;
}
.sidebar-articles .sidebar-post-item .content .more:hover svg {
    transition: 200ms ease-in-out;
    transform: translateX(10px);
}
.sidebar-articles .sidebar-post-item .content .more:hover svg g path {
    fill: #ef6c8a;
}
.sidebar-articles .sidebar-post-item .content .more:hover svg defs clipPath rect {
    fill: #ef6c8a;
}
.sidebar-articles .sidebar-post-item:not(:first-of-type) {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #DEDEDE;
}
@media screen and (max-width: 1200px) {
    .sidebar-articles {
        min-width: 300px;
        width: 300px;
        padding-inline: 20px;
    }
    .sidebar-articles .sidebar-post-item {
        padding-right: 0;
    }
}
@media screen and (max-width: 1000px) {
    .sidebar-articles {
        display: none;
    }
}

.sidebar-instagram {
    min-width: 385px;
    width: 385px;
    padding-inline: 21px;
    padding-top: 30px;
    background-color: #E8D9C7;
    border-radius: 10px;
    height: 640px;
}
.sidebar-instagram h3 {
    font-size: 32px;
    font-weight: 600;
    font-family: "Gelica", sans-serif;
    color: #000000;
    line-height: 103.3%;
    letter-spacing: -2%;
    margin-bottom: 10px;
    margin-inline: auto;
    text-align: center;
    max-width: 175px;
}
.sidebar-instagram p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 137.1%;
    letter-spacing: -5%;
    color: #000000;
    max-width: 256px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 10px;
}
.sidebar-instagram a.btn-instagram {
    max-width: 222px;
    height: 61px;
    display: block;
    border-radius: 62px;
    background-color: #DDA5B2;
    color: #FFFFFF;
    padding: 5px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: flex-start;
    text-decoration: none;
    margin-bottom: 40px;
    margin-inline: auto;
    font-weight: 600;
    font-size: 16px;
    line-height: 137.1%;
    transition: 0.2s ease-in-out;
    font-family: "Axiforma", sans-serif;
}
.sidebar-instagram a.btn-instagram:hover {
    background-color: #ef6c8a;
}
.sidebar-instagram .cover {
    display: block;
    max-width: 100%;
}
@media screen and (max-width: 1200px) {
    .sidebar-instagram {
        min-width: 300px;
        width: 300px;
    }
}
@media screen and (max-width: 1174px) {
    .sidebar-instagram {
        display: none;
    }
}
.sidebar-instagram.mobile {
    height: 400px !important;
    display: block;
    width: calc(100% - 40px);
    margin-inline: auto;
    padding-inline: 30px;
    padding-right: 0;
    margin-bottom: 100px;
    display: flex;
    position: relative;
}
.sidebar-instagram.mobile .wraper {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.sidebar-instagram.mobile .wraper h3, .sidebar-instagram.mobile .wraper p {
    text-align: left !important;
    margin-inline: 0;
}
.sidebar-instagram.mobile .wraper a {
    width: 100%;
    max-width: unset;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.sidebar-instagram.mobile .cover {
    height: 460px;
    margin-top: -50px;
    position: absolute;
    right: 30px;
    z-index: 1;
}
@media screen and (min-width: 1000px) {
    .sidebar-instagram.mobile {
        display: none;
    }
}
@media screen and (max-width: 900px) {
    /* .sidebar-instagram.mobile {
        max-width: 400px;
        height: auto !important;
        margin-bottom: 100px;
    }
    .sidebar-instagram.mobile .cover {
        width: 162px;
        height: 242px;
    }
    .sidebar-instagram.mobile .wraper h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .sidebar-instagram.mobile .wraper p {
        font-size: 11px;
        max-width: 120px;
    }
    .sidebar-instagram.mobile .wraper a {
        font-size: 11px;
        height: 32px;
        gap: 5px;
    }
    .sidebar-instagram.mobile .wraper a img {
        width: 24px;
    } */
    }
@media screen and (max-width: 376px) {
    .sidebar-instagram.mobile .wraper a {
        color: #000000;
        margin-bottom: 30px;
    }
    .sidebar-instagram.mobile .cover {
        right: 0;
    }
}

.put-in-first {
    order: -1;
}

.card-post {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 36px;
}
.card-post .cover {
    min-width: 300px;
    aspect-ratio: 2/2;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.card-post .cover .foto{
    height: 300px;
    width: 300px;
    overflow: hidden;
    display: block;
}

.card-post .cover .foto img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card-post .cover .like {
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}
@media screen and (max-width: 780px) {
    .card-post .cover .like {
        top: 16px;
        right: 24px;
    }
    .sidebar-instagram.mobile{
       display: block;       
        margin-bottom: 210px;
    }
    .sidebar-instagram.mobile .cover{
        margin-left: auto;
        margin-right: auto;
        right: 0;
        left: 0;
        margin-top: -30px;
    }
}
.card-post .cover .like:active, .card-post .cover .like.active {
    transition: 200ms ease-in-out;
    transform: scale(0.8);
    -webkit-user-select: unset;
    -moz-user-select: unset;
    user-select: unset;
}
.card-post .cover .like:active svg path, .card-post .cover .like.active svg path {
    fill: #B69AE2;
    stroke: #B69AE2;
    fill-opacity: 1;
}
.card-post .cover > img {
    height: 100%;
}
.card-post .description {
    display: flex;
    flex-direction: column;
    min-height: 304px;
    justify-content: space-between;
    min-width: 50%;
}
.card-post .description .wraper .badge {
    margin-bottom: 10px;
}
.card-post .description .wraper h3 {
    font-size: 24px;
    font-family: "Gelica", sans-serif;
    margin-bottom: 5px;
    font-weight: 400;
    color: #000000;
}
.card-post .description .wraper .tagline {
    font-family: "Gelica", sans-serif;
    font-size: 20px;
    color: #9A9A9A;
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 500;
}
.card-post .description .wraper hr {
    background-color: #9A9A9A;
    margin-bottom: 15px;
}
.card-post .description .wraper p:not(.tagline) {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #9A9A9A;
    line-height: 170%;
    letter-spacing: -0.03em;
    height: 90px;
    overflow: hidden;
}
.card-post .description .more {
    display: block;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    color: #DDA5B2;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-top: 20px;
    text-transform: uppercase;
    transition: 200ms ease-in-out;
}
.card-post .description .more:hover {
    color: #ef6c8a;
}
.card-post .description .more:hover svg {
    transition: 200ms ease-in-out;
    transform: translateX(10px);
}
.card-post .description .more:hover svg g path {
    fill: #ef6c8a;
}
.card-post .description .more:hover svg defs clipPath rect {
    fill: #ef6c8a;
}
@media screen and (max-width: 900px) {
    .card-post {
        gap: 16px;
    }
    .card-post .cover {
        min-width: 170px;
        height: 170px;
    }
    .card-post .description {
        min-height: unset;
    }
    .card-post .description .wraper h3 {
        font-size: 14px;
    }
    .card-post .description .wraper .tagline {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .card-post .description .wraper p:not(.tagline) {
        display: none;
    }
    .card-post .description .wraper hr {
        display: none;
    }
    .card-post .description .more {
        font-size: 12px;
        margin-top: 0;
    }
    .card-post .description .more img {
        width: 13px;
    }
}
@media screen and (max-width: 525px) {
    .card-post {
        padding-inline: 20px;
    }
    .card-post .cover .like svg {
        width: 19px;
    }
}

.adPartners img {
    display: block;
    width: 100%;
}

.indication-box h3 {
    font-size: 24px;
    font-weight: 400;
    font-family: "Eugusto", sans-serif;
    color: #000000;
    margin-bottom: 26px;
    margin-inline: auto;
    margin-top: 70px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
@media screen and (max-width: 900px) {
    .indication-box h3 {
        font-size: 16px;
        margin-top: 40px;
        margin-bottom: 17px;
    }
}
.indication-box .indication-wraper {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.indication-box .indication-wraper .item {
    text-align: center;
    width: 100%;
    flex-basis: 33.33333%;
}
.indication-box .indication-wraper .item .cover {
    width: 100%;
    aspect-ratio: 2/2;
    background-color: #F2F2F2;
    border-radius: 21px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.indication-box .indication-wraper .item .cover img {
    transition: 200ms ease-in-out;
    width: 140px;
}
.indication-box .indication-wraper .item .cover:hover img {
    transform: scale(1.2);
}
.indication-box .indication-wraper .item h4 {
    font-size: 24px;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    color: #000000;
    text-align: center;
    margin-bottom: 9px;
}
.indication-box .indication-wraper .item .price {
    font-size: 20px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 30px;
    color: #000000;
}
.indication-box .indication-wraper .item .btn-purchase {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    color: #DDA5B2;
    text-transform: uppercase;
    transition: 200ms ease-in-out;
}
.indication-box .indication-wraper .item .btn-purchase:hover {
    color: #ef6c8a;
}
@media screen and (max-width: 900px) {
    .indication-box .indication-wraper .item {
        max-width: 230px;
    }
    .indication-box .indication-wraper .item .cover {
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .indication-box .indication-wraper .item .cover img {
        width: 80px;
    }
    .indication-box .indication-wraper .item h4 {
        font-size: 12px;
        margin-bottom: 3px;
    }
    .indication-box .indication-wraper .item .price {
        font-size: 10px;
        margin-bottom: 14px;
    }
    .indication-box .indication-wraper .item .btn-purchase {
        font-size: 10px;
    }
}
@media screen and (max-width: 525px) {
    .indication-box .indication-wraper {
        width: calc(100% - 40px);
        margin-inline: auto;
    }
}

.card-video {
    display: flex;
    align-items: center;
    gap: 52px;
}
.card-video .cover {
    position: relative;
    width: 670px;
    aspect-ratio: 16/9;
    border-radius: 27px;
    overflow: hidden;
}
.card-video .cover::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/icon-play.svg);
    background-size: 13%;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #00000040;
    cursor: pointer;
}

.card-video .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-video .info {
    padding-right: 100px;
}
.card-video .info h3 {
    max-width: 312px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 400;
    font-family: "Gelica", sans-serif;
    color: #000000;
}
.card-video .info .btn-player {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    color: #DDA5B2;
    text-transform: uppercase;
    padding: 30px 70px 25px 70px;
    background-color: #F6F6F6;
    width: -moz-max-content;
    width: max-content;
    border-radius: 999px;
    text-decoration: none;
    transition: 200ms ease-in-out;
}
.card-video .info .btn-player svg {
    width: 36px;
    height: 36px;
    transition: 200ms ease-in-out;
}
.card-video .info .btn-player:hover {
    color: #ef6c8a;
    transform: scale(1.1);
    box-shadow: 0 0 13px -9px #000;
}
.card-video .info .btn-player:hover svg circle {
    fill: #ef6c8a;
}
.card-video:not(:first-of-type) {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #DEDEDE;
}
@media screen and (max-width: 1200px) {
    .card-video .cover {
        width: 55%;
        height: auto;
    }
}
@media screen and (max-width: 900px) {
    .card-video {
        flex-direction: column;
        gap: 20px;
    }
    .card-video .cover {
        width: 100%;
        height: auto;
    }
    .card-video .info {
        padding-right: unset;
    }
    .card-video .info h3 {
        margin-inline: auto;
        text-align: center;
    }
    .card-video .info .btn-player {
        font-size: 12px;
        padding: 12px 38px;
        margin-inline: auto;
    }
}

.load-more {
    width: -moz-max-content;
    width: max-content;
    font-size: 20px;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    color: #DDA5B2;
    text-transform: uppercase;
    display: block;
    margin-top: 50px;
    margin-inline: auto;
    transition: 200ms ease-in-out;
}
.load-more:hover {
    color: #ef6c8a;
}
@media screen and (max-width: 1024px) {
    .load-more {
        margin-top: 80px;
    }
}
@media screen and (max-width: 780px) {
    .load-more {
        font-size: 14px;
        margin-top: 50px;
        margin-bottom: 60px;
    }
}

.aside-newsletter {
    margin-bottom: 200px;
}
.aside-newsletter .container {
    background-color: #F6F6F6;
    border-radius: 30px;
    padding: 60px;
}
.aside-newsletter .container h2 {
    font-family: "Eugusto", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #B69AE2;
    text-align: center;
    margin-bottom: 48px;
}
.aside-newsletter .container form {
    display: flex;
    margin-bottom: 30px;
}
.aside-newsletter .container form input {
    flex: 1;
    font-size: 20px !important;
    font-weight: 500 !important;
    font-family: "Montserrat", sans-serif;
    color: #989898 !important;
    padding-left: 65px !important;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 0;
    border-bottom: 1px solid #989898 !important;
    background-color: transparent;
    margin-right: 105px;
    outline: none;
    background-image: url(../images/icon-email.svg);
    background-repeat: no-repeat;
    background-position: center left 23px;
}
.aside-newsletter .container form input::-moz-placeholder {
    text-transform: uppercase;
}
.aside-newsletter .container form input::placeholder {
    text-transform: uppercase;
}
.aside-newsletter .container form input:focus {
    border-color: #DDA5B2;
}
.aside-newsletter .container form button[type=submit], #aviso-cookies button,
#contact button[type="submit"] {
    color: #DDA5B2;
    font-family: "Axiforma", sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    gap: 10px;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    transition: 200ms ease-in-out;
}
.aside-newsletter .container form button[type=submit]:hover, #aviso-cookies button:hover {
    color: #ef6c8a;
}
.aside-newsletter .container form button[type=submit]:hover svg, #aviso-cookies button:hover svg {
    transition: 200ms ease-in-out;
    transform: translateX(10px);
}
.aside-newsletter .container form button[type=submit]:hover svg g path, #aviso-cookies button:hover svg g path {
    fill: #ef6c8a;
}
.aside-newsletter .container form button[type=submit]:hover svg defs clipPath rect, #aviso-cookies button:hover svg defs clipPath rect {
    fill: #ef6c8a;
}
.aside-newsletter .container p {
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    line-height: 142.6%;
    color: #000000;
    max-width: 553px;
}
@media screen and (max-width: 1200px) {
    .aside-newsletter {
        max-width: 900px;
        margin-inline: auto;
    }
}
@media screen and (max-width: 1024px) {
    .aside-newsletter {
        max-width: 800px;
        width: 90%;
        margin-bottom: 100px;
    }
    .aside-newsletter .container {
        width: 100%;
        max-width: unset;
    }
}
@media screen and (max-width: 780px) {
    .aside-newsletter {
        margin-bottom: 100px;
    }
    .aside-newsletter .container {
        padding: 0 20px;
        background-color: transparent;
    }
    .aside-newsletter .container h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .aside-newsletter .container form {
        justify-content: space-between;
    }
    .aside-newsletter .container form input {
        margin-right: 0;
        font-size: 12px !important;
        padding-left: 9px !important;
        padding-bottom: 15px !important;
        background-image: none;
        margin-right: 27px;
        border-left: none !important;
        border-top: none !important;
        border-right: none !important;
        border-radius: 0 !important;
        min-height: auto !important;
    }
    .aside-newsletter .container form button[type=submit] {
        font-size: 12px;
    }
    .aside-newsletter .container p {
        font-size: 12px;
    }
}
@media screen and (max-width: 525px) {
    .aside-newsletter {
        width: 100%;
    }
}

.footer {
    background-color: #E8D9C7;
}

.footer .rodape1{
    height: auto;
    padding-block: 70px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    font-family: "Eugusto", sans-serif;

}

.footer h3 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 400;
    font-family: "Eugusto", sans-serif;
    color: #000000;
    /* text-align: center; */
}
.footer .rodape1 ul {
    list-style: none;
    
}
.footer .rodape1 ul li {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 142.6%;
    letter-spacing: -0.42px;
    margin-block-end: 6px;
}
.footer .rodape1 ul a {
    color: inherit;
    transition: color 200ms ease-in-out;
}
.footer .rodape1 ul a:hover {
    color: #B69AE2;
}
.footer .rodape1 ul li.sobre span {
    color: #B69AE2;
    font-weight: 600;
}
.footer .social {
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.footer .social a {
    text-decoration: none;
}
.footer .social a img {
    width: 32px;
    height: 32px;
}
.footer .social a:hover img {
    transition: 200ms ease-in-out;
    transform: scale(1.1);
}

footer .footer-bottom{
    background-color: #000;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
@media screen and (max-width: 900px) {
    .footer .rodape1 {
        padding-block: 35px;
    }
}
@media screen and (max-width: 780px) {
    .footer {
        padding-top: 40px;
        height: auto;
    }    
    .footer .rodape1 {
        padding-block-end: 35px;
        justify-content: space-evenly;
    }
    .footer h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .footer .social {
        gap: 17px;
    }
    .footer .social a img {
        width: 18px;
        height: 18px;
    }
}
@media screen and (max-width: 580px) {
    footer .footer-bottom {
        padding-bottom: 80px;
    }
}
.share-like {
    height: 80px;
    width: 100%;
    border-radius: 90px;
    background-color: #F6F6F6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
}
.share-like h6 {
    font-size: 14px;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    color: #DDA5B2;
    text-transform: uppercase;
}
.share-like .likes {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}
.share-like .likes svg {
    transition: 200ms ease-in-out;
}
.share-like .likes:active svg, .share-like .likes.active svg {
    transition: 200ms ease-in-out;
    -webkit-user-select: unset;
    -moz-user-select: unset;
    user-select: unset;
    transform: scale(0.8);
}
.share-like .likes:active svg path, .share-like .likes.active svg path {
    fill: #B69AE2;
    stroke: #B69AE2;
    fill-opacity: 1;
}
.share-like .likes p {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    color: #000000;
    line-height: auto;
    letter-spacing: 0;
    margin-bottom: 0;
}
@media screen and (max-width: 780px) {
    .share-like {
        padding-left: 30px;
        padding-right: 30px;
        height: 57px;
    }
    .share-like h6 {
        font-size: 12px;
    }
    .share-like .likes {
        gap: 8px;
    }
    .share-like .likes svg {
        width: 20px;
    }
    .share-like .likes p {
        font-size: 11px;
        color: #DDA5B2;
    }
}

.box-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}
.box-author::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    bottom: 28px;
}
.box-author .person {
    position: relative;
    z-index: 1;
    background-color: #FFF;
    padding-right: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.box-author .person .avatar{
    width: 64px;
    height:64px;
    overflow: hidden;
    border-radius: 50%;
}

.box-author .person .avatar img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.box-author .person .info h4 {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    color: #E8D9C7;
}
.box-author .person .info h4 span {
    margin-top: -4px;
    display: block;
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    font-family: "Gelica", sans-serif;
    color: #000000;
}
@media screen and (max-width: 780px) {
    .box-author .person {
        gap: 9px;
    }
    .box-author .person .info h4 {
        font-size: 12px;
    }
    .box-author .person .info h4 span {
        font-size: 14px;
    }
    .box-author .person .avatar img {
        width: 48px;
    }
}
.box-author .social {
    position: relative;
    z-index: 1;
    padding-left: 14px;
    background-color: #FFF;
    display: flex;
    align-items: center;
    gap: 40px;
    height: 68px;
}
.box-author .social img {
    width: 28px;
    height: 28px;
    transition: 200ms ease-in-out;
}
.box-author .social img:hover {
    transform: scale(1.1);
}
@media screen and (max-width: 780px) {
    .box-author .social {
        gap: 20px;
    }
    .box-author .social img {
        width: 18px;
    }
}

.share-social-midia {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid #F6F6F6;
    border-bottom: 1px solid #F6F6F6;
    margin-bottom: 50px;
}
.share-social-midia h6 {
    font-size: 14px;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    line-height: 150%;
    color: #000000;
    text-transform: uppercase;
}
.share-social-midia .social {
    display: flex;
    align-items: center;
    gap: 40px;
}
.share-social-midia .social a {
    text-decoration: none;
}
.share-social-midia .social  img {
    width: 28px;
    height: 28px;
    transition: 200ms ease-in-out;
}
.share-social-midia .social  img:hover {
    transform: scale(1.1);
}

.share-button{
    cursor: pointer;
}

#btnCopy2{
    margin-bottom: 15px;
}

@media screen and (max-width: 780px) {
    .share-social-midia .social {
        gap: 25px;
    }
    .share-social-midia .social  img {
        width: 18px;
        height: 18px;
    }
}

.box-tags {
    margin-bottom: 200px;
}
.box-tags h4 {
    font-size: 14px;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    line-height: 150%;
    color: #E8D9C7;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.box-tags .list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.box-tags .list a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    line-height: 150%;
    color: #000000;
    transition: 200ms ease-in-out;
}
.box-tags .list a:hover {
    color: #B69AE2;
}
@media screen and (max-width: 780px) {
    .box-tags {
        margin-bottom: 100px;
    }
    .box-tags .list {
        gap: 10px;
    }
}

.header-videos {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
.header-videos form {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}
.header-videos .form-group {
    flex: 1;
    display: flex;
    margin-right: 84px;
    border: 1px solid #7A7A7A;
    border-radius: 3px;
}
@media screen and (min-width: 780px) {
    .header-videos .form-group {
        margin-inline: auto;
    }
}
.header-videos .form-group input {
    flex: 1;
    height: 63px;
    color: #7A7A7A !important;
    outline: none;
    padding: 22px 30px;
    padding-right: 55px;
    border: 0 !important;
}
.header-videos .form-group input::-moz-placeholder {
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    letter-spacing: -2%;
}
.header-videos .form-group input::placeholder {
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    letter-spacing: -2%;
}
.header-videos .form-group button[type=submit] {
    width: 16px;
    border: 0;
    background-color: transparent;
    padding-right: 45px;
    padding-left: 20px;
    /* margin-left: 10px; */
    cursor: pointer;
}
.header-videos .form-group button[type=submit] img {
    width: 16px;
}
@media screen and (max-width: 900px) {
    .header-videos form {
        flex-direction: column;        
    }
    .header-videos .form-group {
        width: 100%;
    }
}
@media screen and (max-width: 780px) {
    .header-videos {
        flex-direction: column;
        align-items: flex-end;
        margin-bottom: 30px;
    }
    .header-videos .form-group {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .header-videos .form-group input {
        padding: 17px 20px;
        font-size: 12px;
        height: 50px;
    }
    .header-videos .form-group input::-moz-placeholder {
        font-size: 12px;
    }
    .header-videos .form-group input::placeholder {
        font-size: 12px;
    }
}

.selection-form {
    display: flex;
    align-items: center;
}
@media screen and (min-width: 780px) {
    .selection-form {
        align-items: center;
    }
}
.selection-form p {
    margin-inline: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #7A7A7A;
    letter-spacing: -2%;
    font-family: "Montserrat", sans-serif;
}
.selection-form p select {
    -webkit-appearance: unset;
    -moz-appearance: unset;
    appearance: unset;
    font-size: 16px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    color: #000000;
    border: 0;
    cursor: pointer;
    outline: none;
    padding-right: 18px;
    background-image: url(../images/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: center right 0;
    width: unset;
    padding-left: unset;
    display: unset;
}
@media screen and (max-width: 900px) { 
    .selection-form {
        width: 100%;
    }   
    .selection-form p select {
        width: 100%;
    }
}
@media screen and (max-width: 780px) {
    .selection-form img {
        width: 15px;
    }
    .selection-form p {
        font-size: 12px;
    }
    .selection-form p select {
        font-size: 12px;
    }
}

.posts-navigation {
    margin-top: 100px;
}
.posts-navigation nav.container {
    display: flex;
    align-items: center !important;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid #9A9A9A;
    border-bottom: 1px solid #9A9A9A;
}
.posts-navigation nav.container .pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.posts-navigation nav.container .pages a {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #9A9A9A;
    padding: 12px 20px;
    border-radius: 999px;
}
.posts-navigation nav.container .pages a.active, .posts-navigation nav.container .pages a:hover {
    background-color: #DDA5B2;
    color: #FFF;
}
.posts-navigation nav.container .pages a.active:hover, .posts-navigation nav.container .pages a:hover:hover {
    transition: 200ms background-color;
    background-color: #ef6c8a;
}
.posts-navigation nav.container .nav-prev.has-more svg path,
.posts-navigation nav.container .nav-next.has-more svg path {
    stroke: #DDA5B2;
}
.posts-navigation nav.container .nav-prev.has-more:hover svg path,
.posts-navigation nav.container .nav-next.has-more:hover svg path {
    stroke: #ef6c8a;
}
@media screen and (max-width: 530px) {
    .posts-navigation nav.container {
        padding-inline: 20px !important;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .posts-navigation nav.container .pages a {
        font-size: 16px;
        padding: 6px 12px;
    }
}

.home main {
    /* overflow-x: hidden; */
}
.home .presentation {
    padding: 50px 0 116px;
    background-color: #F6F6F6;
    position: relative;
}
.home .presentation .navigation {
    height: 50px;
    position: absolute;
    top: calc(50% + 80px);
    left: 0;
    width: 416px;
    z-index: 4;
}
@media screen and (max-width: 1100px) {
    .home .presentation .navigation {
        top: unset;
        bottom: 0;
        left: unset;
        right: calc((100% - 640px) / 2);
    }
}
@media screen and (max-width: 900px) {
    .home .presentation {
        padding: 0 0 50px;
    }
    .home .presentation .container .description {
        padding-inline: 20px;
    }
    .home .presentation .navigation {
        right: 20px;
    }
}
@media screen and (max-width: 780px) {
    .home .presentation .container {
        padding-inline: 0;
    }
}
@media screen and (max-width: 525px) {
    .home .presentation .navigation,
    .home .presentation .navigation .buttons {
        width: 100%;
        margin-block-start: 0.5rem;
    }
    .home .presentation .navigation .buttons {
        position: relative;
}
    .home .presentation .navigation .buttons :is(.prev, .next) {
        position: absolute;
    }
    .home .presentation .navigation .buttons .prev {
        left: 56px;
    }
    .home .presentation .navigation .buttons .next {
        right: 20px;
    }
}
.home .web-stories {
    padding-top: 50px;
}
.home .web-stories h2 {
    font-family: "Eugusto", sans-serif;
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    color: #B69AE2;
    margin-bottom: 50px;
}
.home .web-stories .wraper {
    max-width: 100%;
    overflow-x: auto;
    margin-bottom: 50px;
    padding-inline: 2px;
}
.home .web-stories .container {
    max-width: unset;
    padding-inline: 0;
}
@media screen and (max-width: 1200px) {
    .home .web-stories .wraper {
        margin-left: 20px;
    }
}
@media screen and (max-width: 900px) {
    .home .web-stories {
        padding-top: 50px;
    }
    .home .web-stories h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }
    .home .web-stories .wraper {
        margin-left: calc((100% - 580px) / 2);
        margin-bottom: 125px;
    }
}
@media screen and (max-width: 600px) {
    .home .web-stories .wraper {
        margin-left: 20px;
        margin-bottom: 100px;
    }
}
.home .emphasis {
    margin-bottom: 100px;
}
.home .emphasis h2, .home .emphasis h1 {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    font-family: "Eugusto", sans-serif;
    margin-bottom: 50px;
    color: #C8C37C;
}
@media screen and (max-width: 780px) {
    .home .emphasis h2, .home .emphasis h1 {
        font-size: 24px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 525px) {
   
    .home .emphasis {
        margin-bottom: 0;
    }
   
    .home .emphasis .container .article-emphasis {
  /* max-width: calc(100% - 40px);
        margin-inline: 20px; */
       
    }
}
.home .blog-1 {
    margin-bottom: 50px;
}
.home .blog-1 .container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
@media screen and (max-width: 900px) {
    .home .blog-1 {
        margin-bottom: 100px;
    }
}
@media screen and (min-width: 525px) {
    .home .blog-1 .card-post:first-of-type {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }
}
@media screen and (max-width: 525px) {
    .home .blog-1 .container {
        padding-inline: 0;
    }
    .home .blog-1 .container .card-post .description {
        order: -1;
    }
    .home .blog-1 .container .card-post .description.put-in-first {
        order: 1;
    }
}
.home .blog-2 {
    margin-bottom: 100px;
}
.home .blog-2 h2 {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    font-family: "Eugusto", sans-serif;
    margin-bottom: 50px;
    color: #B69AE2;
}
.home .blog-2 .container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
@media screen and (min-width: 525px) {
    .home .blog-2 .container .before-indicator .card-post:nth-child(n+3) {
        display: none;
    }
    .home .blog-2 .container .before-indicator .card-post:nth-child(n+2) {
        border: 0;
    }
}
@media screen and (max-width: 525px) {
    .home .blog-2 .container {
        padding-inline: 0;
    }
    .home .blog-2 .container .wraper > .card-post {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .home .blog-2 .container .wraper > .card-post:last-of-type {
        display: none;
    }
}
@media screen and (max-width: 1024px) {
    .home .blog-2 {
        margin-bottom: 80px;
    }
}
@media screen and (max-width: 780px) {
    .home .blog-2 h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }
}
.home .adPartners {
    width: 100%;
    height: auto;
    border-radius: 17px;
    margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
    .home .adPartners {
        max-width: 800px;
        margin-inline: auto;
        margin-bottom: 0;
    }
}
@media screen and (max-width: 780px) {
    .home .adPartners {
        height: auto;
    }
}
.home .videos {
    margin-bottom: 100px;
}
.home .videos h2 {
    text-align: center;
    margin-bottom: 50px;
    font-family: "Eugusto", sans-serif;
    font-weight: 400;
    font-size: 32px;
    color: #C8C37C;
}
.home .videos .container.only-mobile .put-in-first {
    order: unset;
}
.home .videos .container.only-mobile .card-video:not(:first-of-type) {
    margin-top: 0;
    padding-top: 0;
    border: 0;
}
.home .videos .container.only-mobile .card-video img {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1024px) {
    .home .videos {
        margin-bottom: 100px;
    }
}
@media screen and (max-width: 900px) {
    .home .videos {
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .home .videos h2 {
        margin-bottom: 30px;
    }
    .home .videos .load-more {
        display: none;
    }
}
@media screen and (max-width: 525px) {
    .home .videos {
        margin-top: 60px;
    }
    .home .videos h2 {
        font-size: 24px;
    }
    .home .videos .info h3 {
        font-size: 20px;
    }
}

.home.category main {
    overflow-x: hidden;
}
.home.category .selection-form {
    margin-top: 30px;
    margin-left: auto;
    width: -moz-max-content;
    width: max-content;
}
@media screen and (max-width: 530px) {
    .home.category .selection-form {
        margin-right: 20px;
    }
}
.home.category .emphasis h2,.home.category .emphasis h1 {
    margin-top: 30px;
}
.home.category .adPartners {
    margin-top: 100px;
    margin-bottom: 100px;
    height: auto;
}
.home.category .adPartners img {
    height: 100%;
}
@media screen and (max-width: 530px) {
    .home.category .adPartners {
        max-width: calc(100% - 40px);
        margin-inline: auto;
        height: 100px;
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

.article main {
    overflow-x: hidden;
}
@media screen and (min-width: 525px) {
    .article main .extra-only-mobile {
        display: none;
    }
}
@media screen and (min-width: 780px) {
    .article main {
        padding-top: 148px;
    }
}
@media screen and (min-width: 780px) {
    .article main > article {
        margin-top: 50px;
    }
}
.article main > article .badge {
    margin-bottom: 16px;
}
.article main > article h1 {
    font-size: 32px;
    font-weight: 400;
    font-family: "Gelica", sans-serif;
    color: #000000;
    margin-bottom: 10px;
}
.article main > article h1 + h2 {
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: #000000;
    margin-bottom: 15px;
}
.article main > article time {
    font-size: 16px;
    font-weight: 500;
    font-family: "Gelica", sans-serif;
    font-style: italic;
    margin-bottom: 30px;
    color: #7A7A7A;
    display: block;
}
.article main > article .cover {
    display: block;
    width: 100%;
    border-radius: 49px;
}
.article main > article .adsense {
    margin-bottom: 50px;
}
.article main > article figure {
    margin-bottom: 30px;
}
.article main > article figure.poster {
    margin-bottom: 50px;
}
.article main > article figure figcaption {
    font-size: 12px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    margin-top: 15px;
}
.article main > article p {
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: #7A7A7A;
    line-height: 178.2%;
    letter-spacing: -0.03em;
    margin-bottom: 5px;
}
.article main > article p b, .article main > article p strong {
    color: #000000;
    font-weight: 600;
}
.article main > article .indication-box {
    margin-bottom: 80px;
}
@media screen and (max-width: 525px) {
    .article main > article .indication-box {
        margin-bottom: 40px;
    }
}
.article main > article .mt-50 {
    margin-top: 50px;
}
.article main > article .share-like {
    margin-top: 60px;
    margin-bottom: 50px;
}
.article main .blog {
    margin-bottom: 200px;
}
.article main .blog h2 {
    text-align: center;
    font-family: "Eugusto", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #B69AE2;
    margin-bottom: 50px;
}
@media screen and (max-width: 525px) {
    .article main .blog .container-article {
        padding-inline: 0;
    }
}
@media screen and (max-width: 780px) {
    .article main > article {
        padding-top: 30px;
    }
    .article main > article h1 {
        font-size: 24px;
    }
    .article main > article h1 + h2 {
        font-size: 13px;
    }
    .article main > article time {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .article main > article figure figcaption {
        font-size: 10px;
        margin-top: 10px;
    }
    .article main > article figure.poster {
        margin-bottom: 30px;
    }
    .article main > article .adsense {
        margin-bottom: 30px;
        height: auto;
    }
    .article main > article .adsense img {
        height: 100%;
        border-radius: 0;
    }
    .article main > article p {
        margin-bottom: 30px;
        font-family: "Montserrat", sans-serif;
        font-size: 13px;
        color: #7A7A7A;
    }
    .article main > article p b, .article main > article p strong {
        color: #000000;
    }
    .article main .blog {
        margin-bottom: 100px;
    }
    .article main .blog h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }
}

.list-videos main {
    overflow-x: hidden;
}.list-videos .search-videos {
    margin-block-end: 200px;
}
.list-videos .search-videos .container h2, .list-videos .search-videos .container h1 {
    font-size: 32px;
    font-weight: 400;
    font-family: "Eugusto", sans-serif;
    color: #B69AE2;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.list-videos .search-videos .container .load-more {
    margin-bottom: 200px;
}
@media screen and (max-width: 780px) {
    .list-videos .search-videos .container h2, .list-videos .search-videos .container h1 {
        margin-top: 30px;
        margin-bottom: 30px;
        color: #C8C37C;
    }
    .list-videos .search-videos .container .load-more {
        margin-bottom: 100px;
    }
}
@media screen and (max-width: 780px) {
    .list-videos .card-video {
        align-items: flex-start;
    }
    .list-videos .card-video .put-in-first {
        order: 0;
    }
    .list-videos .card-video .info h3 {
        margin-left: 0;
        font-size: 20px;
        text-align: left;
        margin-bottom: 0;
    }
    .list-videos .card-video .info .btn-player {
        display: none;
    }
}
@media screen and (max-width: 525px) {
    .list-videos .search-videos .header-videos {
        padding-inline: 20px;
    }
    .list-videos .search-videos .container {
        padding-inline: 0;
    }
    .list-videos .card-video {
        padding-inline: 20px;
    }
}

.productor main {
    overflow-x: hidden;
}
.productor .header-videos {
    max-width: 730px;
    width: 100%;
    margin-inline: auto;
}
.productor .header-videos input {
    font-family: "Axiforma", sans-serif;    
}
.productor .header-videos button[type=submit] {
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.productor .header-videos .selection-form {
    gap: 1rem;
}
.productor .header-videos select {
    width: 75%;
}
@media screen and (min-width: 780px) {
    .productor .header-videos {
        padding-inline: 20px;
    }
}
.productor .title {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 400;
    font-family: "Eugusto", sans-serif;
    color: #B69AE2;
}
@media screen and (max-width: 780px) {
    .productor .title {
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 24px;
        max-width: 315px;
        margin-inline: auto;
    }
}
.productor .box-productor {
    padding: 70px 30px 70px 100px;
    background-color: #F6F6F6;
    border-radius: 15px;
    display: flex;
    margin-bottom: 100px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.productor .box-productor.internal {
    flex-direction: row;
    align-items: center;
}
.productor .box-productor .wraper {
    display: flex;
    align-items: center;
    gap: 16px;
}
.productor .box-productor .btn-open-internal-page {
    font-size: 14px;
    font-weight: 900;
    font-family: "Axiforma", sans-serif;
    color: #DDA5B2;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 27px;
}
.productor .box-productor .btn-open-internal-page svg {
    transform: translateY(-3px);
    transition: 200ms ease-in-out;
    width: 20px;
}
.productor .box-productor .btn-open-internal-page:hover {
    color: #ef6c8a;
}
.productor .box-productor .btn-open-internal-page:hover svg {
    transition: 200ms ease-in-out;
    transform: translateX(10px) translateY(-3px);
}
.productor .box-productor .btn-open-internal-page:hover svg g path {
    fill: #ef6c8a;
}
.productor .box-productor .btn-open-internal-page:hover svg defs clipPath rect {
    fill: #ef6c8a;
}
@media screen and (max-width: 780px) {
    .productor .box-productor .btn-open-internal-page {
        font-size: 12px;
    }
    .productor .box-productor .btn-open-internal-page img {
        transform: translateY(0);
        width: 13px;
    }
}
.productor .box-productor .avatar {
    width: 94px;
    height: 94px;
    border-radius: 9999px;
    overflow: hidden;
    border: 2px solid #E8D9C7;
}
.productor .box-productor .avatar img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.productor .box-productor h5 {
    font-size: 24px;
    font-weight: 600;
    font-family: "Gelica", sans-serif;
    color: #000000;
    margin-bottom: 7px;
}
.productor .box-productor .social {
    display: flex;
    align-items: center;
    gap: 20px;
}
.productor .box-productor .social img {
    width: 24px;
    transition: 0.2s;
}
.productor .box-productor .social a:hover img {
    transform: scale(1.1);
}
@media screen and (max-width: 780px) {
    .productor .box-productor {
        padding: 30px;
        gap: 15px;
        margin-bottom: 50px;
    }
    .productor .box-productor .avatar {
        width: 48px;
        height: 48px;
    }
    .productor .box-productor h5 {
        font-size: 16px;
        margin-bottom: 7px;
    }
    .productor .box-productor .social {
        gap: 12px;
    }
    .productor .box-productor .social img {
        width: 14px;
    }
}
.productor .list-productors .box-productor {
    margin-bottom: 40px;
}
.productor .aside-newsletter {
    margin-top: 200px;
}
@media screen and (max-width: 780px) {
    .productor .aside-newsletter {
        margin-top: 100px;
    }
}
@media screen and (max-width: 525px) {
    .productor.internal-page .container-article {
        padding-inline: 0;
    }
    .productor.internal-page .box-productor {
        width: calc(100% - 40px);
        margin-inline: auto;
    }
}

.swiper-pagination-bullet {
    background-color: #E8D9C7;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #B69AE2;
}

.presentation .swiper-horizontal > .swiper-pagination-bullets,
.presentation .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: unset;
    top: calc(50% + 110px);
    left: 0;
    width: -moz-max-content;
    width: max-content;
}
.presentation .swiper-button-next, .presentation .swiper-button-prev {
    display: none;
}
.presentation .navigation {
    position: relative;
}
.presentation .navigation .buttons {
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 14px;
}
.presentation .navigation button {
    background-color: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}
.presentation .navigation button svg path {
    fill: #D2C2AF;
}
.presentation .navigation button.has-more svg path {
    fill: #B69AE2;
}
@media screen and (max-width: 1100px) {
    .presentation .swiper-horizontal > .swiper-pagination-bullets,
    .presentation .swiper-pagination-bullets.swiper-pagination-horizontal {
        top: unset;
        left: calc((100% - 640px) / 2);
        bottom: 0;
    }
}
@media screen and (max-width: 900px) {
    .presentation .swiper-horizontal > .swiper-pagination-bullets,
    .presentation .swiper-pagination-bullets.swiper-pagination-horizontal {
        left: 20px;
    }
}
@media screen and (max-width: 525px) {
    .presentation .swiper-horizontal > .swiper-pagination-bullets,
    .presentation .swiper-pagination-bullets.swiper-pagination-horizontal {
        left: 50%;
        transform: translateX(-50%);
    }
}

.story-swiper .swiper-wrapper {
    padding-bottom: 20px;
}

.videos .swiper {
    padding-bottom: 70px;
}

body.hide {
    overflow: hidden;
}

.modal-video {
    position: fixed;
    inset: 0;
    z-index: 10;
    width: 100%;
    height: 100vh;
    top: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    transition: 200ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.modal-video.active {
    top: 0;
}
.modal-video .content .close {
    font-family: "Montserrat", sans-serif;
    display: block;
    margin-left: auto;
    margin-bottom: 40px;
    background-color: #FFF;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: 200ms ease-in-out;
    border: 0;
    font-weight: bold;
}
.modal-video .content .close:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.9);
}
.modal-video .embed {
    width: 850px;
    aspect-ratio: 16/9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-video .embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1100px) {
    .modal-video .embed {
        width: 600px;
    }
}
@media screen and (max-width: 780px) {
    .modal-video .content {
        width: 90%;
    }
    .modal-video .content .close {
        font-size: 12px;
        padding: 12px 16px;
        margin-bottom: 15px;
        font-weight: 400;
    }
    .modal-video .embed {
        width: 100%;
    }
}
/* Menus adds */
.menu-bottom {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 5rem;
    margin-block-end: 150px;
}
/* .menu-congtainer hr {
    display: none;
    marin-bottom: 2rem;
} */
@media screen and (max-width: 900px) {
    .menu-container hr {
        display: block;
    }
}
/* H-Socials */
.h-redes-sociais {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: "Eugusto", sans-serif;
}
.h-redes-sociais h3 {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}
.h-redes-sociais ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    list-style: none;
}
.h-redes-sociais ul img {
    width: 25px;
    aspect-ratio: 1;
}
/* H-Newsletter */
.h-newsletter {
    flex-basis: 400px;
}
.h-newsletter .aside-newsletter {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}
.h-newsletter .aside-newsletter .container {
    padding: 0;
    background-color: transparent;
    width: 100%;
    max-width: unset;
}
.h-newsletter .aside-newsletter .container h2 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #000000;
}
.h-newsletter .aside-newsletter .container form {
    margin-bottom: 0;
}
.h-newsletter .aside-newsletter .container form input {
    font-size: 12px !important;
    padding-left: 9px !important;
    padding-bottom: 15px !important;
    background-image: none;
    margin-right: 27px;
    border-left: none !important;
    border-top: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    min-height: auto !important;
}
@media screen and (max-width: 900px) {
    .aside-newsletter .container form button[type=submit] {
        font-size: 12px;
    }
}
@media screen and (max-width: 600px) {
    .menu-bottom {
        flex-direction: column;
        margin-top: 3rem;
    }
    .h-newsletter {
        min-width: 307px;
        flex-basis: unset;
    }
}
/* WhatsApp */
.whatsapp {
    background: linear-gradient(115deg, #0dc152, #0dc152, #1e904a);
    opacity: 0.85;
    width: -moz-fit-content;
    width: fit-content;
    padding: 15px 5px;
    text-align: center;
    transition: all ease-in-out 0.2s;
    border-radius: 20px;
    position: fixed;
    font-size: 17px;
    left: 25px;
    bottom: 15px;
    z-index: 98;
    color: #fff;
    cursor: pointer;
    animation: pulse 5s 2.2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.493);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 7px 15px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(0.8);
        box-shadow: 0 0 1px 0px rgb(9, 180, 3);
    }
}
.whatsapp span {
    margin-right: 10px;
    position: relative;
    vertical-align: middle;
    display: inline-block;
    font-size: 17px;
    line-height: 21px;
    font-family: "Axiforma", sans-serif;
}
.whatsapp img {
    margin-inline: 15px;
    float: left;
}
.whatsapp:hover {
    opacity: 0.95;
}

.ul-whatsapp {
    position: fixed;
    width: calc(25% + 68px);
    ;
    max-width: -moz-fit-content;
    left: -100px;
    bottom: -90px;
    background: #f3f3f3;
    border-radius: 8px;
    z-index: 999;
    box-shadow: 0 0 25px -5px #8c8c8c;
    transition: all ease-in-out 0.25s;
    transform: scale(0);
    opacity: 0;
    transform-origin: top;
}
.ul-whatsapp .topo-whats {
    color: #fff;
    background: #0dc152;
    padding: 15px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-family: "Axiforma", sans-serif;
}
.ul-whatsapp .cont-wpp {
    padding-inline: 10px;
}
.ul-whatsapp .cont-wpp li {
    border-bottom: 1px solid #d8d8d8;
    transition: all ease-in-out 0.2s;
    width: 100%;
    margin-bottom: 10px;
    list-style: none;
    float: left;
}
.ul-whatsapp .cont-wpp li a {
    float: left;
    width: 100%;
    padding: 12px;
}
.ul-whatsapp .cont-wpp li a .foto {
    background-size: cover;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    float: left;
}
.ul-whatsapp .cont-wpp li a .foto img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.ul-whatsapp .cont-wpp li a .info-wpp {
    position: relative;
    vertical-align: middle;
    display: inline-block;
    font-size: 17px;
    color: #000;
    line-height: 21px;
    margin-left: 10px;
}
.ul-whatsapp .cont-wpp li a .info-wpp p {
    margin-bottom: 0;
    font-family: "Axiforma", sans-serif;
}
.ul-whatsapp .cont-wpp li a .info-wpp p:last-child {
    font-weight: 800;
}
.ul-whatsapp .cont-wpp li:hover:not(.topo-whats) a {
    background: #e0e0e0;
}
.ul-whatsapp.shown {
    transform: scale(1);
    bottom: 90px;
    left: 20px;
    opacity: 0.99;
}
@media (max-width: 991px) {
    .ul-whatsapp.shown {
        width: calc(50% + 145px);
    }
}
.ul-whatsapp::after {
    z-index: -1;
    display: inline-block;
    content: "";
    position: absolute;
    bottom: -20px;
    left: 10px;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 25px solid #f3f3f3;
}
/* Recpatcha Badge */
.grecaptcha-badge {
    display: none;
}

/* Select2 */
.select2-container--default {
    font-family: "Axiforma", sans-serif;
}

.selection-form .select2-container--default .select2-selection--single {
    height: 45px;
    display: flex;
    align-items: center;
    border: 1px solid #7A7A7A;
}

.productor .selection-form .select2-container--default .select2-selection--single {
    height: 58px;
    display: flex;
    align-items: center;
    border: 1px solid #7A7A7A;
    border-radius: 8px;
}

.selection-form.video .select2-container--default .select2-selection--single {
    height: 63px;
    display: flex;
    align-items: center;
}

.selection-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
}

.selection-form.video .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 63px;
}

.selection-form .select2-container--default input[type=text] {
    min-height: initial;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #B69AE2 !important;
}

/* Sweet Alert */
.custom-swal-font {
    font-family: "Axiforma", sans-serif;
}

/* Politicas e Termos */

.politica-termos{
    margin-top: 30px;
}

.politica-termos .texto {
    margin-block-end: 125px;
}
.politica-termos .texto * {
    font-family: "Axiforma", sans-serif;
}

.politica-termos .texto a {
    color: #B69AE2;
}
.politica-termos .texto p {
    margin-bottom: 1rem;
}

.container-article.politica-termos {
    max-width: 1180px;
}
/* Sticky Els */
.sticky {
    position: sticky;
    top: 98px;
}

/* Swiper Destaque */
.emphasis-swiper {
    padding-block-end: 2rem;
}



.emphasis-swiper .swiper-pagination {
    bottom: 0px;
}

.emphasis-swiper .swiper-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    z-index: 11;
}

.emphasis-swiper > button svg path {
    fill: #B69AE2;
}

.emphasis-swiper > button[disabled] svg path {
    fill: #D2C2AF;
}

.emphasis-swiper .swiper-btn-next {
    right: 5px;
    bottom: 0;
}

.emphasis-swiper .swiper-btn-prev {
    left: 5px;
    bottom: 0;
}

/* Indica Swiper */
.indica-swiper {
    max-width: 705px;
}
.indica-swiper .swiper-wrapper .swiper-slide {
    max-width: calc(33.3% - 5px);
}
.blog-2 .container .wraper {
    max-width: 100%;
}
/* Preloader */
.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: hidden;
    background-color: #cebceb;
    transition: all 350ms ease-in-out;
}

.preloader-wrapper .preloader {
    position: fixed;
    inset: 0;
    width: 120px;
    aspect-ratio: 1;
    margin: auto;
    border-radius: 50%;
    border: 16px solid #e7e7e7;
	border-top-color: #dda5b2;

    animation: preloader 2s linear infinite;
}

@keyframes preloader {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

.container:has(.contact) {
	background-color: #f6f6f6;
	border-radius: 30px;
	padding: 60px;
	margin-block-start: 180px;
	margin-block-end: 3rem;

}
.contact :is(input, textarea)::placeholder {
	font-family: "Eugusto", sans-serif;
}
.contact :is(input, textarea)::placeholder {
	color: #8d8d8d;
	font-weight: 400;
}
.contact h2, .contact h1 {
	font-size: 32px;
	font-weight: 400;
	color: #b69ae2;
	text-align: center;
	margin-block-end: 1rem;
}
.contact h3 {
	margin-block: 0.5rem;
}
.contact .content {
	display: flex;
	/* align-items: center; */
	justify-content: space-between;
	gap: 2rem;
}
.contact .content .group-title {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.contact .group-title img {
	width: 68%;
	margin: 5rem auto;
}
.contact .content form {
	flex: 1;
}
.contact .input-group {
	display: flex;
	flex-direction: column;
	margin-block: 2rem;
}
.contact .input-group > label {
	margin-block-end: 0.5rem;
}
.contact .input-group .wraper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-block-start: 1rem;
}
.contact .input-group label:has(input:checked) span {
	color: #dda5b2;
}
.contact textarea {
	padding-block: 1rem;
	font-family: Arial, Helvetica, sans-serif;
}
.contact h5 {
	text-align: center;
}
.contact h5 a {
	color: #b69ae2;
}
.contact .wraper-button button {
	margin: 1rem auto;
}
@media (max-width: 850px) {
	.contact .content {
		flex-direction: column;
	}
	.contact .content img {
		display: none;
	}
}
@media (max-width: 750px) {
	.container:has(.contact) {
		margin-block-start: 3rem;
		padding: 30px;
	}
}


#amp-story-modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #FFF;
}

.amp-story-player-exit-control-button{
    right: 0;
} 