/*
Theme Name: Tema Default
Theme URI: http://blisq.pt
Author: blisq
Author URI: http://blisq.pt
Description: Tema desenvolvido para uso exclusivo da Blisq Creative
Version: V1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blisq
Text Domain: blisq
*/

/* =========================================================
   TIPOGRAFIA
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Fustat:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Qwitcher+Grypen:wght@400;700&display=swap');

/* =========================================================
   VARIAVEIS E RESETS
   ========================================================= */
:root {
    --primary: #332711;
    --gold: #BA9755;
    --gold-light: #F1C57E;
    --golden: #E2C770;
    --cream: #F6D9AA;
    --black: #000000;
    --white: #FFFFFF;
    --off-white: #F5F3F0;
    --dark-brown: #261D0B;
    --moss-gray: #867960;
    --bg-color: #F5F3F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "Fustat", sans-serif;
    color: var(--primary);
    background-color: var(--bg-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    color: #534428;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 159px;
    font-style: normal;
    font-weight: 800;
    line-height: 84%;
    letter-spacing: -3.18px;
}

h2 {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    color: var(--primary);
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background-color: var(--cream);
}

.block {
    display: block;
}

/* =========================================================
   HEADER
   ========================================================= */
header {
    padding: 20px 0 36px 0;
    background-color: white;
}

.container {
    max-width: 1827px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navegação esquerda */
.nav-left ul {
    list-style: none;
    display: flex;
    gap: 11px;
}

.nav-left {
    flex: 1;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-link {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    padding: 10px 20px;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
}

.nav-link:hover {
    background-color: var(--off-white);
    border-radius: 69px;
}

/* Seta SVG nos links da esquerda */
.nav-link.arrow-icon::after {
    content: "";
    width: 13px;
    height: 13px;
    background-image: url('assets/icons/arrow-black.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.nav-link.arrow-icon:hover::after {
    transform: translateY(4px);
}

/* Logo */
.logo a {
    display: block;
}

.logo img {
    width: 96px;
    height: 100px;
    object-fit: contain;
}

/* Botão Como Chegar */
.btn-location {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.36px;
    color: var(--primary);
    background-color: var(--off-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 46px;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-location:hover {
    background-color: var(--golden);
}

.btn-location.location-icon::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url('assets/icons/arrow-black.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: inline-block;
    transform: translateX(30px) rotate(-90deg);
    opacity: 0;
    transition: all 0.4s ease;
    margin-left: -18px;
}

.btn-location.location-icon:hover::after {
    transform: translateX(0) rotate(-90deg);
    opacity: 1;
    margin-left: 10px;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
    width: 100%;
    background-color: var(--white);
    padding-bottom: 76px;
}

.hero-container {
    max-width: 1745px;
    height: 783px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color);
    border-radius: 40px;
}

.hero-title {
    max-width: 883px;
    margin: 0 auto;
    padding-top: 158px;
    text-align: center;
    z-index: 5;
    position: relative;
}

.hero-description {
    max-width: 490px;
    margin: 42px auto 0;
    text-align: center;
    color: #55411C;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 16px;
    z-index: 5;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 1.2s;
}

.hero-container:hover .hero-buttons {
    opacity: 1;
    transform: translateX(0);
}

.hero-container:not(:hover) .hero-buttons {
    transition-delay: 0s;
    opacity: 0;
    transform: translateX(50px);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.36px;
    text-decoration: none;
    border-radius: 46px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Botão Ligar */
.btn-left {
    background-color: var(--golden);
    color: var(--black);
}

/* Botão Como Chegar */
.btn-right {
    background-color: var(--white);
    color: var(--primary);
}

.btn-right:hover {
    background-color: #E8E3DC;
}

/* SVG para o botão Ligar */
.btn-left::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url('assets/icons/telephone.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: inline-block;
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.4s ease;
    margin-left: -18px;
}

.btn-left:hover::after {
    transform: translateX(0);
    opacity: 1;
    margin-left: 10px;
}

.btn-right::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url('assets/icons/arrow-black.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: inline-block;
    transform: translateX(30px) rotate(-90deg);
    opacity: 0;
    transition: all 0.4s ease;
    margin-left: -18px;
}

.btn-right:hover::after {
    transform: translateX(0) rotate(-90deg);
    opacity: 1;
    margin-left: 10px;
}

/* BOLOS HERO */
.hero-cakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cake {
    position: absolute;
    margin: 0;
}

.cake img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.figure-cake-1 {
    top: 206px;
    left: 166px;
    width: 323px;
    height: 231px;
    filter: blur(2px);
    z-index: 4;
    transform: translateX(100px) translateY(800px) rotate(10deg);
    transition: transform 1.2s ease;
}

.hero-container:hover .figure-cake-1 {
    transform: translateX(0) translateY(0) rotate(0deg);
}

.figure-cake-2 {
    top: 114px;
    right: 287px;
    width: 266px;
    height: 208px;
    filter: blur(5px);
    z-index: 4;
    transform: translateX(100px) translateY(800px) rotate(10deg);
    transition: transform 1.2s ease;
}

.hero-container:hover .figure-cake-2 {
    transform: translateX(0) translateY(0) rotate(0deg);
}

.figure-cake-3 {
    bottom: 61px;
    left: 68px;
    width: 326px;
    height: 326px;
    z-index: 3;
    transform: translateY(500px) rotate(25deg);
    transition: transform 1.2s ease;
}

.hero-container:hover .figure-cake-3 {
    transform: translateY(0) rotate(0deg);
}

.figure-cake-4 {
    bottom: 111px;
    right: 177px;
    width: 394px;
    height: 337px;
    z-index: 6;
    transform: translateY(500px) rotate(-20deg);
    transition: transform 1.2s ease;
}

.hero-container:hover .figure-cake-4 {
    transform: translateY(0) rotate(0deg);
}

.hero-quote {
    max-width: 153px;
    color: #414141;
    text-align: center;
    font-family: "Qwitcher Grypen", cursive;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 66%;
    letter-spacing: -0.92px;
    position: absolute;
    bottom: 73px;
    right: 71px;
    transform: rotate(-14.242deg);
    margin: 0;
    z-index: 7;
    opacity: 0;
    transition: opacity 0.8s ease;
    transition-delay: 1.2s;
}

.hero-container:hover .hero-quote {
    opacity: 1;
}

.hero-container:not(:hover) .hero-quote {
    transition-delay: 0s;
    opacity: 0;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-section {
    width: 100%;
}

.about-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 118px;
    background-color: var(--golden);
    height: 535px;
}

/* Lado esquerdo */
.about-video {
    flex: 0 0 52.76%;
    /* 1013px / 1920px = 52.76% */
    height: 100%;
}

.about-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 40px 40px 0;
}

/* Lado direito */
.about-content {
    max-width: 565px;
    width: 100%;
    text-align: center;
    padding: 105px 0 111px;
}

.about-title {
    max-width: 453px;
    line-height: 125%;
    color: var(--primary);
    margin: 0 auto 15px;
}

.about-text {
    width: 100%;
    color: #614E2B;
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: 170%;
    margin-bottom: 20px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 25px;
    background-color: #CFB45A;
    color: var(--primary);
    text-decoration: none;
    border-radius: 46px;
    transition: all 0.4s ease;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.4px;
    position: relative;
    overflow: hidden;
    transition:
        background-color 0.4s ease,
        color 0.4s ease,
        padding 0.4s ease,
        left 0.4s ease;
    left: 0;
}

.about-btn:hover {
    background-color: var(--primary);
    color: #F5F3F0;
    padding-right: 45px;
    left: 10px
}

/* Ícone da seta */
.about-btn.location-icon::after {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url('assets/icons/arrow-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) translateX(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.about-btn.location-icon:hover::after {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    margin-left: 10px;
}

.about-features {
    width: 100%;
    margin: 120px 0;
}

.features-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-circle {
    width: 92px;
    height: 92px;
    background-color: #EBE7E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.feature-text {
    color: var(--primary);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin: 0;
}

.feature-text.text-1 {
    max-width: 209px;
}

.feature-text.text-2 {
    max-width: 173px;
}

.feature-text.text-3 {
    max-width: 152px;
}

.feature-text.text-4 {
    max-width: 178px;
}

.feature-divider {
    width: 1px;
    height: 69px;
    background-color: #D0C6B7;
    margin: 0 45px;
    flex-shrink: 0;
}

/* =========================================================
   PRODUCTS SECTION
   ========================================================= */
.products-section {
    width: 100%;
}

.products-container {
    margin: 0 auto;
    padding: 0 20px;
}

.products-title {
    text-align: center;
    margin: 0 auto;
    max-width: fit-content;
    margin-bottom: 30px;
}

/* CARDS SCROLL HORIZONTAL */
.cards-scroll {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
}

.cards-track {
    display: flex;
    gap: 30px;
    padding: 0 calc(50vw - 50%);
    width: fit-content;
    margin: 0 30px;
}

.product-card {
    flex: 0 0 428px;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    padding: 10px 30px;
    height: 521px;
    max-height: 100%;
}

.card-image {
    margin: 0;
    width: 100%;
    height: 320px;
    max-height: 320px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.card-content {
    max-height: 139px;
    display: flex;
    flex-direction: column;
}

.card-title {
    color: var(--black);
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.card-description {
    color: #6D6D6D;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
}

.cards-scroll::-webkit-scrollbar {
    display: none;
}

.cards-scroll {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.cards-scroll.active {
    cursor: grabbing;
    scroll-behavior: auto;
}

.products-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.products-footer-text {
    color: var(--primary);
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin: 0;
}

.products-footer-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 25px;
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    border-radius: 46px;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    left: 0;
}

.products-footer-btn:hover {
    background-color: var(--golden);
    padding-right: 45px;
    left: 10px;
}

.products-footer-btn.location-icon::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url('assets/icons/telephone.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) translateX(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.products-footer-btn.location-icon:hover::after {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    margin-left: 10px;
}

/* =========================================================
   GALLERY SECTION
   ========================================================= */

.gallery-section {
    width: 100%;
    padding-top: 97px;
    padding-bottom: 79px;
}

.gallery-container {
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-title {
    max-width: 441px;
    margin: 0 auto 20px;
    text-align: center;
}

.gallery-large-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
}

.word {
    color: #F5F3F0;
    mix-blend-mode: multiply;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 210px;
    font-style: normal;
    font-weight: 800;
    line-height: 99%;
    letter-spacing: -4.2px;
    white-space: nowrap;
}

.gallery-carousel {
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
    overflow: hidden;
    margin-top: -80px;
}


.carousel-track {
    display: flex;
    gap: 43px;
    width: fit-content;
    align-items: center;
    will-change: transform;
}

.carousel-figure {
    margin: 0;
    height: auto;
    max-height: 100%;
    width: auto;
    flex-shrink: 0;
}

.carousel-figure img {
    height: 100%;
    max-height: 240px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
    background-color: var(--dark-brown);
    padding: 45px 40px 40px 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Imagem de fundo */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: url('assets/img/bg-footer.webp');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
}

/* Container específico do footer */
.footer-container {
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: left;
}

/* Logo */
.footer-logo {
    margin-bottom: 46px;
}

.footer-logo img {
    width: 132px;
    height: 132px;
}

/* Título */
.footer-title {
    max-width: 375px;
    color: var(--white);
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

/* Linha principal com morada e bloco direito */
.footer-contact-row {
    display: flex;
    gap: 110px;
    margin-top: 37px;
}

/* Morada */
.footer-address {
    max-width: 290px;
    color: var(--golden);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.footer-address:hover {
    color: var(--gold);
}

/* Bloco direito com telefone, span e email */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Telefone */
.footer-phone {
    color: var(--white);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin-bottom: -8px;
}

.footer-phone:hover {
    color: var(--gold);
}

/* Info do telefone */
.phone-info {
    color: var(--moss-gray);
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 170%;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Email */
.footer-email {
    color: var(--white);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.footer-email:hover {
    color: var(--gold);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 92px;
}

.social-icons {
    display: flex;
    gap: 15.45px;
    align-items: center;
}

.social-icon {
    display: inline-block;
    width: 26px;
    height: 26px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Links legais */
.footer-links {
    list-style: none;
    margin-top: 53px;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Assinatura Blisq */
.blisq-link {
    display: inline-block;
    transition: opacity 0.3s ease;
    line-height: 0;
    margin-top: 53px;
}

.blisq-link:hover {
    opacity: 0.8;
}

.blisq-icon {
    width: auto;
    height: 16px;
    object-fit: contain;
    display: block;
}

/* =========================================================
   COMMON PAGES
   ========================================================= */
.common-page {
    background: linear-gradient(180deg, #FFF 32.12%, rgba(255, 255, 255, 0.00) 100%);
    padding: 84px 0 100px;
}

.common-container {
    max-width: 720px;
    margin: 0 auto;
}

.common-title {
    color: var(--primary);
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    font-family: "Fustat", sans-serif;
    letter-spacing: 0.5px
}

.common-content {
    margin: 10px auto;
}

.common-content h2 {
    color: var(--primary);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
    margin: 30px 0 15px;
}

.common-content h2:first-child {
    margin: 0 0 15px;
}

.common-content h3 {
    color: var(--primary);
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    margin-top: 15px;
    margin-bottom: 10px;
}

.common-content p {
    color: #695A3F;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin-bottom: 10px;
}

.common-list {
    list-style: none;
    margin: 10px 0 0 10px;
    padding: 0;
}

.common-list li {
    color: #695A3F;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    padding-left: 16px;
    position: relative;
}

.common-list li strong {
    font-weight: 700;
}

.common-list li::before {
    content: "•";
    color: #695A3F;
    font-size: 17px;
    position: absolute;
    left: 0;
}

.common-list ul {
    margin: 0 0 0 10px;
    list-style: none;
}

.common-list ul li {
    margin-bottom: 4px;
}

.common-table-wrapper {
    max-width: 920px;
    margin: 20px auto;
    overflow-x: auto;
    width: 100%;
}

.common-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Fustat", sans-serif;
}

/* HEADER */
.common-table thead tr {
    background-color: transparent;
}

.common-table th {
    color: var(--primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    padding: 0 10px 10px 20px;
    text-align: left;
    border-right: 1px solid rgba(51, 39, 17, 0.16);
    border-bottom: 1px solid rgba(51, 39, 17, 0.16);
}

/* TABLE BODY */
.common-table tbody tr {
    border-bottom: 1px solid rgba(51, 39, 17, 0.16);
}

.common-table td {
    color: #695A3F;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 15px 20px;
    text-align: left;
    border-right: 1px solid rgba(51, 39, 17, 0.16);
}

/* REMOVER BORDAS EXTERIORES */
.common-table th:first-child,
.common-table td:first-child {
    border-left: none;
}

.common-table th:last-child,
.common-table td:last-child {
    border-right: none;
}

.common-table tbody tr:last-child {
    border-bottom: none;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media screen and (max-width: 1900px) {
    .container {
        margin: 0 40px;
        max-width: 100%;
    }

    /*HERO*/
    .hero-container {
        margin: 0 40px;
        max-width: 100%;
    }
}

@media screen and (max-width: 1850px) {

    /* Bolos */
    .figure-cake-1 {
        width: 300px;
        height: 215px;
        top: 195px;
        left: 155px;
    }

    .figure-cake-2 {
        width: 245px;
        height: 190px;
        top: 105px;
        right: 260px;
    }

    .figure-cake-3 {
        width: 300px;
        height: 300px;
        bottom: 55px;
        left: 55px;
    }

    .figure-cake-4 {
        width: 365px;
        height: 310px;
        bottom: 100px;
        right: 160px;
    }

    .hero-quote {
        font-size: 43px;
        bottom: 65px;
        right: 65px;
    }

    /*FOOTER*/
    footer::before {
        width: 65%;
    }
}

@media screen and (max-width: 1720px) {
    .figure-cake-1 {
        width: 270px;
        height: 195px;
        top: 180px;
        left: 140px;
    }

    .figure-cake-2 {
        width: 220px;
        height: 175px;
        top: 95px;
        right: 235px;
    }

    .figure-cake-3 {
        width: 270px;
        height: 270px;
        bottom: 45px;
        left: 45px;
    }

    .figure-cake-4 {
        width: 330px;
        height: 280px;
        bottom: 85px;
        right: 145px;
    }

    .hero-quote {
        font-size: 38px;
        bottom: 58px;
        right: 58px;
    }

    .word {
        font-size: 167px;
        letter-spacing: -3.2px;
    }
}

@media screen and (max-width: 1536px) {

    /*NAVBAR*/
    .nav-link {
        font-size: 17px;
        padding: 8px 18px;
    }

    .btn-location {
        padding: 13px 22px;
        font-size: 17px;
    }

    .logo img {
        width: 90px;
        height: auto;
    }

    .nav-left ul {
        gap: 25px;
    }

    .nav-left {
        padding-left: 20px;
    }

    .nav-right {
        padding-right: 20px;
    }

    /*HERO*/
    .hero-container {
        max-width: 1400px;
        height: 700px;
        margin: 0 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-title {
        max-width: 750px;
        padding-top: 0;
        margin-top: 0;
        font-size: 64px;
    }

    .hero-description {
        max-width: 450px;
        font-size: 19px;
        margin-top: 35px auto 0;
    }

    .hero-btn {
        padding: 14px 23px;
        font-size: 17px;
    }

    /* Bolos */
    .figure-cake-1 {
        width: 280px;
        height: 200px;
        top: 180px;
        left: 140px;
    }

    .figure-cake-2 {
        width: 230px;
        height: 180px;
        top: 100px;
        right: 240px;
    }

    .figure-cake-3 {
        width: 280px;
        height: 280px;
        bottom: 50px;
        left: 50px;
    }

    .figure-cake-4 {
        width: 340px;
        height: 290px;
        bottom: 90px;
        right: 150px;
    }

    .hero-quote {
        font-size: 40px;
        bottom: 60px;
        right: 60px;
    }

    /*ABOUT*/
    .about-container {
        gap: 80px;
        height: 500px;
    }

    .about-content {
        padding: 80px 0;
    }

    .about-text {
        font-size: 17px;
    }

    /* features */
    .feature-text {
        font-size: 16px;
        line-height: 140%;
    }

    .feature-circle {
        width: 85px;
        height: 85px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
    }

    .feature-divider {
        height: 60px;
        margin: 0 35px;
    }

    .feature-text.text-1 {
        max-width: 190px;
    }

    .feature-text.text-2 {
        max-width: 160px;
    }

    .feature-text.text-3 {
        max-width: 140px;
    }

    .feature-text.text-4 {
        max-width: 165px;
    }

    /*FOOTER*/
    .footer-container {
        max-width: 1400px;
    }

    .footer-title {
        font-size: 30px;
    }

    .footer-address {
        font-size: 20px;
    }

    .footer-phone,
    .footer-email {
        font-size: 20px;
    }

    footer::before {
        width: 69%;
    }
}

@media screen and (max-width: 1440px) {

    /*NAVBAR*/
    .nav-link {
        font-size: 16px;
        padding: 8px 16px;
        gap: 10px;
    }

    .btn-location {
        padding: 12px 20px;
        font-size: 16px;
    }

    .logo img {
        width: 85px;
    }

    .nav-left ul {
        gap: 20px;
    }

    .nav-left {
        padding-left: 15px;
    }

    .nav-right {
        padding-right: 15px;
    }

    /*HERO*/
    .hero-container {
        max-width: 1300px;
        height: 650px;
        margin: 0 25px;
    }

    .hero-title {
        max-width: 700px;
        padding-top: 130px;
        font-size: 62px;
    }

    .hero-description {
        max-width: 420px;
        font-size: 18px;
        margin-top: 30px;
    }

    .hero-btn {
        padding: 13px 22px;
        font-size: 16px;
    }

    /* Bolos */
    .figure-cake-1 {
        width: 260px;
        height: 185px;
        top: 170px;
        left: 130px;
    }

    .figure-cake-2 {
        width: 215px;
        height: 170px;
        top: 90px;
        right: 220px;
    }

    .figure-cake-3 {
        width: 260px;
        height: 260px;
        bottom: 45px;
        left: 45px;
    }

    .figure-cake-4 {
        width: 315px;
        height: 270px;
        bottom: 80px;
        right: 140px;
    }

    .hero-quote {
        font-size: 36px;
        max-width: 140px;
        bottom: 55px;
        right: 55px;
    }

    /*ABOUT*/
    .about-container {
        gap: 60px;
        height: 480px;
    }

    .about-text {
        font-size: 16px;
        padding-right: 30px;
    }

    /* Features */
    .feature-circle {
        width: 80px;
        height: 80px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-text {
        font-size: 16px;
    }

    /*GALLERY*/
    .word {
        font-size: 145px;
        letter-spacing: -2.8px;
    }

    /*FOOTER*/
    .footer-title {
        font-size: 28px;
    }

    .footer-contact-row {
        gap: 80px;
    }

    .footer-address {
        font-size: 18px;
        max-width: 260px;
    }

    .footer-phone,
    .footer-email {
        font-size: 18px;
    }

    .footer-logo img {
        width: 110px;
        height: 110px;
    }
}

@media screen and (max-width: 1280px) {

    /*NAVBAR*/
    .nav-link {
        font-size: 15px;
        padding: 6px 14px;
    }

    .btn-location {
        padding: 10px 18px;
        font-size: 15px;
    }

    .logo img {
        width: 80px;
    }

    .nav-left ul {
        gap: 15px;
    }

    .nav-left {
        padding-left: 10px;
    }

    .nav-right {
        padding-right: 10px;
    }

    /*HERO*/
    .hero-container {
        max-width: 1150px;
        height: 600px;
        margin: 0 20px;
    }

    .hero-title {
        max-width: 650px;
        padding-top: 120px;
        font-size: 44px;
    }

    .hero-description {
        max-width: 400px;
        font-size: 17px;
        margin-top: 28px;
    }

    .hero-btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    /* Bolos */
    .figure-cake-1 {
        width: 240px;
        height: 170px;
        top: 160px;
        left: 120px;
    }

    .figure-cake-2 {
        width: 200px;
        height: 155px;
        top: 80px;
        right: 200px;
    }

    .figure-cake-3 {
        width: 240px;
        height: 240px;
        bottom: 40px;
        left: 40px;
    }

    .figure-cake-4 {
        width: 290px;
        height: 250px;
        bottom: 70px;
        right: 130px;
    }

    .hero-quote {
        font-size: 32px;
        max-width: 130px;
        bottom: 50px;
        right: 50px;
    }

    /*ABOUT*/
    .about-container {
        gap: 40px;
        height: 450px;
    }

    .about-video {
        flex: 0 0 48%;
    }

    .feature-text {
        font-size: 15px;
    }

    .features-container {
        margin: 0 25px;
    }

    .feature-circle {
        width: 75px;
        height: 75px;
    }

    .feature-icon {
        width: 37px;
        height: 37px;
    }

    .feature-divider {
        height: 55px;
        margin: 0 25px;
    }

    .feature-text.text-1 {
        max-width: 175px;
    }

    .feature-text.text-2 {
        max-width: 145px;
    }

    .feature-text.text-3 {
        max-width: 175px;
    }

    .feature-text.text-4 {
        max-width: 150px;
    }

    /*GALLERY*/
    .word {
        font-size: 124px;
        letter-spacing: -2px;
    }

    /*FOOTER*/
    .footer-contact-row {
        gap: 60px;
    }

    .footer-left {
        gap: 60px;
    }

    .footer-title {
        font-size: 26px;
        max-width: 300px;
    }

    /*COMMONS PAGES*/
    .common-page {
        padding: 70px 0 80px;
    }

    .common-title {
        font-size: 38px;
    }

    .common-content h2 {
        font-size: 20px;
        margin: 25px 0 12px;
    }

    .common-content h3 {
        font-size: 18px;
    }

    .common-content p,
    .common-list li {
        font-size: 16px;
    }
}

@media screen and (max-width: 1152px) {

    /* NAVBAR */
    .nav-left ul {
        gap: 12px;
    }

    .nav-left {
        padding-left: 8px;
    }

    .nav-right {
        padding-right: 8px;
    }

    /*HERO*/
    .hero-container {
        max-width: 1050px;
        height: 550px;
        margin: 0 15px;
    }

    .hero-title {
        max-width: 600px;
        padding-top: 110px;
        font-size: 50px;
    }

    .hero-description {
        max-width: 380px;
        font-size: 16px;
        margin-top: 25px;
    }

    .hero-btn {
        padding: 11px 19px;
        font-size: 14px;
    }

    .figure-cake-1 {
        width: 200px;
        height: 143px;
        top: 140px;
        left: 100px;
    }

    .figure-cake-2 {
        width: 170px;
        height: 133px;
        top: 65px;
        right: 165px;
    }

    .figure-cake-3 {
        width: 200px;
        height: 200px;
        bottom: 30px;
        left: 30px;
    }

    .figure-cake-4 {
        width: 240px;
        height: 205px;
        bottom: 50px;
        right: 110px;
    }

    .hero-quote {
        font-size: 28px;
        max-width: 120px;
        bottom: 45px;
        right: 45px;
    }

    /*ABOUT*/
    .about-container {
        height: 420px;
    }

    .about-content {
        padding: 60px 0;
    }

    .features-container {
        margin: 0 30px;
    }

    .feature-circle {
        width: 70px;
        height: 70px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
    }

    .feature-text {
        font-size: 15px;
    }

    .feature-divider {
        margin: 0 20px;
        height: 50px;
    }

    /*FOOTER*/
    .footer-contact-row {
        gap: 40px;
    }

    .footer-address {
        font-size: 16px;
        max-width: 240px;
    }

    .footer-phone,
    .footer-email {
        font-size: 16px;
    }

    .phone-info {
        font-size: 11px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        margin-top: 30px;
    }

    /*COMMON PAGE*/
    .common-page {
        padding: 60px 0 70px;
    }

    .common-title {
        font-size: 34px;
    }

    .common-container {
        padding: 0 20px;
    }

    .common-content h2 {
        font-size: 19px;
    }

    .common-table-wrapper {
        max-width: calc(100% - 40px);
        margin: 20px auto;
    }
}

@media screen and (max-width: 1024px) {

    /*NAVBAR*/
    .nav-left,
    .nav-right {
        display: none;
    }

    .container {
        justify-content: center;
    }

    .logo {
        margin: 0 auto;
    }

    .logo img {
        width: 96px;
        height: auto;
    }

    header {
        padding: 15px 0 25px 0;
    }

    /*HERO*/
    .hero-section {
        padding-bottom: 40px;
    }

    .hero-container {
        height: 650px;
        margin: 0 30px;
        flex-direction: column;
        border-radius: 30px;
        display: flex;
    }

    /* Anular hover */
    .hero-container:not(:hover) .hero-buttons,
    .hero-container:hover .cake,
    .hero-container:hover .hero-buttons {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-container:not(:hover) .hero-quote,
    .hero-container:hover .hero-quote {
        opacity: 1;
        transform: rotate(14.242deg);
        transition: none;
    }

    .hero-buttons,
    .cake {
        opacity: 1;
        transform: none;
        transition: none;
    }

    /* BOLOS - maiores que mobile */
    .figure-cake-1 {
        top: 140px;
        left: 60px;
        width: 140px;
        height: 100px;
    }

    .figure-cake-2 {
        top: 60px;
        right: 60px;
        width: 160px;
        height: 125px;
    }

    .figure-cake-3 {
        width: 100px;
        height: 100px;
        left: 75px;
        bottom: 100px;
    }

    .figure-cake-4 {
        bottom: 65px;
        right: 50px;
        width: 200px;
        height: 170px;
    }

    /* Frase */
    .hero-quote {
        bottom: 60px;
        left: 40px;
        font-size: 38px;
        max-width: 130px;
        transform: rotate(-14.242deg);
    }

    /* Título */
    .hero-title {
        max-width: 500px;
        padding-top: 75px;
        font-size: 70px;
        line-height: 84%;
        letter-spacing: -1.18px;
        margin: 0 auto;
    }

    /* Descrição */
    .hero-description {
        max-width: 450px;
        font-size: 16px;
        margin: 20px auto 0;
    }

    /* Botões */
    .hero-buttons {
        flex-direction: row;
        gap: 20px;
        margin: 25px auto 40px;
        transform: translateX(0);
        justify-content: center;
    }

    .hero-btn {
        padding: 16px 24px;
        font-size: 16px;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }

    /*ABOUT*/
    .about-container {
        flex-direction: column;
        height: auto;
        gap: 0;
    }

    .about-video {
        flex: 0 0 auto;
        width: 100%;
        height: 203px;
    }

    .about-video video {
        border-radius: 0 0 20px 20px;
    }

    .about-content {
        max-width: 100%;
        padding: 65px 19px;
        text-align: center;
    }

    .about-title {
        max-width: 100%;
        margin: 0 auto 8px;
    }

    .about-text {
        padding: 0;
    }

    /* Features */
    .about-features {
        margin: 80px 0;
    }

    .features-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .feature-item {
        width: 45%;
        justify-content: center;
    }

    .feature-divider {
        display: none;
    }

    .feature-text {
        text-align: left;
    }

    /*PRODUCTS*/
    .products-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .cards-track {
        gap: 20px;
        padding: 0 25px;
    }

    .product-card {
        flex: 0 0 350px;
        padding: 9px 25px;
        height: 415px;
        max-height: 100%;
    }

    .card-image {
        max-height: 270px;
    }

    .card-title {
        font-size: 26px;
    }

    .card-description {
        font-size: 15px;
    }

    .products-footer {
        flex-direction: row;
        gap: 20px;
        max-width: 500px;
    }

    /*GALLERY*/
    .gallery-container {
        padding: 0;
    }

    /*FOOTER*/
    .footer-contact-row {
        flex-direction: column;
        gap: 30px;
    }

    .footer-left {
        gap: 30px;
    }

    .footer-right {
        align-items: flex-start;
    }

    /*COMMON PAGE*/
    .common-page {
        padding: 50px 0 60px;
    }

    .common-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .common-content h2 {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .common-content h3 {
        font-size: 17px;
    }

    .common-content p,
    .common-list li {
        font-size: 15px;
        line-height: 160%;
    }

    .common-list {
        margin-left: 5px;
    }

    .common-list ul {
        margin-left: 15px;
    }
}

@media screen and (max-width: 850px) {
    .figure-cake-4 {
        bottom: 40px;
        right: 45px;
        width: 170px;
        height: 145px;
    }
}

@media screen and (max-width: 768px) {

    /*NAVBAR*/
    .logo img {
        width: 85px;
    }

    header {
        padding: 12px 0 20px 0;
    }

    /*hero*/
    .figure-cake-3 {
        width: 100px;
        height: 100px;
        left: 75px;
        bottom: 70px;
    }

    .figure-cake-4 {
        bottom: 40px;
        right: 45px;
        width: 140px;
        height: 120px;
    }

    /* Frase */
    .hero-quote {
        bottom: 40px;
        left: 40px;
        font-size: 38px;
        max-width: 130px;
        transform: rotate(-14.242deg);
    }

    /*ABOUT*/
    .about-content {
        padding: 40px 20px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-text {
        font-size: 15px;
    }

    .about-btn {
        padding: 14px 20px;
        font-size: 15px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.3px
    }

    .word {
        font-size: 76px;
        line-height: 99%;
        letter-spacing: -1.52px;
    }

    .common-page {
        padding: 40px 0 50px;
    }

    .common-title {
        font-size: 28px;
    }

    .common-content h2 {
        font-size: 17px;
    }

    .common-content h3 {
        font-size: 16px;
    }

    .common-content p,
    .common-list li {
        font-size: 14px;
        line-height: 155%;
    }

    .common-list {
        margin-left: 0;
    }

    .common-list li {
        padding-left: 14px;
    }

    .common-list li::before {
        font-size: 14px;
    }

    .common-table th {
        font-size: 14px;
        padding: 0 8px 8px 15px;
    }

    .common-table td {
        font-size: 12px;
        padding: 12px 15px;
    }
}

@media screen and (max-width: 640px) {

    /*NAVBAR*/
    .logo img {
        width: 75px;
        height: 75px;
    }

    header {
        padding: 10px 0 15px 0;
    }

    /*HERO*/
    .hero-section {
        padding-bottom: 20px;
    }

    .hero-container {
        height: 530px;
        margin: 0 20px;
        flex-direction: column;
        border-radius: 20px;
        display: block;
    }

    /* BOLOS - só posições */
    .figure-cake-1 {
        top: 121px;
        left: 41px;
        width: 105px;
        height: 75px;
    }

    .figure-cake-2 {
        top: 43px;
        right: 38px;
        width: 124px;
        height: 97px;
    }

    .figure-cake-3 {
        top: 156px;
        right: 43px;
        width: 73px;
        height: 73px;
        left: auto;
        bottom: auto;
    }

    .figure-cake-4 {
        top: 105px;
        left: 150px;
        width: 156px;
        height: 133px;
    }

    /* Frase */
    .hero-quote {
        top: 43px;
        left: 25px;
        bottom: auto;
        right: auto;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 66%;
        max-width: 105px;
    }

    .hero-container:not(:hover) .hero-quote,
    .hero-container:hover .hero-quote {
        opacity: 1;
        transform: rotate(-14.242deg);
        transition: none;
    }

    /* Título */
    .hero-title {
        max-width: 325px;
        padding-top: 225px;
        font-size: 59px;
        line-height: 84%;
        letter-spacing: -1.18px;
    }

    /* Descrição */
    .hero-description {
        max-width: 325px;
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 160%;
        margin: 15px auto 0;
    }

    /* Botões */
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 65px;
        margin-top: auto;
        margin: 15px auto 10px;
        transform: translateX(0);
    }

    .hero-btn {
        padding: 14px 20px;
        font-size: 15px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }

    /*ABOUT*/
    .about-title {
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 125%;
    }

    .about-text {
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 170%;
    }

    .about-features {
        margin: 30px 0 50px;
    }

    .features-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0;
        margin: 0 30px;
        padding: 0;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .feature-divider {
        display: block;
    }

    .feature-item {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }

    .feature-text {
        max-width: 100%;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 140%;
    }

    .feature-circle {
        width: 73px;
        height: 73px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .features-container::-webkit-scrollbar {
        display: none;
    }

    /*PRODUCTS*/
    .products-title {
        font-size: 22px;
        line-height: 125%;
        margin-bottom: 20px;
    }

    /* Cards */
    .cards-track {
        gap: 15px;
        padding: 0 15px;
        margin: 0;
    }

    .cards-scroll {
        padding-bottom: 20px;
    }

    .product-card {
        flex: 0 0 301px;
        padding: 8px 21px;
        height: auto;
        min-height: 367px;
    }

    .card-image {
        height: 100%;
        max-height: 245px;
    }

    .card-content {
        max-height: 98px;
    }

    .card-title {
        font-size: 23px;
    }

    .card-description {
        font-size: 13px;
    }

    .products-footer {
        flex-direction: column;
        gap: 15px;
        margin: 0 auto;
        max-width: 246px;
    }

    .products-footer-text {
        font-size: 15px;
        text-align: center;
    }

    .products-footer-btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .products-footer-btn:hover {
        padding-right: 40px;
    }

    /*Gallery*/
    .gallery-section {
        width: 100%;
        padding: 50px 0;
    }

    .gallery-title {
        max-width: 273px;
        margin: 0 auto px;
        text-align: center;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 125%;
    }

    .gallery-carousel {
        margin-top: -40px;
    }

    .carousel-track {
        gap: 7px;
        align-items: center;
    }

    .carousel-figure {
        height: auto;
        max-height: 180px;
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-figure img {
        max-height: 180px;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }

    /*FOOTER*/
    footer {
        padding: 30px 20px;
    }

    footer::before {
        width: 100%;
    }

    .footer-logo img {
        width: 90px;
        height: 90px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-title {
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 110%;
        max-width: 250px;
    }

    .footer-contact-row {
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .footer-left {
        display: contents;
        flex-direction: column;
        gap: 15px;
    }

    .footer-right {
        margin-top: 0;
        align-items: flex-start;
        order: 2;
    }

    .social-icons {
        margin-top: 5px;
        order: 3;
        gap: 15px;
    }

    .social-icon {
        width: 26px;
        height: 26px;
    }

    .social-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .footer-address {
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        max-width: 240px;
        order: 1;
    }

    .footer-phone {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        margin-bottom: -6px;
    }

    .phone-info {
        font-size: 10.226px;
        font-style: normal;
        font-weight: 300;
        line-height: 170%;
        margin-bottom: 10px;
    }

    .footer-email {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }

    .footer-bottom {
        display: flex;
        margin-top: 30px;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 0;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }

    .footer-links a {
        white-space: normal;
    }

    .blisq-link {
        margin-top: 0;
        align-self: flex-end;
    }
}

@media screen and (max-width: 480px) {

    /*hero*/
    .figure-cake-4 {
        top: 119px;
        left: 33%;
        width: 156px;
        height: 133px;
    }

    /*COMMON PAGES*/
    .common-page {
        padding: 30px 0 40px;
    }

    .common-title {
        font-size: 24px;
    }

    .common-content h2 {
        font-size: 16px;
        margin: 18px 0 8px;
    }

    .common-content h3 {
        font-size: 15px;
    }

    .common-content p,
    .common-list li {
        font-size: 13px;
        line-height: 150%;
    }

    .common-container {
        padding: 0 15px;
    }

    .common-table-wrapper {
        max-width: calc(100% - 30px);
        margin: 15px auto;
    }

    .common-table th {
        font-size: 12px;
        padding: 0 5px 5px 10px;
    }

    .common-table td {
        font-size: 11px;
        padding: 10px 10px;
    }
}

@media screen and (max-width: 400px) {
    .figure-cake-4 {
        top: 130px;
        left: 75px;
    }

    .hero-title {
        max-width: 280px;
        font-size: 48px;
        line-height: 84%;
        letter-spacing: -1.18px;
        padding-top: 260px;
    }

    /* Descrição */
    .hero-description {
        max-width: 280px;
        font-size: 12px;
        margin: 12px auto 0;
    }

    /* Botões */
    .hero-buttons {
        gap: 8px;
        margin: 12px auto 8px;
    }

    .hero-btn {
        padding: 12px 16px;
        font-size: 13px;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }
}

@media screen and (max-width: 375px) {

    /*NAVBAR*/
    .logo img {
        width: 60px;
    }

    /*HERO*/

    .hero-quote {
        left: 10px;
    }

    /*COMMON PAGES*/
    .common-page {
        padding: 25px 0 35px;
    }

    .common-title {
        font-size: 22px;
    }

    .common-content h2 {
        font-size: 15px;
    }

    .common-container {
        padding: 0 12px;
    }
}

@media screen and (max-width: 320px) {

    /*NAVBAR*/
    .logo img {
        width: 50px;
    }

    header {
        padding: 8px 0 15px 0;
    }
}