@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:wght@400;700&family=Montserrat:wght@400;600;900&display=swap');

/*CSS RESET*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

* {
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;

}


:root {
    --color-bright: #fff;
    --color-page-background-oceano: #080042;
    --color-page-background-oceano-claro: #45c8da;;
    --color-page-background-nuage: #1c9c76;
    --color-page-background-midori: #364d2d;
    --color-button-nohover: #D7B377;
    --color-button-hover: #8F754F;
    --color-product-card: #f9ebe0;
    --color-hero-card: #6B0014;
    --color-navigation: #940025;
    --shadow: rgba(0,0,0,0.2) 0 6px 10px 0;
    --gap: 0.5rem;
    --radius: 5%;
    --font-emphasis: 'Lobster Two', cursive;
    --font-regular: 'Montserrat', sans-serif;
}

html,
body {
    height: 100%;
}

body {
    font-family: var(--font-regular);
}

.scroll-locked {
    overflow: hidden;
}

main {
    margin-top: 5rem;
    margin-bottom: 2%;
    position: relative;
}

.__hide {
    display: none !important;
}


.see-also__wrapper {
    display: flex;
    border: none;
    text-align: center;
    flex-flow: column nowrap;
    margin: 1.5% 10%;
}

.see-also__title__text {
    font-family: var(--font-regular);
    font-size: x-large;
    font-weight: 600;
    margin-bottom: 0;
    padding: 2em 0;
}

#see-also__card__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 30%);
    justify-content: space-around;
}

/*Product Card*/

.product-card__name {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: 14.4px;
}

.product-card__dimensions {
    margin-bottom: 1rem;
    font-size: 14px;
}

.product-card__code {
    font-size: 12px;
}

/*Catalog Side Bar*/

.catalog__side-bar__buttons__subcategory__wrapper {
    display: flex;
    flex-flow: column nowrap;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.catalog__side-bar__buttons__subcategory__toggle::after {
    content: '▼';
    margin-left: 5px;
}

.catalog__side-bar__buttons__subcategory__item {
    text-indent: 1rem;
    margin-left: 2rem;
    width: 65%;
}

/*Whatsapp Bubble*/
.__zoomable-image {
    cursor: zoom-in;
}

.whatsapp__bubble {
    width: 5rem;
    position: fixed;
    bottom: 0.5rem;
    right: 1rem;
}

.whatsapp__bubble img {
    width: 5.5rem;
}

.whatsapp__bubble img:hover {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}


.banner__catalog {
    background-image: url('../media/shiki-background-cut.jpg');
    width: 100%;
    height: 40vh;
    max-height: 15rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner__catalog__text__wrapper {
    position: relative;
    z-index: 1;
    color: var(--color-bright);
    text-align: center;
    font-size: 38.4px;
}

.banner__hashi {    
    background-position-y: -9rem;
    width: 100%;
    height: 40vh;
    max-height: 15rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
}

.banner__wrapper {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: calc(5*var(--gap));
    margin-bottom: 1rem;
}

.banner__embalagens, .banner__melaminas {
    width: 100%;
    height: 40vh;
    max-height: 15rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;

}    

.banner__text__wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner__text__content {
    font-size: 63.152px;
    font-weight: 300;
    letter-spacing: 1rem;
    color: var(--color-bright);
    text-decoration: none;
}

.hero__text__wrapper {
    overflow: hidden;
    min-width: 100%;
    color: var(--color-hero-card);
    display: inline-block;
    max-width: 100%;    
    width: 100%;
    height: 20rem;
    z-index: 0;
    background-image: url('../media/hero-image-cut.jpg');
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-us__link {
    text-decoration: none;
    font-size: 19.2px;
    color: var(--color-hero-card);
    padding-left: 3em;
}

.about-us__link:hover {
    text-decoration: underline;
}

.hero__text__title {
    font-weight: 800;
    font-size: 32px;
    font-variant: small-caps;
    margin: 2rem 0 1rem 0;
    padding-left: 2em;
}

.hero__text__content {
    font-size: 20px;
    font-weight: 600;
    margin: 1rem 0 1rem 0;
    padding-left: 3em;
    width: 50%;
}


@media screen and (max-width: 720px){
    .banner__text__content{
        font-size: 1.2rem;

    }
}
@media screen and (max-width: 369px){
    .banner__text__content{
        font-size: 0.5rem;

    }
}

/* Catalog Cards */

.accordion-collapse {
    display: grid;
    grid-template-columns: 6.25rem 2fr 1fr;
    grid-template-rows: repeat(7, 5rem);
    gap: 0.2rem;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.catalog__card {
    background-color: #FFF;
    margin-top: 1em;
    padding: 1em;
    border-radius: 8px;
    box-shadow: rgba(196, 8, 8, 0.2) 0 6px 10px 0;
    cursor: pointer;
    height: 18.75rem;
    width: 11.25rem;
    min-width: 11.25rem;
    min-height: 16.875rem;
}

.customizable {
    background-color: #f5bbc3;
    border: 2px solid rgb(255, 222, 139);
}

.catalog__card:hover {
    box-shadow: rgba(0,0,0,0.4) 0 6px 10px 0;
}

.catalog__card__image__wrapper {
    display: flex;
    text-align: center;
    aspect-ratio: 16/13;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }

.catalog__card__image__content {
    width: 6.25rem;
    object-fit: contain;
}

.catalog__card__link {
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1em 1em 0;
}

#see-also__card__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 30%);
    justify-content: space-around;
}

.product-card__name {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: 14.4px;
}

.product-card__dimensions {
    margin-bottom: 1rem;
    font-size: 14px;
}

.product-card__code {
    font-size: 12px;
}

.news__title {
    color: var(--color-bright);
    text-align: center;
    font-size: 48px;
    font-family: var(--font-regular);
    font-variant: small-caps;
    letter-spacing: 16px;
    margin-top: 10%;
    margin-bottom: 3%;
    font-weight: 600;
}

.news__promo-text__wrapper {
    display: flex;
    max-height: 60vh;
    flex-flow: row nowrap;
    align-items: center;
    justify-items:center;
}

.news__promo-text__content {
    flex: 60%;
    margin: 0;
    color: var(--color-bright);
    padding: 0 4rem;
    line-height: 1.5;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    font-family: var(--font-regular);
}

.news__promo-text__image {
    flex: 40%;
    text-align: center;
    width: 40%;
    height: 100%;
    max-width: 31.25rem;
    max-height: 20.938rem;
    object-fit: cover;
    margin-left: 5%;
    border-radius: 6px;
}

.news__icon {
    position: absolute;
    right: 8%;
    top: 0;
    aspect-ratio: 1;
    max-height: 9rem;
    max-width: 9rem;
}

.news__display__title {
    margin-top: 4%;
    margin-bottom: 1%;
    color: var(--color-bright);
    text-align: center;
    font-family: var(--font-emphasis);
    font-size: 24px;
}

.news__display_wrapper {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-around;
    padding: 0.5% 5%;
    align-items: center;
    font-family: var(--font-regular);
}
.news__display__wrapper {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.news__display__card {
    margin: 2.5% 3%;
    padding: 0 1rem;
    width: 80%;
    background-color: var(--color-product-card);
    display: flex;
    flex-flow: row nowrap;
    color: var(--color-bright);
    justify-content: center;
    align-items: center;
    border-radius: 1vh;
}

.news__display__card__text__wrapper {
    padding: 1%;
    position: relative;
    color: var(--color-page-background-oceano);
    flex: 70%;
    display: grid;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
}

.news__display__card__text__emphasis {
    font-family: var(--font-emphasis);
    font-size: 24px;
}

.news__display__card__image__wrapper {
    flex: 25%;
    display: flex;
    justify-content: center;
    align-self: start;
}

.news__display__card__image__content {
    width: 18rem;
    height: auto;
}

.news__display__card__button {
    background-color: var(--color-button-nohover);
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.news__display__card__button:hover {
    background-color: var(--color-button-hover);
    color: var(--color-hero-card);
}

.news__display__card__text-upper, .news__display__card__text-upper-var {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row nowrap;
    padding-right: 3%;
    margin: 1rem 0 -2rem 0;
}

.news__display__card__text-lower {
    display: flex;
    flex-flow: column nowrap;
}

.news__display__card__text-lower p {
    margin: 1rem 0;
}

.news__display__card__text-upper__download-button {
    background-color: var(--color-navigation);
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14.4px;
    transition: all 0.2s ease-in;
    cursor: pointer;
}

.news__display__card__text-upper__download-button:hover {
    opacity: 0.8;
}

.news__display__card__text-upper__download-button::before {
    content: '';
    width: 1.3rem;
    height: 1.3rem;
    background: url('../media/pdf.png');
    background-size: contain;
    display: inline-block;
    margin-right: 0.5rem;
}

#news__display__card__grid-7x3 {
    display: grid;
    grid-template-columns: 100px 2fr 1fr;
    grid-template-rows: repeat(7, 80px);
    gap: 0.2rem;
    height: 0px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.news__display__card__grid-7x3-item {
    background-color: #d6dce0;
    padding: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news__display__card__grid-7x3-item img {
    max-width: 100%;
}

.news__display__card__show-more-button {
    content: 'Ver modelos';
    background-color: var(--color-button-nohover);
    border: none;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    display: flex;
    border-radius: 18px;
    padding: 0.5rem 1rem 0.4rem 1rem;
    margin-bottom: 1rem;
}

.news__display__card__show-more-button:hover {
    opacity: 0.8;
}

.news__display__card__show-more-button::after {
    content: '';
    width: 1.3rem;
    height: 1.3rem;
    background: url('../media/arrowhead-down.png');
    background-size: contain;
    display: inline-block;
    margin-left: 0.5rem;
    margin-right: -0.4rem;
}

.news__display__card__show-more-button-active::after {
    content: '';
    width: 1.3rem;
    height: 1.3rem;
    background: url('../media/arrowhead-up.png');
    background-size: contain;
    display: inline-block;
    margin-left: 0.5rem;
    margin-right: -0.4rem;
}

.news__display__card__text-lower__list {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

#simple-hashi__card__wrapper {
    display: grid;
    grid-template-columns: repeat(4, auto);
    margin-top: 0;
}

#special-hashi__card__wrapper {
    display: grid;
    grid-template-columns: repeat(5, auto);
    margin-top: 0;
}

#premium-kit-obs {
    font-size: 0.85rem;
    color: #222222;
    text-indent: 15px;
}

.available-chopsticks-banner {
    width: 20rem;
    align-self: auto;
    cursor: zoom-in;
}

.news__display__card__image-and-list-wrapper {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.news__display__card__text-lower__grid-container {
    margin-top: 1rem;
}

/* Article */

.article__title {
    font-family: var(--font-regular);
    font-weight: 600;
    font-size: 25.6px;
    text-align: center;
    color: #000000;
    padding: 1em 0;
}

.contact__title {
    font-family: var(--font-regular);
    font-weight: 600;
    font-size: 25.6px;
    text-align: center;
    color: #FFFFFF;
    padding: 1em 0;
}

.article__wrapper {
    display: flex;
    flex-flow: row nowrap;
    background-color: var(--color-product-card);
    text-align: center;
    margin: 0 5% 2.5% 5%;
    padding: 1.5% 1%;
}


.article__image__wrapper {
    flex: 40%;
    width: 100%;
}

.article__image__content {
    max-width: 31.25rem;
    min-height: 31.25rem;
    object-fit: contain;
    border-radius: 6px;
}

.article__text__wrapper {
    display: flex;
    flex-direction: column;
    flex: 60%;
    text-align: left;
    padding: 0 1.5%;
    align-items: center;
    justify-content: center;
}

.article__text__wrapper p {
    text-indent: 1rem;
    margin-bottom: 1rem;
}

.article__text__content {
    margin-top: 1%;
    margin-bottom: 2%;
}

/* Catalog */

.catalog__section {
    display: flex;
    flex-flow: row nowrap;
    background-color: #eee;
}

.catalog__wrapper {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    text-align: center;
    margin-right: 1%;
    margin-left: 1%;
    flex: 100%;
    gap: calc(var(--gap) / 10);
    position: relative;
}

.catalog__side-bar {
    flex: 35%;
    margin-left: 1%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#catalog__side-bar__buttons__wrapper {
    display: flex;
    flex-flow: column nowrap;
    text-align: center;
    justify-content: left;
}

.catalog__side-bar__buttons__panel {
    max-height: 0;
    transition: max-height 0.2s ease-out;
    overflow: hidden;
    margin-bottom: 0;
    display: flex;
    flex-flow: column nowrap;
}

.catalog-products {
    flex: 65%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    padding: 1% 0;
    overflow: hidden;
    flex-wrap: wrap;
}

#catalog__none-found-alert {
    position: absolute;
    top: 15%;
    left: 30%;
    font-size: 19.2px;
    font-family: var(--font-regular);
}

.catalog__side-bar__buttons__subcategory__wrapper {
    display: flex;
    flex-flow: column nowrap;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.catalog__side-bar__buttons__subcategory__toggle::after {
    content: '▼';
    margin-left: 0.313rem;
}

.catalog__side-bar__buttons__subcategory__item {
    text-indent: 1rem;
    margin-left: 2rem;
    width: 65%;
}

#catalog__side-bar__search__input-wrapper {
    width: 80%;
    position: relative;
    display: flex;
}

#catalog__side-bar__search__input-field {
    width: 100%;
    border: 3px solid var(--color-navigation);
    border-right: none;
    padding: 0.313rem;
    border-radius: 5px 0 0 5px;
    outline: none;
    font-size: 16px;
    color: var(--color-navigation);
}

#catalog__side-bar__search__input-field:focus{
    color: var(--color-navigation);
}

.catalog__side-bar__search__search-button {
    width: 2.5rem;
    min-height: 100%;
    border: 1px solid var(--color-navigation);
    background: var(--color-navigation);
    text-align: center;
    color: var(--color-bright);
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}

.catalog__side-bar__search__search-button__icon {
    margin-top: 10%;
    margin-left: 5%;
}

.catalog__side-bar__buttons__header, .catalog__side-bar__buttons__header-no-after {
    padding-bottom: 2.5vh;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid var(--color-navigation);
    background-color: transparent;
    color: var(--color-navigation);
    cursor: pointer;
    margin: 5% 0 0 3%;
    width: 60%;
    font-size: 20.8px;
}

.catalog__side-bar__buttons__header:hover, .catalog__side-bar__buttons__header-no-after:hover {
    background-color: var(--color-hero-card);
    color: var(--color-bright);
}

.catalog__side-bar__buttons__header-active, .catalog__side-bar__buttons__header-no-panel-active {
    background-color: var(--color-hero-card);
    color: var(--color-bright);
}

.catalog__side-bar__buttons__header::after {
    content: ' \25BC';
    margin-left: 0.313rem;
}

.catalog__side-bar__buttons__header-no-after::after {
    content: ''!important;
}
  
.catalog__side-bar__buttons__header-active::after {
    content: ' \25B2';
}

.catalog__side-bar__buttons__item {
    border-bottom: 1px solid var(--color-navigation);
    background-color: transparent;
    color: var(--color-navigation);
    cursor: pointer;
    margin: 5% 0 0 3%;
    width: 70%;
    font-size: medium;
    text-align: left;
    border-top: none;
    border-left: none;
    border-right: none;
    font-size: 12.8px;
}

.catalog__side-bar__buttons__item:hover {
    background-color: var(--color-navigation);
    color: var(--color-bright);
}

.catalog__side-bar__buttons__subcategory__toggle-active {
    background-color: var(--color-navigation) !important;
    color: var(--color-bright) !important;
}

.catalog__side-bar__buttons__subcategory__toggle-active::after {
    content: ' \25B2';
}

.catalog__side-bar__buttons__panel-active-item {
    background-color: var(--color-navigation) !important;
    color: var(--color-bright) !important;
}


#catalog__side-bar__buttons__wrapper {
    display: flex;
    flex-flow: column nowrap;
    text-align: center;
    justify-content: left;
}

.catalog__side-bar__buttons__panel {
    max-height: 0;
    transition: max-height 0.2s ease-out;
    overflow: hidden;
    margin-bottom: 0;
    display: flex;
    flex-flow: column nowrap;
}



#catalog__none-found-alert {
    position: absolute;
    top: 15%;
    left: 30%;
    font-size: 19.2px;
    font-family: var(--font-regular);
}

/* Crumbs */

.crumbs__wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 0 5% 0 5%;
    padding: 1.5% 1%;
  }

#crumbs__flowboxes__wrapper {
    margin:0;
    padding:0;
}

#crumbs__flowboxes__wrapper div {
    display: inline-block;
    position: relative;
    height: 1.688rem;
    padding: 0.1rem 0.7rem 0rem 1.2rem;
    border: 1px solid #ccc;
    margin-right: 0.2rem;
    background-color: var(--color-bright);
}

.crumbs__flowboxes__container-right-indentation::after {
    content:'';
    border-top:1px solid #ccc;
    border-right:1px solid #ccc;
    width: 1.125rem;
    height: 1.125rem;
    position:absolute;
    right:0;
    top:-1px;
    background-color:var(--color-bright);
    z-index:150;
    -webkit-transform: translate(10px,4px) rotate(45deg);
    -moz-transform: translate(10px,4px) rotate(45deg);
    -ms-transform: translate(10px,4px) rotate(45deg);
    -o-transform: translate(10px,4px) rotate(20deg); 
    transform: translate(10px,4px) rotate(45deg);
}

.crumbs__flowboxes__container-left-indentation::before {
    content:'';
    border-top:1px solid #ccc;
    border-right:1px solid #ccc;
    width:1.125rem;
    height:1.125rem;
    position:absolute;
    left:0;
    top:-1px;
    background-color:var(--color-bright);
    z-index:50;
    -webkit-transform: translate(-10px,4px) rotate(45deg);
    -moz-transform: translate(-10px,4px) rotate(45deg);
    -ms-transform: translate(-10px,4px) rotate(45deg);
    -o-transform: translate(-10px,4px) rotate(20deg);
    transform: translate(-10px,4px) rotate(45deg);
}

.crumbs__flowboxes__container-active {
    background-color: #bbcdff !important;
}

.crumbs__flowboxes__container-active::after {
    background-color:#bfa19d;
}

#crumbs__flowboxes__wrapper a {
    color: black;
}

.arrow {
    position: absolute;
    font-size: 40px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    
  }

  #prev-arrow {
    bottom: 9rem;
    left: 8rem;
  }

  #next-arrow {
    bottom: 9rem;
    right: 8rem;
  }

/* Notification */

.notification__icon {
    height: 1.625rem;
    width: 1.625rem;
    margin-right: 0.25rem;
}

.notification__body {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.5rem;
    padding: 1rem 0.5rem;
}

.notification__progress {
    position: absolute;
    left: 4px;
    bottom: 4px;
    width: calc(100% - 8px);
    height: 0.188rem;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(to right, #313e2c, #aaec8a);
    border-radius: inherit;
    animation: progress 2.5s 0.3s linear;
}

.notification {
    position: fixed;
    width: max-content;
    left: 0;
    right: 0;
    bottom: 72px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    animation: fade-in 3s linear;
}

.notification-success {
    background-color: #ecf0f1;
    color: #313e2c;
}

.notification-error {
    background-color: #ecf0f1;
    color: #3e2c2c;
}

.notification__icon {
    height: 1.625rem;
    width: 1.625rem;
    margin-right: 0.25rem;
}

.notification__progress {
    position: absolute;
    left: 4px;
    bottom: 4px;
    width: calc(100% - 8px);
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: inherit;
    animation: progress 2.5s 0.3s linear;
}

.notification__progress-success {
    background: linear-gradient(to right, #313e2c, #aaec8a);
}

.notification__progress-error {
    background: linear-gradient(to right, #3e2c2c, #ec8a8a);
}

/* Contact Forms */

.contact-form-contain{
    background-color: #922926;
    border: dotted 10px #c06f5c;
    display: flex; 
    flex-flow: column nowrap; 
    justify-content: center; 
    align-items: center;
    padding-bottom:  1em;
    color: #FFF;
    border-radius: 24px;
    margin: 2em 20em 0 20em;
}

.contact-form input{
    display: block;
    border-radius: 16px;
    width: 100%;
    padding: 0.3em 0.5em;
    border: none;
}

.contact-form textarea{
    resize: none;
    border-radius: 8px;
    width: 100%;
    padding: 2em 0.5em;

}

.imagem-form{
    margin-left: 5em;
}

@media screen and (max-width: 1510px) {
    .imagem-form{
        display: none;
    }
}

@media screen and (max-width: 750px) {
    .contact-form-contain{
        margin: 0;
    }
}

/* Product Details */

.product-details__title {
    flex: 30%;
    text-align: center;
  }

.product-details__content {
    display: flex;
    flex-flow: row nowrap;
    flex: 100%;
  }


.product-details__image__wrapper {
    position: relative;
    padding: 0 5em;
    flex: 50%;
    width: 60%;
    display: flex;
    justify-content: center;
  }

  #product-details__image__content {
    min-width: 70%;
    min-height: 100%;
    object-fit: contain;
    box-shadow: var(--shadow);
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
    min-height: 10rem;
    max-height: 20rem;
  }

#product-details__description-list__wrapper {
    flex: 50%;
    width: 50%;
    max-width: 50%;
  }

#product-details__description-list {
    list-style-type: none;
    margin-bottom: 0;
}


.product-details__title__content {
    margin-bottom: 0.5rem;
    font-size: 24px;
    color: #000000;
}

.product-container{
  font-weight: 100;
}

.font-size20{
  font-size: 1.25rem;
}

.font-size32{
  font-size: 1.4rem;
}

.font-size16{
  font-size: 16px;
}

.font-size18{
  font-size: 18px;
}

.textoCorClara{
  color: #666666;
}

.textoCentralizado{
  text-align: center;
  flex: 30%;
}

.containerDetalhesDoProduto{
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  margin-top: 5em;
  margin-left: 2em;
  margin-right: 2em;
}

.divDetalhesDoProduto{
  text-align: left; 
  margin: 2% 3%;
}

.divDetalhesDoProduto h2{
  margin: 1em 0;
}

.divDetalhesDoProduto p{
  width: 70%;
}

.divDetalhesDoProduto ul{
  margin-left: 1em;
}

.containerDetalhesDoProdutoDestaques{
  border: solid 2px black; 
  height: auto;
  padding: 2em 0;
  width: 475px; 
  margin: 0 auto; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center;
  overflow: hidden;
}

.containerDetalhesDoProdutoDestaques div{
  text-align: center; 
}

.textoDetalheDoProdutoDestaque{
  width: 260px;
  margin: 0 auto;
}

.div-destaque img{
  width: 75px;
  margin: 1em;
}

.botoes-contato-conhecer_linha{
  display: flex;
  width: 300px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0.5em;
}

.botoes-contato-conhecer_linha a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 52px;
  background-color: #000;
  border-radius: 8px;
  border: #000 solid 1px;
  opacity: 0.8;
  text-decoration: none;
}

.botoes-contato-conhecer_linha a:hover{
  opacity: 1;
  cursor: pointer;
}

.carrosel img{
  width: 375px; 
  height: 250px;
}

@media screen and (max-width: 950px) {
  .product-details__content{
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .product-details__image__wrapper{
    width: auto;
  }
  .botoes-contato-conhecer_linha{
    display: none;
  }
}

/* Popup */

.popup__body {
    position: fixed;
    background-image: url("./media/banners/banner_sepia.jpg"); /* url("../media/professionals-banner.webp") */
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000;
    border: none;
    display: flex;
    width: 46.875vw;
    height: 69.52491309385863vh;
    text-align: center;
    flex-flow: column wrap;
    align-items: center;
    padding: 3vh 2vw;
    justify-content: space-between;
    z-index: 805;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.6);
}

.popup__go-button {
    background: linear-gradient(to left, #ffbd59, #ff914d);
    padding: 1rem 1.2rem;
    border: none;
    border-radius: 30px;
    margin-bottom: 0.438rem;
    appearance: button;
    text-decoration: none;
    color: #000;
    font-size: larger;
    font-weight: bold;
    font-variant: small-caps;
    transition: all 0.25s ease;
}

.popup__go-button:hover {
    background: linear-gradient(to left, #9e7538, #97552d);
}

.popup__close-button__wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
}

#popup__close-button {
    overflow: hidden;
    position: relative;
    border: none;
    padding: 0;
    width: 2em; height: 2em;
    border-radius: 50%;
    background: transparent;
    font: inherit;
    color: #ffffff; /*era branco*/
    text-indent: 100%;
    cursor: pointer;
}

#popup__close-button:focus {
    outline: solid 0 transparent;
    box-shadow: 0 0 0 2px #ffffff;
}

#popup__close-button:hover {
    background: rgba(255, 255, 255, 0.5);
}

#popup__close-button::before, #popup__close-button:after {
    position: absolute;
    top: 15%; left: calc(50% - 0.062em);
    width: 0.125em; height: 70%;
    border-radius: 0.125em;
    transform: rotate(45deg);
    background: currentcolor;
    content: "";
}

#popup__close-button::after {
    transform: rotate(-45deg);
}

.popup__screen-overlay, .zoom__screen-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    z-index: 800;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-backdrop-filter: blur(40px);
}

/* Inicio notification */
.notification__icon {
    height: 1.625rem;
    width: 1.625rem;
    margin-right: 0.25rem;
}

.notification__body {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.5rem;
    padding: 1rem 0.5rem;
}

.notification__progress {
    position: absolute;
    left: 4px;
    bottom: 4px;
    width: calc(100% - 8px);
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(to right, #313e2c, #aaec8a);
    border-radius: inherit;
    animation: progress 2.5s 0.3s linear;
}

.notification {
    position: fixed;
    width: max-content;
    left: 0;
    right: 0;
    bottom: 72px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    animation: fade-in 3s linear;
}

.notification-success {
    background-color: #ecf0f1;
    color: #313e2c;
}

.notification-error {
    background-color: #ecf0f1;
    color: #3e2c2c;
}

.notification__icon {
    height: 1.625rem;
    width: 1.625rem;
    margin-right: 0.25rem;
}

.notification__progress {
    position: absolute;
    left: 4px;
    bottom: 4px;
    width: calc(100% - 8px);
    height: 0.188rem;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: inherit;
    animation: progress 2.5s 0.3s linear;
}

.notification__progress-success {
    background: linear-gradient(to right, #313e2c, #aaec8a);
}

.notification__progress-error {
    background: linear-gradient(to right, #3e2c2c, #ec8a8a);
}

/* Form */

.form__wrapper {
    display: flex;
    flex-flow: column wrap;
    align-content: center;
    align-items: flex-start;
}

.form__wrapper > input, .form__wrapper > textarea {
    margin-top: 2vh;
    margin-bottom: 5vh;
    padding: 0.700rem;
    width: 50%;
}

.form__wrapper > textarea {
    height: 15vh;
}


.form__submit-button__wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.form__cta-button, #form__submit-button {
    background-color: #b90000;
    color: white;
    font-family: var(--font-regular);
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 24px;
    font-variant: small-caps;
}

#form__submit-button {
    padding: 0.5% 4%;
    margin-top: 0;
}

#form__submit-button:hover {
    opacity: 0.7;
    color: white;
}

.form__cta-button {
    padding: 1.5% 10%;
    margin-top: 2.5%;
}

.form__cta-button:hover {
    opacity: 0.7;
}

.form__wrapper-alt {
    display: flex;
    flex-flow: column nowrap;
    width: 30rem;
    align-self: center;
    margin-top: 1rem;
}

.form__wrapper-alt > input, .form__wrapper-alt > textarea {
    padding: 0.4rem;
    margin: 0.25rem 0 0.5rem 0;
}

#form-alt__send {
    width: 50%;
}

/* Footer */

.footer {
    background-color: var(--color-bright);
    margin-top: 2em;
    bottom: 0;
    padding: 0 5%;
    display: flex;
    justify-content: center;
    gap: calc(var(--gap)*5);
    align-items: center;
    border-top: #c06f5c solid 2px;

}

.footer__image {
    aspect-ratio: 1/1;
    width: 5.6rem;
    cursor: pointer;
}

.footer__link {
    text-align: center;
    max-width: 100%;
}

.footer__link:hover {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}