/*
Theme Name: Tasca d'Alice
Theme URI: https://blisq.pt
Author: Blisq Creative
Author URI: https://blisq.pt
Description: Tema do website da Tasca d'Alice, Viana do Castelo. Construido sobre o Tema Corporate da Blisq Creative: codigo transversal em /src e /modules, codigo do projeto em /inc.
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 8.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-logo, custom-menu, featured-images, translation-ready
Text Domain: blisq
*/

/* =========================================================
    TIPOGRAFIA

    As familias Poppins, Inter e Red Hat Display sao carregadas
    por wp_enqueue_style em inc/hooks/assets.php. Nao usar @import
    aqui: bloqueia o render em cascata e impede o controlo de
    versao e de consentimento.
   ========================================================= */

/* =========================================================
    VARIAVEIS E RESETS
   ========================================================= */

:root {
    --white: #FFF;
    --black: #000;
    --navy: #37536F;
    --slate-blue: #7694B2;
    --deep-navy: #21384F;
    --lavender-gray: #C6CDDF;
    --steel-blue: #7393B3;
    --cloud-gray: #E2E5EC;
    --blue-gray: #4D6B8A;
    --cool-gray: #8E99A4;
    --charcoal: #2D3640;
    --mist-gray: #BEC5D4;
    --muted-blue: #748FA9;
    --ocean-blue: #547BA0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    display: block;
    background-color: var(--white);
}

body {
    font-family: "Inter", sans-serif;
    position: relative;
    display: block;
    background-color: transparent;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background-color: var(--navy);
    color: var(--white);
}

.block {
    display: block;
}

.none {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

/* =========================================================
    GENÉRICAS
   ========================================================= */
.btn-shape {
    -webkit-mask-image: url("assets/icons/shape-organic.svg");
    mask-image: url("assets/icons/shape-organic.svg");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* =========================================================
    ANIMATIONS
   ========================================================= */
[data-reveal] {
    opacity: 0;
    transition:
        opacity .8s cubic-bezier(.22, .61, .36, 1),
        transform .8s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform;
}

[data-reveal="up"] {
    transform: translateY(40px);
}

[data-reveal="down"] {
    transform: translateY(-40px);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Acessibilidade — respeitar preferência do utilizador */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================================
    HEADER
   ========================================================= */

.header {
    position: absolute;
    inset-inline: 40px;
    top: 0;
    z-index: 10;
    margin-block: 35px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 45px;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.custom-logo {
    height: auto;
    width: 249px;
}

.menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    list-style: none;
}

.menu-item a {
    color: #37536F;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.menu-item a:hover {
    color: var(--navy);
}

.header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--deep-navy);
    padding: 10px 20px;
    color: var(--white);
    flex-shrink: 0;
}

.header__cta:hover {
    background-color: var(--navy);
    color: var(--white);
}

/* =========================================================
    HAMBÚRGUER (escondido em desktop)
   ========================================================= */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--deep-navy);
    margin-block: 5px;
    transition: transform .3s ease, opacity .3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
    BACKDROP (escondido em desktop)
   ========================================================= */

.menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    border: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 20;
    cursor: pointer;
}

.menu-backdrop.is-active {
    opacity: 1;
    pointer-events: auto;
}


/* =========================================================
    HERO
   ========================================================= */

.hero {
    background-color: var(--slate-blue);
}

.hero__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    padding: 15.12% 40px 40px;
}

.hero__content {
    max-width: 1055px;
}

.hero__title {
    font-family: "Poppins", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 600;
    line-height: 102.5%;
    letter-spacing: -1.32px;
    color: var(--deep-navy);
    margin-bottom: 10px;
    text-wrap: balance;
}

.hero__text {
    color: var(--navy);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 166.667%;
}

.hero__note {
    color: var(--navy);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 114.286%;
}

.hero__image {
    width: 100%;
}

/* =========================================================
    INTRO
   ========================================================= */
.intro {
    margin: 50px 40px 10.499%;
}

.intro__container {
    max-width: 990px;
    margin-inline: auto;
    text-align: center;
}

.intro__text {
    font-family: "Poppins", sans-serif;
    color: var(--deep-navy);
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.intro__text+.intro__text {
    margin-top: -10px;
}

.intro__text--muted,
.intro__lead-out {
    color: var(--lavender-gray);
}

.intro__img {
    display: inline;
    width: 94px;
    height: auto;
    aspect-ratio: 47/31;
    object-fit: cover;
    vertical-align: middle;
    margin-inline: 6px;
}

/* =========================================================
    SHOWCASE
   ========================================================= */

.showcase {
    margin-top: 40px;
}

.showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.showcase__item {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}

.showcase__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase__item--intro {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 60px 60px 40px;
}

.showcase__title {
    font-family: "Poppins", sans-serif;
    color: var(--charcoal);
    font-size: 35.777px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-wrap: balance;
    margin-bottom: 12px;
}

.showcase__item--intro .showcase__text {
    font-size: 15.901px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    color: var(--cool-gray);
}

.showcase__item--brand {
    position: relative;
    background-color: var(--deep-navy);
    display: flex;
    align-items: flex-end;
    padding: 40px 90px 40px 40px;
}

.showcase__item--brand::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 50px;
    background-image: url("assets/icons/showCasePseudo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.showcase__item--brand .showcase__text {
    color: var(--steel-blue);
    font-family: "Poppins", sans-serif;
    font-size: 23.852px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

/* =========================================================
   SECTION FOOD
   ========================================================= */
.food {
    position: relative;
    background-color: var(--cloud-gray);
    background-image: url('assets/images/menuBg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 120px 143px;
    overflow: hidden;
}

.food__container {
    position: relative;
    z-index: 1;
}

.food__intro {
    text-align: center;
    max-width: 702px;
    margin-inline: auto;
    margin-bottom: 30px;
}

.food__title {
    font-family: "Poppins", sans-serif;
    color: var(--charcoal);
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-inline: auto;
    max-width: 515px;
    margin-bottom: 8px;
}

.food__subtitle {
    color: var(--cool-gray);
    text-align: center;
    font-size: clamp(12px, 0.26vw + 11px, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.food__grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.food-card {
    width: 100%;
    max-width: 537px;
    padding: 80px 40px 60px;
    box-shadow: -2px 7px 4.8px 0 rgba(0, 0, 0, 0.41);
    color: var(--white);
}

.food-card--drinks {
    border: 12px solid var(--deep-navy);
    background-color: var(--deep-navy);
    transform: rotate(-1.628deg);
    margin-top: 70px;
    z-index: 1;
}

.food-card--main {
    border: 12px solid var(--steel-blue);
    background-color: var(--steel-blue);
    transform: rotate(4.492deg);
    z-index: 0;
}

.food-card--desserts {
    border: 12px solid var(--blue-gray);
    background: var(--blue-gray);
    transform: rotate(5.464deg);
    margin-top: 240px;
}

/* Conteúdo dos Cartões */
.food-card__title {
    font-family: "Poppins", sans-serif;
    color: #E6EAEE;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.food-card__group {
    margin-bottom: 20px;
}

.food-card__group-title {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 171.429%;
    text-transform: uppercase;
    border-bottom: 0.667px solid #E8E2D6;
    padding: 6px;
}

.food-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.food-card__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 6px;
    border-bottom: 0.667px solid #E8E2D6;
    gap: 10px;
}

.food-card__price {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 800;
    line-height: 132.353%;
    text-transform: uppercase;
    text-wrap: nowrap;
}

/* Disclaimer Rodapé */
.food__disclaimer {
    text-align: center;
    color: var(--blue-gray);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 186.667%;
    text-transform: uppercase;
    margin-top: 48px;
    margin-inline: auto;
    max-width: 353px;
}

/* =========================================================
    EVENTS
   ========================================================= */

.events__container {
    padding: 6.8245% 9.974%;
}

.events__title {
    font-family: "Poppins", sans-serif;
    color: var(--deep-navy);
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 12px;
}

.events__subtitle {
    max-width: 845px;
    color: var(--cool-gray);
    font-size: clamp(12px, 0.26vw + 11px, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin-bottom: 20px;
}

.events__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.events-card {
    position: relative;
    overflow: hidden;
    padding: 13.3% 17.27%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.events-card--primary {
    background-color: var(--cloud-gray);
}

.events-card--secondary {
    background-color: var(--deep-navy);
}

.events-card__title {
    font-family: "Poppins", sans-serif;
    color: var(--charcoal);
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 6px;
}

.events-card--primary .events-card__title {
    color: var(--deep-navy);
}

.events-card--secondary .events-card__title {
    color: var(--white);
}

.events-card__text {
    color: var(--cool-gray);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin-bottom: 16px;
}

.events-card--primary .events-card__text {
    max-width: 432px;
}

.events-card--secondary .events-card__text {
    max-width: 467px;
}

.events-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    color: var(--white);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.5px;
}

.events-card--primary .events-card__btn {
    background-color: var(--slate-blue);
}

.events-card--primary .events-card__btn:hover {
    background-color: var(--navy);
}

.events-card--secondary .events-card__btn {
    background-color: var(--steel-blue);
}

.events-card--secondary .events-card__btn:hover {
    background-color: var(--lavender-gray);
}

.events-card__disclaimer {
    margin-top: 16px;
    color: var(--cool-gray);
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 170%;
    text-transform: uppercase;
}

.events-card--secondary::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/images/pseudoEvent.svg");
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 230px auto;
    pointer-events: none;
    z-index: 0;
}

.events-card--secondary::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/images/pseudoEvent1.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 150px auto;
    pointer-events: none;
    z-index: 0;
}

.events-card--secondary>* {
    position: relative;
    z-index: 1;
}

/* =========================================================
   SECTION GROUP EVENTS
   ========================================================= */
.group-events {
    position: relative;
    width: 100%;
    background-image: url('assets/images/moment-bg.webp');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding-top: 8.8%;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: hidden;
}

.group-events__card {
    background-color: var(--cloud-gray);
    max-width: 670px;
    width: 100%;
    padding: 80px 70px;
    text-align: center;
}

.group-events__title {
    font-family: "Poppins", sans-serif;
    color: var(--deep-navy);
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 12px;
}

.group-events__text {
    font-family: "Poppins", sans-serif;
    color: var(--cool-gray);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin-bottom: 20px;
}

.group-events__btn {
    display: inline-block;
    background-color: var(--deep-navy);
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-decoration: none;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.group-events__btn:hover {
    background-color: var(--navy);
}

.group-events__ticker {
    width: 100%;
    background-color: var(--deep-navy);
    padding-block: 16px;
    overflow: hidden;
    margin-top: 5.7%;
    box-sizing: border-box;
    position: relative;
}

.group-events__ticker-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
}

.group-events__ticker-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
}

.group-events__ticker-group span {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    text-transform: uppercase;
    color: var(--slate-blue);
    display: inline-flex;
    align-items: center;
    padding-right: 20px;
    white-space: nowrap;
}

.group-events__ticker-group span::after {
    content: "•";
    margin-left: 20px;
    font-size: 10px;
    color: var(--slate-blue);
}

/* =========================================================
    SECTION SCHEDULE
   ========================================================= */
.schedule {
    width: 100%;
    padding-block: 4.1%;
    padding-inline: 10%;
}

.schedule__container {
    width: 100%;
}

/* Título */
.schedule__title {
    font-family: "Poppins", sans-serif;
    color: var(--mist-gray);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 10px;
}

.schedule__list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.schedule__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 3.25%;
    padding-top: 20px;
    border-right: 1px solid var(--cloud-gray);
}

.schedule__item:not(:first-child) {
    padding-left: 3.25%;
}

.schedule__item:last-child {
    border-right: none;
    padding-right: 0;
}

.schedule__day {
    color: var(--steel-blue);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    text-wrap: nowrap;
}

.schedule__hours {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    color: var(--deep-navy);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.schedule__item--closed .schedule__hours,
.schedule__item--closed .schedule__day {
    color: var(--cool-gray);
}

/* =========================================================
    CONTACTS
   ========================================================= */
.contacts {
    margin: 33px 12.8%;
}

.contacts__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.contacts__gallery {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contacts__img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 40%;
    height: auto;
    object-fit: cover;
}

.contacts__img--primary {
    margin-top: 90px;
    margin-bottom: 134px;
}

.contacts__img--secondary {
    margin-right: 177px;
}

.contacts__gallery::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 64%;
    aspect-ratio: 538 / 443;
    background-image: url(assets/images/ctaMapa.webp);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.contacts__content {
    max-width: 492px;
}

.contacts__title {
    font-family: "Poppins", sans-serif;
    color: var(--deep-navy);
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 12px;
    text-wrap: balance;
}

.contacts__text {
    color: var(--cool-gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin-bottom: 20px;
}

.contacts__actions {
    display: flex;
    gap: 20px;
}

.contacts__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
}

.contacts__btn--primary {
    background-color: var(--slate-blue);
    color: var(--white);
}

.contacts__btn--primary:hover {
    background-color: var(--navy);
}

.contacts__btn--secondary {
    background-color: var(--cloud-gray);
    color: var(--deep-navy);
}

.contacts__btn--secondary:hover {
    background-color: var(--mist-gray);
}

/* =========================================================
    FOOTER
   ========================================================= */
.footer {
    position: relative;
    margin-top: 40px;
}

.footer::before {
    content: "";
    position: absolute;
    bottom: 15%;
    right: 0;
    width: 34.1%;
    aspect-ratio: 650 / 378;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    background-image: url("assets/images/bgFooter.svg"), linear-gradient(to right, transparent 0%, transparent 48%, white 48%, white 100%);
}

.footer__container {
    padding: 60px 40px 20px;
}

.footer__row--top {
    position: relative;
    display: grid;
    grid-template-columns: 21.7% max-content max-content max-content auto;
    gap: 3.8%;
    padding-bottom: 5.41%;
    overflow: visible;
}

.footer__col {
    position: relative;
    z-index: 1;
}

.footer__tagline {
    font-family: "Poppins", sans-serif;
    color: var(--muted-blue);
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 117%;
    text-wrap: pretty;
    max-width: 353px;
}

.footer__heading {
    color: var(--muted-blue);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.footer__col--contacts,
.footer__col--visit,
.footer__col--social {
    display: flex;
    flex-direction: column;
}

.footer__phone,
.footer__email,
.footer__social-link {
    color: var(--deep-navy);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 180%;
}

.footer__phone:hover,
.footer__email:hover,
.footer__social-link:hover {
    color: var(--ocean-blue);
}

.footer__note {
    color: var(--deep-navy);
    font-family: "Poppins", sans-serif;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer__address {
    color: var(--deep-navy);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 180%;
    max-width: 142px;
    margin-bottom: 10px;
}

.footer__hours p {
    color: var(--deep-navy);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 180%;
}

.footer__col--logo {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.footer__logo {
    width: 285px;
    height: auto;
}

.footer__row--bottom {
    border-top: 1px solid var(--cloud-gray);
    padding-top: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.footer__made-by {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    z-index: 1;
}

.footer__made-by-text {
    color: var(--deep-navy);
    text-align: right;
    font-family: "Red Hat Display", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 139%;
    white-space: nowrap;
}

.footer__made-by-link {
    display: inline-flex;
    align-items: center;
    transition: opacity .2s ease;
}

.footer__made-by-link:hover {
    opacity: .7;
}

.footer__made-by-logo {
    height: auto;
    width: 36px;
    display: block;
}

.footer-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.footer-menu-item a {
    color: var(--ocean-blue);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
}

.footer-menu-item a:hover {
    color: var(--navy);
}

.footer__credits {
    background-color: var(--deep-navy);
    display: flex;
    justify-content: flex-end;
    padding-block: 20px;
    padding-inline: 40px;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.footer__credits-img {
    height: auto;
    width: 310px;
    transition: transform 0.4s ease;
}

.footer__credits:hover .footer__credits-img {
    transform: scale(1.04);
}

/* =========================================================
    COMMON
   ========================================================= */
.common-page {
    padding: 200px 40px 120px;
}

.common-container {
    max-width: 900px;
    margin-inline: auto;
}

.common-content {
    counter-reset: section;
}

.common-title {
    font-family: "Poppins", sans-serif;
    color: var(--deep-navy);
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1px;
    margin-bottom: 48px;
    text-wrap: balance;
}

.common-content h2 {
    font-family: "Poppins", sans-serif;
    color: var(--deep-navy);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-top: 48px;
    margin-bottom: 16px;
    text-wrap: balance;
    counter-increment: section;
}

.common-content h2::before {
    content: counter(section, decimal-leading-zero) ". ";
}

.common-content h3 {
    font-family: "Poppins", sans-serif;
    color: var(--deep-navy);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-top: 32px;
    margin-bottom: 12px;
}

.common-content p {
    color: var(--cool-gray);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin-bottom: 16px;
}

.common-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.common-content ul li {
    position: relative;
    color: var(--cool-gray);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    padding-left: 20px;
    margin-bottom: 8px;
}

.common-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 6px;
    height: 6px;
    background-color: var(--slate-blue);
    border-radius: 50%;
}

.common-content ul li strong {
    color: var(--deep-navy);
    font-weight: 600;
}

.common-content a {
    color: var(--ocean-blue);
    text-decoration: none;
    transition: color .2s ease;
}

.common-content a:hover {
    color: var(--deep-navy);
}

/* TABELA*/

.common-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 150%;
}

.common-content table thead th {
    background-color: var(--cloud-gray);
    color: var(--deep-navy);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 14px 16px;
    border-bottom: 1px solid var(--mist-gray);
}

.common-content table tbody td {
    color: var(--cool-gray);
    padding: 14px 16px;
    border-bottom: 1px solid var(--cloud-gray);
    vertical-align: top;
}

.common-content table tbody tr:last-child td {
    border-bottom: none;
}

/* =========================================================
    RESPONSIVO
   ========================================================= */
@media screen and (min-width: 1921px) {}

@media screen and (max-height: 800px) {}

@media screen and (max-width: 1700px) {

    /*header*/
    .main-nav,
    .menu {
        gap: 36px;
    }
}

@media screen and (max-width: 1600px) {

    /*header*/
    .custom-logo {
        width: 220px;
    }

    .main-nav,
    .menu {
        gap: 30px;
    }

    /*hero*/
    .hero__title {
        font-size: 72px;
    }

    /*intro*/
    .intro__text {
        font-size: 26px;
    }

    .intro__img {
        width: 84px;
    }

    .intro__container {
        max-width: 905px;
    }

    .intro__text+.intro__text {
        margin-top: -5px;
    }

    /*showcase*/
    .showcase__title {
        font-size: 32px;
    }

    .showcase__item--intro {
        padding: 50px 50px 50px 36px;
    }

    .showcase__item--brand {
        padding: 36px 70px 36px 36px;
    }

    .showcase__item--brand .showcase__text {
        font-size: 21px;
    }

    /* food */
    .food {
        padding: 100px 100px;
    }

    .food__title {
        font-size: 32px;
    }

    .food-card {
        max-width: 480px;
        padding: 70px 36px 50px;
    }

    .food-card__title {
        font-size: 36px;
    }

    /* events */
    .events__container {
        padding: 6% 8%;
    }

    .events-card__title {
        font-size: 26px;
    }

    .events-card__text {
        font-size: 15px;
    }

    .events-card--secondary::before {
        background-size: 200px auto;
    }

    .events-card--secondary::after {
        background-size: 130px auto;
    }

    /* group-events */
    .group-events__card {
        padding: 70px 60px;
    }

    .group-events__title {
        font-size: 32px;
    }

    .group-events__text {
        font-size: 15px;
    }

    .group-events__btn {
        font-size: 14px;
    }

    .group-events__ticker {
        padding-block: 15px;
    }

    .group-events__ticker-group span {
        font-size: 15px;
    }

    /* schedule */
    .schedule__title {
        font-size: 26px;
    }

    .schedule__day,
    .schedule__hours {
        font-size: 16px;
    }

    .schedule__item {
        padding-right: 40px;
    }

    .schedule__item:not(:first-child) {
        padding-left: 40px;
    }

    /* contacts */
    .contacts {
        margin: 33px 10%;
    }

    .contacts__container {
        gap: 60px;
    }

    .contacts__title {
        font-size: 30px;
    }

    .contacts__text {
        font-size: 15px;
    }

    .contacts__img--primary {
        margin-top: 70px;
        margin-bottom: 110px;
    }

    .contacts__img--secondary {
        margin-right: 140px;
    }

    .contacts__btn {
        padding: 11px 22px;
        font-size: 13px;
    }

    /* footer */
    .footer__container {
        padding: 55px 36px 20px;
    }

    .footer__tagline {
        font-size: 27px;
    }

    .footer__phone,
    .footer__email,
    .footer__social-link,
    .footer__address,
    .footer__hours p {
        font-size: 13px;
    }

    .footer__logo {
        width: 260px;
    }

    .footer__credits-img {
        width: 280px;
    }

    .footer-menu-item a {
        font-size: 11px;
    }

    .footer__made-by-text {
        font-size: 12px;
    }

    .footer__made-by-logo {
        width: 34px;
    }

    /* common */
    .common-page {
        padding: 180px 36px 110px;
    }

    .common-title {
        font-size: 52px;
        margin-bottom: 44px;
    }

    .common-content h2 {
        font-size: 24px;
        margin-top: 44px;
    }

    .common-content h3 {
        font-size: 17px;
    }

    .common-content p,
    .common-content ul li {
        font-size: 15px;
    }

    .common-content table thead th {
        font-size: 12px;
    }

    .common-content table tbody td {
        font-size: 13px;
    }
}

@media screen and (max-width: 1440px) {

    /*header*/
    .custom-logo {
        width: 200px;
    }

    .main-nav,
    .menu {
        gap: 26px;
    }

    /*hero*/
    .hero__title {
        font-size: 64px;
    }

    .hero__content {
        max-width: 830px;
    }

    /*intro*/
    .intro__text {
        font-size: 24px;
    }

    .intro__img {
        width: 76px;
    }

    .intro__container {
        max-width: 835px;
    }

    /*showcase*/
    .showcase__title {
        font-size: 28px;
    }

    .showcase__item--intro {
        padding: 40px 40px 40px 32px;
    }

    .showcase__item--intro .showcase__text {
        font-size: 14px;
    }

    .showcase__item--brand {
        padding: 32px 60px 32px 32px;
    }

    .showcase__item--brand .showcase__text {
        font-size: 19px;
    }

    /* food */
    .food {
        padding: 90px 80px;
    }

    .food-card {
        max-width: 440px;
        padding: 60px 32px 44px;
    }

    .food-card__title {
        font-size: 32px;
    }

    .food-card__item {
        font-size: 15px;
    }

    .food-card__price {
        font-size: 16px;
    }

    /* events */
    .events-card__title {
        font-size: 24px;
    }

    .events-card__text {
        font-size: 15px;
    }

    .events-card__btn {
        font-size: 14px;
        padding: 10px 18px;
    }

    /* group-events */
    .group-events__card {
        padding: 60px 50px;
    }

    .group-events__title {
        font-size: 30px;
    }

    .group-events__ticker {
        padding-block: 14px;
        margin-top: 5%;
    }

    .group-events__ticker-group span {
        font-size: 14px;
    }

    /* schedule */
    .schedule__title {
        font-size: 24px;
    }

    .schedule__day,
    .schedule__hours {
        font-size: 14px;
    }

    .schedule__item {
        padding-right: 32px;
    }

    .schedule__item:not(:first-child) {
        padding-left: 32px;
    }

    /* contacts */
    .contacts__container {
        gap: 50px;
    }

    .contacts__title {
        font-size: 28px;
    }

    .contacts__text {
        font-size: 15px;
    }

    .contacts__img--primary {
        margin-top: 60px;
        margin-bottom: 90px;
    }

    .contacts__img--secondary {
        margin-right: 110px;
    }

    .contacts__btn {
        padding: 11px 20px;
        font-size: 13px;
    }

    /* footer */
    .footer__container {
        padding: 50px 34px 20px;
    }

    .footer__tagline {
        font-size: 25px;
    }

    .footer__phone,
    .footer__email,
    .footer__social-link,
    .footer__address,
    .footer__hours p {
        font-size: 13px;
    }

    .footer__logo {
        width: 240px;
    }

    .footer__credits-img {
        width: 260px;
    }

    .footer-menu {
        gap: 28px;
    }

    /* common */
    .common-page {
        padding: 170px 34px 100px;
    }

    .common-title {
        font-size: 48px;
        letter-spacing: -0.9px;
        margin-bottom: 40px;
    }

    .common-content h2 {
        font-size: 23px;
        margin-top: 42px;
    }

    .common-content p,
    .common-content ul li {
        font-size: 15px;
    }
}

@media screen and (max-width: 1280px) {

    /*header*/
    .custom-logo {
        width: 180px;
    }

    .main-nav,
    .menu {
        gap: 22px;
    }

    .menu-item a {
        font-size: 14px;
    }

    /*hero*/
    .hero__title {
        font-size: 56px;
        letter-spacing: -1px;
    }

    .hero__container {
        gap: 20px;
    }

    .hero__content {
        max-width: 690px;
    }

    .hero__text {
        font-size: 17px;
    }

    .hero__note {
        font-size: 13px;
    }

    /*intro*/
    .intro__text {
        font-size: 22px;
    }

    .intro__img {
        width: 68px;
    }

    .intro__container {
        max-width: 765px;
    }

    .intro__text+.intro__text {
        margin-top: 0;
    }

    /*showcase*/
    .showcase__title {
        font-size: 25px;
    }

    .showcase__item--intro {
        padding: 36px 36px 36px 28px;
    }

    .showcase__item--brand {
        padding: 28px 50px 28px 28px;
    }

    .showcase__item--brand .showcase__text {
        font-size: 17px;
    }

    /* food */
    .food {
        padding: 80px 60px;
    }

    .food__title {
        font-size: 28px;
    }

    .food-card {
        max-width: 380px;
        padding: 50px 28px 40px;

    }

    .food-card__title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .food-card__group-title {
        font-size: 13px;
    }

    .food-card__item {
        font-size: 14px;
        padding: 5px;
    }

    .food-card__price {
        font-size: 15px;
    }

    .food-card--drinks {
        margin-top: 50px;
        border: 1px solid var(--deep-navy);
    }

    .food-card--main {
        border: 1px solid var(--steel-blue)
    }

    .food-card--desserts {
        margin-top: 180px;
        border: 1px solid var(--blue-gray);
    }

    /* events */
    .events__title {
        font-size: 32px;
    }

    .events-card {
        padding: 45px;
    }

    .events-card__title {
        font-size: 22px;
    }

    .events-card__text {
        font-size: 14px;
    }

    .events-card__btn {
        font-size: 13px;
        padding: 9px 16px;
    }

    .events-card--secondary::before {
        background-size: 170px auto;
    }

    .events-card--secondary::after {
        background-size: 110px auto;
    }

    /* group-events */
    .group-events__card {
        padding: 50px 40px;
        max-width: 580px;
    }

    .group-events__title {
        font-size: 28px;
    }

    .group-events__text {
        font-size: 14px;
    }

    .group-events__btn {
        font-size: 13px;
        padding: 9px 18px;
    }

    .group-events__ticker {
        padding-block: 13px;
        margin-top: 4.5%;
    }

    .group-events__ticker-group span {
        font-size: 14px;
        padding-right: 16px;
    }

    .group-events__ticker-group span::after {
        margin-left: 16px;
    }

    /* schedule */
    .schedule {
        padding-inline: 8%;
    }

    .schedule__title {
        font-size: 22px;
    }

    .schedule__day,
    .schedule__hours {
        font-size: 13px;
    }

    .schedule__item {
        padding-right: 24px;
        padding-top: 16px;
    }

    .schedule__item:not(:first-child) {
        padding-left: 24px;
    }

    /* contacts */
    .contacts {
        margin: 33px 8%;
    }

    .contacts__container {
        gap: 40px;
    }

    .contacts__title {
        font-size: 26px;
    }

    .contacts__text {
        font-size: 14px;
    }

    .contacts__img--primary {
        margin-bottom: 70px;
    }

    .contacts__img--secondary {
        margin-right: 80px;
    }

    .contacts__btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    /* footer */
    .footer__container {
        padding: 45px 30px 20px;
    }

    .footer__tagline {
        font-size: 23px;
        text-wrap: balance;
    }

    .footer__heading {
        font-size: 11px;
    }

    .footer__phone,
    .footer__email,
    .footer__social-link,
    .footer__address,
    .footer__hours p {
        font-size: 12px;
    }

    .footer__col--logo {
        align-items: flex-start;
    }

    .footer__logo {
        width: 220px;
    }

    .footer__credits {
        padding-block: 18px;
        padding-inline: 30px;
    }

    .footer__credits-img {
        width: 240px;
    }

    .footer-menu {
        gap: 24px;
    }

    .footer-menu-item a {
        font-size: 11px;
    }

    .footer__made-by-text {
        font-size: 11px;
    }

    .footer__made-by-logo {
        width: 30px;
    }

    /* common */
    .common-page {
        padding: 170px 30px 90px;
    }

    .common-title {
        font-size: 44px;
        letter-spacing: -0.8px;
        margin-bottom: 36px;
    }

    .common-content h2 {
        font-size: 22px;
        margin-top: 40px;
    }

    .common-content h3 {
        font-size: 17px;
    }

    .common-content p,
    .common-content ul li {
        font-size: 15px;
    }
}

@media screen and (max-width: 1100px) {

    .footer__row--top {
        grid-template-columns: 32% max-content max-content auto;
        grid-template-areas:
            "brand    visit   social  logo"
            "contacts visit   social  logo";
        row-gap: 20px;
        column-gap: 3%;
    }

    .footer__col--brand {
        grid-area: brand;
    }

    .footer__col--contacts {
        grid-area: contacts;
    }

    .footer__col--visit {
        grid-area: visit;
    }

    .footer__col--social {
        grid-area: social;
    }

    .footer__col--logo {
        grid-area: logo;
    }

    .footer::before {
        width: 40.1%;
    }
}

@media screen and (max-width: 1024px) {

    /*header*/
    .header {
        inset-inline: 20px;
        margin-block: 20px;
    }

    .main-nav {
        gap: 20px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        position: relative;
        z-index: 30;
    }

    .menu-backdrop {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100dvh;
        width: 380px;
        max-width: 90vw;
        flex: initial;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        margin: 0;
        padding: 100px 40px 40px;
        background-color: var(--cloud-gray);
        z-index: 25;
        transform: translateX(100%);
        transition: transform .35s ease;
        overflow-y: auto;
        box-shadow: -8px 0 24px rgba(0, 0, 0, .15);
    }

    .menu.is-open {
        transform: translateX(0);
    }

    .menu-item {
        width: 100%;
        border-bottom: 1px solid var(--mist-gray);
    }

    .menu-item a {
        display: block;
        padding: 16px 0;
        font-size: 17px;
        font-weight: 500;
        color: var(--deep-navy);
    }

    /* CTA em baixo */
    .menu-item--cta {
        margin-top: 24px;
        border-bottom: 0;
    }

    .menu-item--cta .header__cta {
        padding: 14px 24px;
        font-size: 15px;
        color: var(--white);
    }

    /*hero*/
    .hero__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 18% 20px 32px;
    }

    .hero__title {
        font-size: 48px;
        letter-spacing: -0.8px;
    }

    .hero__text {
        font-size: 16px;
    }

    .hero__note {
        font-size: 13px;
        text-align: left;
        align-self: flex-end;
    }

    /*intro*/

    .intro {
        margin: 40px 35px 10.499%;
    }

    .intro__text {
        font-size: 20px;
    }

    .intro__img {
        width: 60px;
    }

    .intro__container {
        max-width: 695px;
    }

    /*showcase*/
    .showcase__title {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .showcase__item--intro {
        padding: 20px;
    }

    .showcase__item--intro .showcase__text {
        font-size: 13px;
    }

    .showcase__item--brand {
        padding: 20px;
    }

    .showcase__item--brand .showcase__text {
        font-size: 16px;
    }

    .showcase__item--brand::before {
        top: 35%;
        width: 100px;
        height: 30px;
    }

    /* food */
    .food {
        padding: 70px 40px;
    }

    .food__title {
        font-size: 26px;
    }

    .food__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        justify-items: center;
        align-items: start;
    }

    .food-card {
        max-width: 100%;
        width: 100%;
        padding: 44px 24px 36px;
        border-width: 10px;
    }

    .food-card__title {
        font-size: 24px;
    }

    .food-card__item {
        font-size: 13px;
    }

    .food-card__price {
        font-size: 14px;
    }

    .food-card--drinks {
        margin-top: 0;
        transform: rotate(-1deg);
    }

    .food-card--main {
        transform: rotate(3deg);
    }

    .food-card--desserts {
        grid-column: 1 / -1;
        max-width: 380px;
        margin-top: 0;
        transform: rotate(3.5deg);
    }

    .food__disclaimer {
        font-size: 11px;
    }

    /* events */
    .events__container {
        padding: 50px 20px;
    }

    .events__title {
        font-size: 28px;
    }

    .events__cards {
        gap: 16px;
    }

    .events-card {
        padding: 50px 40px;
    }

    .events-card__title {
        font-size: 20px;
    }

    .events-card__text {
        font-size: 13px;
    }

    .events-card__btn {
        font-size: 13px;
        padding: 9px 16px;
    }

    .events-card__disclaimer {
        font-size: 9px;
    }

    .events-card--secondary::before {
        background-size: 140px auto;
    }

    .events-card--secondary::after {
        background-size: 90px auto;
    }

    /* group-events */
    .group-events {
        padding-top: 60px;
    }

    .group-events__card {
        padding: 50px 40px;
        max-width: 540px;
    }

    .group-events__title {
        font-size: 26px;
    }

    .group-events__text {
        font-size: 14px;
    }

    .group-events__btn {
        font-size: 13px;
        padding: 9px 18px;
    }

    .group-events__ticker {
        padding-block: 12px;
        margin-top: 60px;
    }

    .group-events__ticker-group span {
        font-size: 13px;
        padding-right: 14px;
    }

    .group-events__ticker-group span::after {
        margin-left: 14px;
        font-size: 9px;
    }

    /* schedule */
    .schedule {
        padding-block: 40px;
        padding-inline: 0;
    }

    .schedule__title {
        padding-inline: 20px;
        font-size: 20px;
    }

    .schedule__list {
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        width: auto;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-inline: 20px;
    }

    .schedule__list::-webkit-scrollbar {
        display: none;
    }

    .schedule__item {
        flex: 0 0 auto;
        min-width: 160px;
        padding-right: 16px;
        padding-top: 14px;
        scroll-snap-align: start;
        border-right: 1px solid var(--cloud-gray);
    }

    .schedule__item:not(:first-child) {
        padding-left: 16px;
    }

    .schedule__item:last-child {
        border-right: none;
        padding-right: 20px;
    }

    .schedule__day,
    .schedule__hours {
        font-size: 14px;
    }

    /* contacts */
    .contacts {
        margin: 33px 20px;
    }

    .contacts__container {
        gap: 30px;
    }

    .contacts__gallery {
        gap: 16px;
    }

    .contacts__img--primary {
        margin-top: 50px;
        margin-bottom: 60px;
    }

    .contacts__img--secondary {
        margin-right: 60px;
    }

    .contacts__title {
        font-size: 24px;
    }

    .contacts__text {
        font-size: 14px;
    }

    .contacts__btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .footer-menu {
        gap: 20px;
    }

    .footer-menu-item a {
        font-size: 10px;
    }

    .footer__credits {
        padding-block: 16px;
        padding-inline: 20px;
    }

    .footer__credits-img {
        width: 220px;
    }

    .footer__container {
        padding: 40px 24px 20px;
    }

    .footer::before {
        bottom: 12%;
    }

    /* footer made-by */
    .footer__made-by {
        gap: 7px;
    }

    .footer__made-by-text {
        font-size: 11px;
    }

    .footer__made-by-logo {
        width: 28px;
    }

    /* common */
    .common-page {
        padding: 160px 24px 80px;
    }

    .common-container {
        max-width: 100%;
        margin-inline: auto;
    }

    .common-title {
        font-size: 44px;
        letter-spacing: -0.8px;
        margin-bottom: 36px;
    }

    .common-content h2 {
        font-size: 22px;
        margin-top: 40px;
        margin-bottom: 14px;
    }

    .common-content h3 {
        font-size: 17px;
        margin-top: 28px;
    }

    .common-content p,
    .common-content ul li {
        font-size: 15px;
    }

    .common-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: 28px;
        margin-inline: -24px;
        padding-inline: 24px;
        width: calc(100% + 48px);
    }

    .common-content table::-webkit-scrollbar {
        display: none;
    }

    .common-content table thead th {
        font-size: 12px;
        padding: 12px 14px;
        white-space: nowrap;
    }

    .common-content table tbody td {
        font-size: 13px;
        padding: 12px 14px;
        white-space: nowrap;
    }
}

@media screen and (max-width: 900px) {

    .showcase__item--intro .showcase__text {
        font-size: 11px;
    }

    /* contacts */
    .contacts {
        margin: 33px 20px;
    }

    .contacts__container {
        flex-direction: column;
        align-items: start;
        gap: 40px;
    }

    .contacts__content {
        order: 1;
        max-width: 100%;
        text-align: start;
    }

    .contacts__gallery {
        order: 2;
        gap: 20px;
        width: 70%;
        justify-content: center;
        align-self: center;
    }

    .contacts__img--secondary {
        margin-right: 40px;
    }

    .contacts__gallery::after {
        width: 50%;
    }

    .contacts__title {
        font-size: 22px;
    }

    .contacts__text {
        font-size: 13px;
        text-wrap: balance;
    }

    .contacts__actions {
        justify-content: start;
    }

    .contacts__btn {
        padding: 9px 14px;
        font-size: 12px;
    }

    /* footer */
    .footer__row--top {
        grid-template-columns: 1fr max-content max-content;
        grid-template-areas:
            "brand    visit   social"
            "contacts visit   social"
            "logo     logo    logo";
        gap: 3%;
    }

    .footer__col--contacts {
        margin-top: 20px;
    }

    .footer__col--logo {
        grid-area: logo;
        justify-content: center;
        margin-top: 32px;
    }

    .footer-menu {
        gap: 16px;
    }

    .footer-menu-item a {
        font-size: 10px;
    }

    .footer::before {
        bottom: 11%;
        width: 60.1%;
    }

    .footer__credits {
        padding-block: 16px;
        padding-inline: 20px;
    }

    .footer__credits-img {
        width: 200px;
    }
}

@media screen and (max-width: 768px) {

    /*header*/
    .custom-logo {
        width: 170px;
    }

    .menu {
        width: 340px;
        padding: 90px 32px 32px;
    }

    .menu-item a {
        font-size: 16px;
    }

    /*hero*/
    .hero__container {
        padding: 22% 20px 28px;
    }

    .hero__title {
        font-size: 40px;
    }

    .hero__text {
        font-size: 15px;
    }

    .hero__note {
        font-size: 12px;
    }

    .hero__image {
        width: 100%;
        height: 30vh;
        object-fit: cover;
        object-position: center;
    }

    /*intro*/
    .intro__text {
        font-size: 18px;
        text-wrap: balance;
    }

    .intro__img {
        display: none;
    }

    .intro__container {
        max-width: 100%;
    }

    /*showcase*/
    .showcase__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .showcase__item--intro {
        padding: 24px;
    }

    .showcase__title {
        font-size: 16px;
    }

    .showcase__item--brand {
        padding: 20px 30px 20px 20px;
    }

    .showcase__item--brand .showcase__text {
        font-size: 15px;
    }

    .showcase__item--intro .showcase__text {
        font-size: 12px;
    }

    /* food */
    .food {
        padding: 60px 20px;
    }

    .food__title {
        font-size: 24px;
    }

    .food__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .food-card {
        max-width: 100%;
        width: 100%;
        padding: 40px 28px 36px;
        margin-top: 0;
    }

    .food-card--drinks {
        transform: rotate(-0.8deg);
    }

    .food-card--main {
        transform: rotate(1.2deg);
    }

    .food-card--desserts {
        grid-column: auto;
        max-width: 100%;
        transform: rotate(0.6deg);
    }

    .food-card__title {
        font-size: 26px;
    }

    .food__disclaimer {
        margin-top: 32px;
    }

    /* events */
    .events__container {
        padding: 40px 20px;
    }

    .events__title {
        font-size: 24px;
    }

    .events__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .events-card {
        padding: 50px 40px;
    }

    .events-card__title {
        font-size: 22px;
    }

    .events-card__text {
        font-size: 14px;
    }

    .events-card--secondary::before {
        background-size: 160px auto;
    }

    .events-card--secondary::after {
        background-size: 100px auto;
    }

    /* group-events */
    .group-events {
        padding-top: 50px;
    }

    .group-events__card {
        padding: 40px 30px;
        max-width: 100%;
    }

    .group-events__title {
        font-size: 22px;
    }

    .group-events__text {
        font-size: 13px;
    }

    .group-events__btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .group-events__ticker {
        padding-block: 11px;
        margin-top: 50px;
    }

    .group-events__ticker-group span {
        font-size: 13px;
        padding-right: 14px;
    }

    .group-events__ticker-group span::after {
        margin-left: 14px;
        font-size: 9px;
    }

    /* schedule */
    .schedule {
        padding-block: 32px;
        padding-inline: 0;
    }

    .schedule__title {
        padding-inline: 20px;
        font-size: 18px;
    }

    .schedule__list {
        padding-inline: 20px;
    }

    .schedule__item {
        min-width: 140px;
        padding-right: 14px;
        padding-top: 12px;
    }

    .schedule__item:not(:first-child) {
        padding-left: 14px;
    }

    .schedule__item:last-child {
        padding-right: 20px;
    }

    .schedule__day,
    .schedule__hours {
        font-size: 13px;
    }

    /* contacts */
    .contacts {
        margin: 33px 20px;
    }

    .contacts__container {
        gap: 32px;
    }

    .contacts__gallery {
        gap: 16px;
        width: 75%;
    }

    .contacts__img--secondary {
        margin-right: 34px;
    }

    .contacts__title {
        font-size: 20px;
    }

    .contacts__text {
        font-size: 13px;
    }

    .contacts__btn {
        padding: 9px 14px;
        font-size: 12px;
    }

    /*footer*/
    .footer-menu {
        gap: 6px 14px;
        flex-wrap: wrap;
    }

    .footer-menu-item a {
        font-size: 10px;
    }

    .footer__credits {
        padding-block: 14px;
        padding-inline: 18px;
    }

    .footer::before {
        bottom: 9%;
    }

    /* common */
    .common-page {
        padding: 140px 20px 60px;
    }

    .common-title {
        font-size: 36px;
        margin-bottom: 28px;
    }

    .common-content h2 {
        font-size: 20px;
        margin-top: 32px;
        margin-bottom: 12px;
    }

    .common-content h3 {
        font-size: 16px;
        margin-top: 24px;
    }

    .common-content p,
    .common-content ul li {
        font-size: 14px;
    }

    .common-content ul li {
        padding-left: 18px;
    }

    .common-content table thead,
    .common-content table tbody {
        min-width: 620px;
    }
}

@media screen and (max-width: 640px) {

    /* footer */
    .footer__row--top {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas:
            "brand    brand    brand"
            "contacts visit    social"
            "logo     logo     logo";
        gap: 24px;
    }

    .footer__col--contacts {
        margin-top: 0;
    }

    .footer__col--logo {
        grid-area: logo;
        justify-content: center;
        margin-top: 16px;
    }

    .footer__credits {
        padding-block: 14px;
        padding-inline: 16px;
    }

    .footer__container {
        padding: 34px 20px 18px;
    }

    .footer__row--bottom {
        padding-top: 18px;
    }

    /* footer made-by */
    .footer__made-by-text {
        font-size: 10px;
    }

    .footer__made-by-logo {
        width: 22px;
    }
}

@media screen and (max-width: 580px) {

    /*header*/
    .header {
        inset-inline: 16px;
        margin-block: 20px;
    }

    .custom-logo {
        width: 160px;
    }

    .menu {
        width: 100vw;
        max-width: 100vw;
        padding: 90px 24px 32px;
    }

    .menu-item a {
        font-size: 15px;
        padding: 14px 0;
    }

    .menu-item--cta .header__cta {
        padding: 12px 20px;
        font-size: 14px;
    }

    /*hero*/
    .hero__container {
        padding: 28% 16px 24px;
    }

    .hero__title {
        font-size: 32px;
        letter-spacing: -0.6px;
    }

    .hero__text {
        font-size: 14px;
    }

    .hero__image {
        height: 25vh;
    }

    /*intro*/
    .intro {
        margin: 32px 16px 10.499%;
    }

    .intro__text {
        font-size: 16px;
    }

    /*showcase*/
    .showcase__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase__item--intro {
        padding: 20px 16px;
    }

    .showcase__title {
        font-size: 18px;
    }

    .showcase__item--intro .showcase__text {
        font-size: 13px;
    }

    .showcase__item--brand {
        padding: 16px 24px 16px 16px;
    }

    .showcase__item--brand .showcase__text {
        font-size: 13px;
    }

    .showcase__item--brand::before {
        width: 90px;
        height: 38px;
    }

    /* food */
    .food {
        padding: 48px 16px;
    }

    .food__title {
        font-size: 22px;
    }

    .food-card {
        padding: 32px 22px 28px;
        border-width: 8px;
    }

    .food-card__title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .food-card__group-title {
        font-size: 12px;
        padding: 5px;
    }

    .food-card__item {
        font-size: 13px;
        padding: 5px;
    }

    .food-card__price {
        font-size: 13px;
    }

    .food-card--drinks {
        transform: rotate(-0.5deg);
    }

    .food-card--main {
        transform: rotate(0.8deg);
    }

    .food-card--desserts {
        transform: rotate(0.4deg);
    }

    /* events */
    .events__container {
        padding: 40px 16px;
    }

    .events__title {
        font-size: 22px;
    }

    .events-card {
        padding: 40px 24px;
    }

    .events-card__title {
        font-size: 20px;
    }

    .events-card__text {
        font-size: 13px;
    }

    .events-card__btn {
        font-size: 12px;
        padding: 8px 14px;
    }

    .events-card--secondary::before {
        background-size: 130px auto;
    }

    .events-card--secondary::after {
        background-size: 80px auto;
    }

    /* group-events */
    .group-events {
        padding-top: 40px;
    }

    .group-events__card {
        padding: 32px 22px;
    }

    .group-events__title {
        font-size: 20px;
    }

    .group-events__text {
        font-size: 13px;
    }

    .group-events__btn {
        font-size: 12px;
        padding: 8px 14px;
    }

    .group-events__ticker {
        padding-block: 10px;
        margin-top: 40px;
    }

    .group-events__ticker-group span {
        font-size: 12px;
        padding-right: 12px;
    }

    .group-events__ticker-group span::after {
        margin-left: 12px;
        font-size: 8px;
    }

    /* schedule */
    .schedule {
        padding-block: 28px;
    }

    .schedule__title {
        padding-inline: 16px;
        font-size: 17px;
    }

    .schedule__list {
        padding-inline: 16px;
    }

    .schedule__item {
        min-width: 130px;
        padding-right: 12px;
        padding-top: 10px;
    }

    .schedule__item:not(:first-child) {
        padding-left: 12px;
    }

    .schedule__item:last-child {
        padding-right: 16px;
    }

    .schedule__day,
    .schedule__hours {
        font-size: 12px;
    }

    /* contacts */
    .contacts {
        margin: 33px 16px;
    }

    .contacts__container {
        gap: 28px;
    }

    .contacts__gallery {
        gap: 12px;
        width: 100%;
    }

    .contacts__img--secondary {
        margin-right: 28px;
    }

    .contacts__gallery::after {
        width: 54%;
    }

    .contacts__title {
        font-size: 18px;
    }

    .contacts__text {
        font-size: 12px;
    }

    .contacts__actions {
        gap: 12px;
    }

    .contacts__btn {
        padding: 9px 14px;
        font-size: 12px;
    }

    /*footer*/
    .footer__row--bottom {
        border-top: none;
    }

    /* common */
    .common-page {
        padding: 120px 16px 48px;
    }

    .common-title {
        font-size: 30px;
        letter-spacing: -0.6px;
        margin-bottom: 24px;
    }

    .common-content h2 {
        font-size: 18px;
        margin-top: 28px;
        margin-bottom: 10px;
    }

    .common-content h3 {
        font-size: 15px;
        margin-top: 22px;
        margin-bottom: 10px;
    }

    .common-content p,
    .common-content ul li {
        font-size: 13px;
        line-height: 165%;
    }

    .common-content ul li {
        padding-left: 16px;
        margin-bottom: 6px;
    }

    .common-content ul li::before {
        width: 5px;
        height: 5px;
    }

    .common-content table thead,
    .common-content table tbody {
        min-width: 540px;
    }

    .common-content table thead th {
        font-size: 11px;
        padding: 10px 12px;
    }

    .common-content table tbody td {
        font-size: 12px;
        padding: 10px 12px;
    }
}

@media screen and (max-width: 540px) {

    /* footer */
    .footer__row--top {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "brand    brand"
            "contacts social"
            "visit   visit"
            "logo     logo";
        gap: 30px;
    }

    .footer__col--logo {
        grid-area: logo;
        justify-content: center;
        align-items: center;
        margin-top: 8px;
    }

    .footer::before {
        bottom: 5%;
        right: -6%;
        width: 92%;
    }
}

@media screen and (max-width:400px) {

    /*header*/
    .custom-logo {
        width: 140px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .menu {
        padding: 80px 20px 24px;
    }

    .menu-item a {
        font-size: 14px;
        padding: 12px 0;
    }

    .menu-item--cta .header__cta {
        padding: 10px 16px;
        font-size: 13px;
    }

    /*hero*/
    .hero__container {
        padding: 32% 16px 20px;
    }

    .hero__title {
        font-size: 28px;
    }

    /*intro*/
    .intro__text {
        font-size: 15px;
    }

    /*showcase*/
    .showcase__title {
        font-size: 16px;
    }

    .showcase__item--intro {
        padding: 16px 12px;
    }

    .showcase__item--intro .showcase__text {
        font-size: 12px;
    }

    .showcase__item--brand .showcase__text {
        font-size: 12px;
    }

    .showcase__item--brand::before {
        width: 70px;
        height: 30px;
    }

    /* food */
    .food {
        padding: 40px 12px;
    }

    .food__title {
        font-size: 20px;
    }

    .food-card {
        padding: 28px 18px 24px;
        border-width: 6px;
    }

    .food-card__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .food-card__group-title {
        font-size: 11px;
    }

    .food-card__item {
        font-size: 12px;
    }

    .food-card__price {
        font-size: 12px;
    }

    .food__disclaimer {
        font-size: 10px;
        margin-top: 24px;
    }

    /* events */
    .events__container {
        padding: 35px 14px;
    }

    .events__title {
        font-size: 20px;
    }

    .events-card {
        padding: 32px 20px;
    }

    .events-card__title {
        font-size: 18px;
    }

    .events-card__btn {
        font-size: 12px;
        padding: 8px 12px;
    }

    .events-card__disclaimer {
        font-size: 8px;
    }

    .events-card--secondary::before {
        background-size: 100px auto;
    }

    .events-card--secondary::after {
        background-size: 60px auto;
    }

    /* group-events */
    .group-events {
        padding-top: 32px;
    }

    .group-events__card {
        padding: 24px 18px;
    }

    .group-events__title {
        font-size: 18px;
    }

    .group-events__text {
        font-size: 12px;
    }

    .group-events__btn {
        font-size: 12px;
        padding: 7px 12px;
    }

    .group-events__ticker {
        padding-block: 8px;
        margin-top: 32px;
    }

    .group-events__ticker-group span {
        font-size: 11px;
        padding-right: 10px;
    }

    .group-events__ticker-group span::after {
        margin-left: 10px;
        font-size: 7px;
    }

    /* schedule */
    .schedule {
        padding-block: 24px;
    }

    .schedule__title {
        padding-inline: 14px;
        font-size: 16px;
    }

    .schedule__list {
        padding-inline: 14px;
    }

    .schedule__item {
        min-width: 120px;
        padding-right: 10px;
        padding-top: 10px;
    }

    .schedule__item:not(:first-child) {
        padding-left: 10px;
    }

    .schedule__item:last-child {
        padding-right: 14px;
    }

    .schedule__day,
    .schedule__hours {
        font-size: 12px;
    }

    /* contacts */
    .contacts {
        margin: 33px 14px;
    }

    .contacts__container {
        gap: 24px;
    }

    .contacts__gallery {
        gap: 10px;
        width: 95%;
    }

    .contacts__img--secondary {
        margin-right: 22px;
    }

    .contacts__title {
        font-size: 17px;
    }

    .contacts__text {
        font-size: 12px;
    }

    .contacts__actions {
        gap: 10px;
    }

    .contacts__btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    /* footer */
    .footer__row--top {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "contacts"
            "visit"
            "social"
            "logo";
    }

    .footer__col--logo {
        grid-area: logo;
        justify-content: center;
        align-items: center;
        margin-top: 8px;
    }

    .footer-menu {
        gap: 6px 10px;
    }

    .footer-menu-item a {
        font-size: 10px;
    }

    .footer__credits {
        padding-block: 12px;
        padding-inline: 14px;
    }

    .footer__container {
        padding: 28px 14px 14px;
    }

    /* common */
    .common-page {
        padding: 100px 14px 40px;
    }

    .common-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .common-content h2 {
        font-size: 17px;
        margin-top: 24px;
    }

    .common-content h3 {
        font-size: 14px;
        margin-top: 18px;
    }

    .common-content p,
    .common-content ul li {
        font-size: 13px;
    }

    .common-content table thead,
    .common-content table tbody {
        min-width: 480px;
    }
}

@media screen and (max-width: 375px) {

    /*showcase*/
    .showcase__title {
        font-size: 14px;
    }

    .showcase__item--intro .showcase__text {
        font-size: 11px;
    }
}
/* =========================================================
    WORDPRESS

    Regras que o WordPress exige e que o desenho estatico nao
    tinha: conteudo do editor, alinhamentos, tabelas, skip link.
   ========================================================= */

.screen-reader-text {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-break: normal !important;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--white);
    clip-path: none;
    color: var(--charcoal);
    display: block;
    font-size: 1rem;
    font-weight: 600;
    height: auto;
    left: 0.5rem;
    line-height: normal;
    padding: 0.75rem 1rem;
    top: 0.5rem;
    width: auto;
    z-index: 100000;
}

.entry-content > * + * {
    margin-block-start: 1.5rem;
}

.entry-content .alignwide {
    max-width: 80rem;
}

.entry-content .alignfull {
    margin-inline: calc(50% - 50vw);
    max-width: none;
    width: 100vw;
}

.entry-content img {
    height: auto;
    max-width: 100%;
}

.blisq-table-wrapper {
    overflow-x: auto;
}

.blisq-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.blisq-table caption {
    font-weight: 700;
    padding-block-end: 0.5rem;
    text-align: start;
}

.blisq-table td,
.blisq-table th {
    border: 1px solid var(--lavender-gray);
    padding: 0.6rem 0.75rem;
    text-align: start;
}

.blisq-table.is-striped tbody tr:nth-child(even) {
    background: var(--cloud-gray);
}

.navigation.pagination,
.post-navigation,
.comments-area {
    margin-block-start: 3rem;
}

/* O drawer mobile e position:fixed e passaria por baixo da barra de
   administracao. O header e absolute, por isso ja acompanha o offset
   que o WordPress aplica ao html. */
@media (max-width: 1024px) {
    body.admin-bar .menu {
        top: 32px;
        height: calc(100dvh - 32px);
    }
}

@media screen and (max-width: 782px) {
    body.admin-bar .menu {
        top: 46px;
        height: calc(100dvh - 46px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
