/*
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);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    color: #534428;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 8.28125vw;
    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 20px 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-left a {
    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-left a:hover {
    background-color: var(--off-white);
    border-radius: 69px;
}

/* Seta SVG nos links da esquerda */
.nav-left li a::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-left li a: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;
    min-height: calc(100vh - 160px);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color);
    border-radius: 40px;
    padding-bottom: 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: contain;
    display: block;
}

.figure-cake-1 {
	left: 14%;
    top: 26%;
    filter: blur(1px);
    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 {
    right: 16%;
    top: 14%;
    filter: blur(2px);
    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 {
    left: 5%;
    bottom: 9%;
    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 {
    right: 10%;
    bottom: 15%;
    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;
    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;
}

.about-btn:hover {
    background-color: var(--primary);
    color: #F5F3F0;
}

/* 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: relative;
    display: inline-block;
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.4s ease;
    margin-left: -18px;
}

.about-btn.location-icon:hover::after {
    transform: translateX(0);
    opacity: 1;
    margin-left: 10px;
}

.about-features {
    width: 100%;
    margin: 120px 20px;
}

.features-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    max-width: 320px;
    position: relative;
    justify-content: center;
}

/* espaço entre itens */
.feature-item:not(:last-child) {
    margin-right: 90px;
}

/* divider */
.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 69px;
    background-color: #D0C6B7;
}

.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;
    max-width: 100%;
    text-wrap: balance;
}

/* =========================================================
   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;
    font-size: clamp(22px, calc(22px + (30 - 22) * ((100vw - 640px) / (1920 - 640))), 30px);
}

/* CARDS SCROLL HORIZONTAL */
.cards-scroll {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 30px;
}

.cards-track {
    display: flex;
    gap: 30px;
    padding: 0 calc(50vw - 50%);
    width: fit-content;
    margin: 0 auto;
    padding: 0 30px 0 30px;
}

.product-card {
    flex: 0 0 428px;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    padding: 10px 30px 20px;
    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: clamp(23px, calc(23px + (30 - 23) * ((100vw - 640px) / (1920 - 640))), 30px);
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding-bottom: 10px;
}

.card-description {
    color: #6D6D6D;
    font-size: clamp(13px, calc(13px + (17 - 13) * ((100vw - 640px) / (1920 - 640))), 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: clamp(15px, calc(15px + (21 - 15) * ((100vw - 640px) / (1920 - 640))), 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: clamp(15px, calc(15px + (20 - 15) * ((100vw - 640px) / (1920 - 640))), 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;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.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;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.gallery-carousel {
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
    overflow: hidden;
    margin-top: -80px;
    cursor: grab;
}

.gallery-carousel:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 43px;
    width: fit-content;
    align-items: center;
    will-change: transform;
}

.carousel-track img {
    pointer-events: none;
    user-select: none;
}

.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;
    user-select: none;
}

/* =========================================================
   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-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
    animation: mudarImagem 10s infinite;
}

@keyframes mudarImagem {

    0%,
    30% {
        background-image: url('assets/images/bg-footer.webp');
    }

    33%,
    63% {
        background-image: url('assets/images/bg-footer1.webp');
    }

    66%,
    96% {
        background-image: url('assets/images/bg-footer2.webp');
    }

    100% {
        background-image: url('assets/images/bg-footer.webp');
    }
}

/* 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%;
    cursor: pointer;
}

.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-content ul,
.common-content ul {
    list-style: none;
    margin: 10px 0 0 10px;
    padding: 0;
}

.common-content li,
.common-content ul li {
    color: #695A3F;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    padding-left: 16px;
    position: relative;
}

.common-content li strong,
.common-content ul li strong {
    font-weight: 700;
}

.common-content li::before,
.common-content ul li::before {
    content: "•";
    color: #695A3F;
    font-size: 17px;
    position: absolute;
    left: 0;
}

.common-content ul>ul,
.common-content ul ul {
    margin: 0 0 0 10px;
    list-style: none;
}

.common-content ul ul li {
    margin-bottom: 4px;
}

.common-content table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Fustat", sans-serif;
    width: calc(100% + 200px);
    margin-left: -100px;
    margin-bottom: 10px;
}

/* HEADER */
.common-content table thead tr {
    background-color: transparent;
}

.common-content 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-content table tbody tr {
    border-bottom: 1px solid rgba(51, 39, 17, 0.16);
}

.common-content 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-content table th:first-child,
.common-content table td:first-child {
    border-left: none;
}

.common-content table th:last-child,
.common-content table td:last-child {
    border-right: none;
}

.common-content 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,
    .figure-cake-2,
    .figure-cake-3,
    .figure-cake-4 img {
        scale: 0.9;
    }

    .hero-quote {
        font-size: 43px;
        bottom: 65px;
        right: 65px;
    }

    /*FOOTER*/
    footer::before {
        width: 65%;
    }
}

@media screen and (max-width: 1800px) {

    .figure-cake-1,
    .figure-cake-3,
    .figure-cake-4 img {
        scale: 0.8;
    }
}

@media screen and (max-width: 1750px) {

    .figure-cake-1,
    .figure-cake-3,
    .figure-cake-4 img {
        scale: 0.75;
    }

    .figure-cake-2 {
        scale: 0.85;
    }
}

@media screen and (max-width: 1720px) {
    .figure-cake-4 {
        right: 8%;
        bottom: 15%;
    }

    .hero-quote {
        font-size: 38px;
        bottom: 58px;
        right: 58px;
    }

    .word {
        font-size: 167px;
        letter-spacing: -3.2px;
    }
}

@media screen and (max-width: 1650px) {

    .figure-cake-1 {
        left: 10%;
        top: 22%;
    }

    .figure-cake-2 {
        right: 14%;
        top: 14%;
    }

    .figure-cake-4 {
        right: 6%;
        bottom: 15%;
    }
}

@media screen and (max-width: 1600px) {

    .figure-cake-1 {
        left: 8%;
    }

    .figure-cake-4 {
        right: 5%;
        bottom: 14%;
    }
}

@media screen and (max-width: 1536px) {

    /*NAVBAR*/
    .nav-left a {
        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 {
        min-height: calc(100vh - 154px);
        margin: 0 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-title {
        max-width: 750px;
        padding-top: 0;
        margin-top: 0;
    }

    .hero-description {
        max-width: 450px;
        font-size: 19px;
        margin: 35px auto 0;
    }

    .hero-btn {
        padding: 14px 23px;
        font-size: 17px;
    }

    .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-item:not(:last-child) {
        margin-right: 70px;
    }

    .feature-item:not(:last-child)::after {
        right: -35px;
        height: 60px;
    }

    /*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-left a {
        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 {
        min-height: calc(100vh - 149px);
        margin: 0 25px;
    }

    .hero-title {
        max-width: 700px;
    }

    .hero-description {
        max-width: 420px;
        font-size: 18px;
        margin-top: 30px;
    }

    .hero-btn {
        padding: 13px 22px;
        font-size: 16px;
    }

    .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;
    }

    /*Products*/
    .product-card {
        flex: 0 0 390px;
    }

    .card-title {
        font-size: 28px;
    }

    .card-description {
        font-size: 16px;
    }

    .products-footer-text {
        font-size: 20px;
    }

    .products-footer-btn {
        padding: 13px 23px;
        font-size: 18px;
    }

    /*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-left a {
        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 {
        min-height: calc(100vh - 143px);
        margin: 0 20px;
    }

    .hero-title {
        max-width: 600px;
    }

    .hero-description {
        max-width: 400px;
        font-size: 17px;
        margin-top: 28px;
    }

    .hero-btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    .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-item:not(:last-child) {
        margin-right: 50px;
    }

    .feature-item:not(:last-child)::after {
        right: -25px;
        height: 55px;
    }

    /*PRODUCTS*/
    .product-card {
        flex: 0 0 370px;
    }

    /*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-content ul 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 {
        margin: 0 15px;
    }

    .hero-title {
        max-width: 550px;
    }

    .hero-description {
        max-width: 380px;
        font-size: 15px;
        margin-top: 25px;
        text-wrap: balance;
    }

    .hero-btn {
        padding: 11px 19px;
        font-size: 14px;
    }

    .figure-cake-4 {
        scale: 0.8;
    }

    .hero-quote {
        font-size: 28px;
        max-width: 120px;
        bottom: 45px;
        right: 45px;
    }

    /*ABOUT*/
    .about-container {
        height: 420px;
    }

    .about-content {
        padding: 60px 0;
    }

    .about-features {
        width: 100%;
        margin: 100px 0;
    }

    .features-container {
        margin: 0 30px;
    }

    .feature-circle {
        width: 70px;
        height: 70px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
    }

    .feature-text {
        font-size: 13px;
    }

    .feature-item:not(:last-child) {
        margin-right: 30px;
    }

    .feature-item:not(:last-child)::after {
        right: -12px;
        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;
        padding-top: 3px;
    }

    .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-content table {
        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 20px 0;
    }

    /*HERO*/
    .hero-section {
        padding-bottom: 40px;
    }

    .hero-container {
        min-height: calc(100vh - 155px);
        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 {
        left: 4%;
        top: 20%;
    }

    .figure-cake-2 {
        right: 10%;
        top: 16%;
    }

    .figure-cake-3 {
        left: 1%;
        bottom: 6%;
    }

    .figure-cake-4 {
        right: -2%;
        bottom: 6%;
    }

    /* 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;
        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: 250px;
    }

    .about-video video {
        border-radius: 0 0 20px 20px;
    }

    .about-content {
        max-width: 100%;
        padding: 65px 19px;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .about-title {
        max-width: 100%;
        margin: 0 auto 8px;
    }

    .about-text {
        padding: 0;
        max-width: 75%;
    }

    /* Features */
    .about-features {
        margin: 80px 0;
    }

    .features-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0;
        margin: 0;
        padding: 0 30px;
        justify-content: flex-start;
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .features-container.active {
        cursor: grabbing;
        scroll-behavior: auto;
    }

    .feature-icon {
        user-select: none;
        -webkit-user-drag: none;
    }

    .feature-item {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }

    .feature-item::after {
        display: block;
    }

    .features-container::-webkit-scrollbar {
        display: none;
    }

    .feature-item {
        width: 45%;
        justify-content: center;
    }

    .feature-item::after {
        display: none;
    }

    .feature-text {
        text-align: left;
    }

    /*PRODUCTS*/
    .products-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .cards-track {
        gap: 20px;
    }

    .product-card {
        flex: 0 0 350px;
        padding: 9px 25px;
        max-height: 100%;
    }

    .card-image {
        max-height: 270px;
    }

    .card-title {
        font-size: 26px;
    }

    .card-description {
        font-size: 15px;
    }

    .products-footer {
        flex-direction: column;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .products-footer-text {
        max-width: 335px;
        text-align: center;
        font-size: 19px;
    }

    .products-footer-btn {
        padding: 13px 23px;
        font-size: 16px;
    }

    /*GALLERY*/
    .gallery-section {
        width: 100%;
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .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 table {
        overflow: auto;
        display: block;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .common-content table::-webkit-scrollbar {
        display: none;
    }

    .common-content p,
    .common-content ul li {
        font-size: 15px;
        line-height: 160%;
    }

    .common-content ul {
        margin-left: 5px;
    }

    .common-content ul ul {
        margin-left: 15px;
    }
}

@media screen and (min-width: 1024px) and (max-height: 720px) {
    .hero-container {
        min-height: 550px
    }
}

@media screen and (max-width: 1024px) and (max-height: 760px) {
    .cake {
        scale: 0.5;
    }

    .figure-cake-1 {
        left: 0%;
        top: 12%;
    }

    .figure-cake-2 {
        right: 3%;
        top: 12%;
    }

    .figure-cake-3 {
        left: -2%;
        bottom: 2%;
    }

    .figure-cake-4 {
        right: -4%;
        bottom: 1%;
    }
}

@media screen and (max-width: 950px) {
    .cake {
        scale: 0.6;
    }
}

@media screen and (max-width: 900px) {
    .figure-cake-1 {
        left: 0%;
        top: 20%;
    }

    .figure-cake-2 {
        right: 3%;
        top: 20%;
    }

    .figure-cake-3 {
        left: -2%;
        bottom: 3%;
    }

    .figure-cake-4 {
        right: -4%;
        bottom: 1%;
    }
}

@media screen and (max-width: 850px) {

    .figure-cake-1 {
        left: 0%;
        top: 12%;
    }

    .figure-cake-2 {
        right: 0%;
        top: 15%;
    }

    .figure-cake-3 {
        left: -4%;
        bottom: 0%;
        scale: 0.5;
    }

    .figure-cake-4 {
        right: -9%;
        bottom: 0%;
    }
}

@media screen and (max-width: 768px) {

    /*NAVBAR*/
    .logo img {
        width: 85px;
    }

    header {
        padding: 12px 0 20px 0;
    }

    /*hero*/
    .cake {
        scale: 0.5;
    }

    .figure-cake-1 {
        left: -6%;
        top: 16%;
    }

    .figure-cake-2 {
        right: -3%;
        top: 17%;
    }

    .figure-cake-3 {
        left: -5%;
        bottom: -4%;
        scale: 0.45;
    }

    .figure-cake-4 {
        right: -9%;
        bottom: -3%;
    }

    /* Frase */
    .hero-quote {
        bottom: 40px;
        left: 40px;
        font-size: 38px;
        max-width: 130px;
        transform: rotate(-14.242deg);
    }

    /*ABOUT*/
    .about-content {
        padding: 60px 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-content ul li {
        font-size: 14px;
        line-height: 155%;
    }

    .common-content ul {
        margin-left: 0;
    }

    .common-content ul li {
        padding-left: 14px;
    }

    .common-content ul li::before {
        font-size: 14px;
    }

    .common-content table th {
        font-size: 14px;
        padding: 0 8px 8px 15px;
    }

    .common-content table td {
        font-size: 12px;
        padding: 12px 15px;
    }
}

@media screen and (max-width: 700px) {
    .figure-cake-1 {
        left: -6%;
        top: 10%;
    }

    .figure-cake-2 {
        right: -6%;
        top: 12%;
    }

    .figure-cake-3 {
        left: -5%;
        bottom: -4%;
        scale: 0.45;
    }

    .figure-cake-4 {
        right: -13%;
        bottom: -5%;
    }

    .hero-buttons {
        margin: 24px auto 40px;
    }

    .hero-btn {
        padding: 14px 22px;
    }
}


@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 {
        margin: 0 20px;
        flex-direction: column;
        border-radius: 20px;
        display: block;
        min-height: auto;
        padding-bottom: 45px;
    }

    /* 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;
    }

    .cake {
        scale: 1;
    }

    /* 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;
        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%;
        max-width: 80%;
    }

    .about-text {
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 170%;
    }

    .about-features {
        margin: 30px 0 50px;
    }

    .feature-item:not(:last-child)::after {
        display: block;
    }

    .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-title {
    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;
    min-height: 367px;
}

.card-image {
    height: 100%;
    max-height: 245px;
}

.card-content {
    max-height: 98px;
}

.products-footer {
    flex-direction: column;
    gap: 15px;
    margin: 0 auto;
    max-width: 246px;
}

.products-footer-text {
    text-align: center;
}

.products-footer-btn {
    padding: 14px 20px;
}

.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: 70px;
        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: 26px;
    }

    .common-content h2 {
        font-size: 18px;
        margin: 18px 0 8px;
    }

    .common-content h3 {
        font-size: 17px;
    }

    .common-content p,
    .common-content ul li {
        font-size: 15px;
        line-height: 150%;
    }

    .common-container {
        padding: 0 20px;
    }

    .common-content table-wrapper {
        max-width: calc(100% - 30px);
        margin: 15px auto;
    }

    .common-content table th {
        font-size: 12px;
        padding: 0 5px 5px 10px;
    }

    .common-content 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;
        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;
    }
}