/* ==================================================
   RESET
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --wine: #761c28;
    --wine-dark: #4d1019;
    --wine-light: #9d2e3d;

    --gold: #c89b55;
    --gold-light: #e4c28a;

    --cream: #f8f3ea;

    --dark: #171311;

    --white: #ffffff;

    --gray: #6e6965;
    --gray-light: #f4f1ed;

    --border: #e6dfd7;

    --shadow: 0 20px 50px rgba(38, 21, 17, 0.1);

    --radius: 22px;

    --font-title: "Playfair Display", Georgia, serif;
    --font-body: "DM Sans", Arial, sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

body.menu-open,
body.cart-open {
    overflow: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    outline: 0;
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}


/* ==================================================
   HEADER
================================================== */

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
   

    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.header-container {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ==================================================
   LOGO
================================================== */

.logo {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;

    color: var(--gold-light);

    font-size: 20px;
}

.logo-icon::after {
    content: "";

    width: 36px;
    height: 36px;

    position: absolute;

    border: 1px solid rgba(200, 155, 85, 0.5);
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    color: var(--white);

    font-family: var(--font-title);

    font-size: 18px;
    font-weight: 800;

    letter-spacing: 1.7px;
}

.logo-subtitle {
    color: rgba(255, 255, 255, 0.65);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.header.scrolled .logo-icon {
    color: var(--wine);

    border-color: rgba(118, 28, 40, 0.15);
}

.header.scrolled .logo-name {
    color: var(--dark);
}

.header.scrolled .logo-subtitle {
    color: var(--gray);
}


/* ==================================================
   MENU
================================================== */

.nav {
    display: flex;
    align-items: center;

    gap: 32px;
}

.nav-link {
    position: relative;

    color: rgba(255, 255, 255, 0.8);

    font-size: 14px;
    font-weight: 600;

    transition: 0.25s ease;
}

.nav-link::after {
    content: "";

    width: 0;
    height: 2px;

    position: absolute;

    left: 0;
    bottom: -8px;

    background: var(--gold);

    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header.scrolled .nav-link {
    color: var(--gray);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--wine);
}


/* ==================================================
   HEADER ACTIONS
================================================== */

.header-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}

.cart-button {
    width: 46px;
    height: 46px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    color: var(--white);

    font-size: 16px;

    transition: 0.25s ease;
}

.cart-button:hover {
    background: rgba(255, 255, 255, 0.18);
}

.cart-count {
    width: 19px;
    height: 19px;

    position: absolute;

    top: -4px;
    right: -2px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--gold);
    color: var(--dark);

    border-radius: 50%;

    font-size: 10px;
    font-weight: 800;
}

.header.scrolled .cart-button {
    background: var(--gray-light);
    color: var(--dark);

    border-color: var(--border);
}

.header-order {
    height: 46px;

    padding: 0 20px;

    display: flex;
    align-items: center;

    gap: 9px;

    background: var(--wine);
    color: var(--white);

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s ease;
}

.header-order:hover {
    background: var(--wine-light);

    transform: translateY(-2px);
}


/* ==================================================
   BOTÃO MENU MOBILE
================================================== */

.menu-toggle {
    width: 44px;
    height: 44px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    background: transparent;
}

.menu-toggle span {
    width: 23px;
    height: 2px;

    display: block;

    background: var(--white);

    border-radius: 5px;

    transition: 0.3s ease;
}

.header.scrolled .menu-toggle span {
    background: var(--dark);
}


/* ==================================================
   HERO
================================================== */

.hero {
    width: 100%;
    min-height: 760px;
    height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    background-image:
        url("https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=1800&q=90");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(25, 12, 10, 0.95) 0%,
            rgba(40, 13, 14, 0.8) 45%,
            rgba(25, 12, 10, 0.3) 78%,
            rgba(0, 0, 0, 0.18) 100%
        );
}

.hero-container {
    position: relative;

    z-index: 2;

    padding-top: 70px;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.hero-badge span {
    width: 35px;
    height: 1px;

    background: var(--gold);
}

.hero h1 {
    margin-bottom: 28px;

    color: var(--white);

    font-family: var(--font-title);

    font-size: clamp(52px, 6vw, 82px);

    line-height: 1;

    letter-spacing: -2px;
}

.hero h1 span {
    display: block;

    color: var(--gold-light);

    font-style: italic;
}

.hero-content > p {
    max-width: 600px;

    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;

    line-height: 1.8;
}


/* ==================================================
   BOTÕES
================================================== */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}

.btn {
    min-height: 55px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.btn-primary {
    background: var(--wine);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--wine-light);

    transform: translateY(-3px);
}

.btn-outline {
    color: var(--white);

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}


/* ==================================================
   HERO INFO
================================================== */

.hero-info {
    margin-top: 50px;
    padding-top: 28px;

    display: flex;

    gap: 45px;

    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-info > div {
    display: flex;
    align-items: center;

    gap: 13px;
}

.hero-info i {
    color: var(--gold-light);

    font-size: 20px;
}

.hero-info p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;

    line-height: 1.5;
}

.hero-info p span {
    display: block;

    color: var(--white);

    font-size: 13px;
    font-weight: 700;
}

.scroll-down {
    position: absolute;

    right: 4%;
    bottom: 45px;

    z-index: 2;

    display: flex;
    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;

    transform: rotate(90deg);

    transform-origin: right;
}

.scroll-down i {
    transform: rotate(-90deg);
}


/* ==================================================
   DIFERENCIAIS
================================================== */

.features {
    background: var(--wine);
}

.features-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);
}

.feature {
    padding: 38px 35px;

    display: flex;
    align-items: center;

    gap: 20px;

    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.feature:last-child {
    border-right: 0;
}

.feature-icon {
    width: 54px;
    height: 54px;

    min-width: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold-light);

    border: 1px solid rgba(228, 194, 138, 0.4);
    border-radius: 50%;

    font-size: 20px;
}

.feature h3 {
    margin-bottom: 6px;

    color: var(--white);

    font-family: var(--font-title);

    font-size: 18px;
}

.feature p {
    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;

    line-height: 1.6;
}


/* ==================================================
   SOBRE
================================================== */

.about {
    background: var(--cream);
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 90px;
}

.about-images {
    min-height: 590px;

    position: relative;
}

.about-image-main {
    width: 78%;
    height: 510px;

    overflow: hidden;

    border-radius: 240px 240px 20px 20px;
}

.about-image-main img,
.about-image-small img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-image-small {
    width: 260px;
    height: 310px;

    position: absolute;

    right: 0;
    bottom: 0;

    overflow: hidden;

    border: 8px solid var(--cream);
    border-radius: 160px 160px 16px 16px;

    box-shadow: var(--shadow);
}

.about-stamp {
    width: 135px;
    height: 135px;

    position: absolute;

    top: 60px;
    left: 52%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--wine);
    color: var(--white);

    border: 6px solid var(--cream);
    border-radius: 50%;

    text-align: center;
}

.about-stamp span {
    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.about-stamp strong {
    color: var(--gold-light);

    font-family: var(--font-title);

    font-size: 33px;

    line-height: 1;
}

.about-stamp small {
    margin-top: 5px;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* ==================================================
   TÍTULOS
================================================== */

.section-label {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--wine);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 2.5px;
}

.about-content h2,
.section-header h2 {
    margin-bottom: 25px;

    font-family: var(--font-title);

    font-size: clamp(38px, 4.4vw, 57px);

    line-height: 1.08;
}

.about-content h2 span,
.section-header h2 span {
    color: var(--wine);

    font-style: italic;
}

.about-content > p {
    margin-bottom: 15px;

    color: var(--gray);

    font-size: 15px;

    line-height: 1.85;
}

.about-numbers {
    margin-top: 40px;
    padding-top: 30px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);
}

.about-numbers strong {
    display: block;

    color: var(--wine);

    font-family: var(--font-title);

    font-size: 32px;
}

.about-numbers span {
    color: var(--gray);

    font-size: 11px;
}


/* ==================================================
   CARDÁPIO
================================================== */

.menu-section {
    background: var(--white);
}

.section-header {
    margin-bottom: 45px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;
}

.section-header > p {
    max-width: 420px;

    padding-bottom: 28px;

    color: var(--gray);

    font-size: 14px;

    line-height: 1.8;
}


/* ==================================================
   FILTROS
================================================== */

.menu-filters {
    margin-bottom: 40px;

    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}

.filter-btn {
    min-height: 44px;

    padding: 0 18px;

    display: flex;
    align-items: center;

    gap: 8px;

    background: var(--gray-light);
    color: var(--gray);

    border: 1px solid transparent;
    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;

    transition: 0.25s ease;
}

.filter-btn:hover {
    color: var(--wine);

    border-color: rgba(118, 28, 40, 0.2);
}

.filter-btn.active {
    background: var(--wine);
    color: var(--white);
}


/* ==================================================
   PRODUTOS
================================================== */

.products-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.product-card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);
}

.product-card.hide {
    display: none;
}

.product-image {
    width: 100%;
    height: 235px;

    position: relative;

    overflow: hidden;

    background: var(--gray-light);
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-tag {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 7px 12px;

    background: var(--wine);
    color: var(--white);

    border-radius: 50px;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}

.product-tag.dark {
    background: var(--dark);
}

.product-content {
    padding: 22px;
}

.product-category {
    color: var(--wine);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.product-content h3 {
    margin: 5px 0 10px;

    font-family: var(--font-title);

    font-size: 20px;

    line-height: 1.25;
}

.product-content > p {
    min-height: 58px;

    color: var(--gray);

    font-size: 12px;

    line-height: 1.6;
}

.product-bottom {
    margin-top: 20px;
    padding-top: 17px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    border-top: 1px solid var(--border);
}

.price small {
    display: block;

    margin-bottom: 3px;

    color: #999999;

    font-size: 9px;
}

.price strong {
    color: var(--wine);

    font-size: 18px;
}

.add-cart {
    width: 43px;
    height: 43px;

    min-width: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--wine);
    color: var(--white);

    border-radius: 50%;

    transition: 0.25s ease;
}

.add-cart:hover {
    background: var(--dark);

    transform: rotate(90deg);
}


/* ==================================================
   DELIVERY
================================================== */

.delivery {
    min-height: 580px;

    position: relative;

    display: flex;
    align-items: center;

    background-image:
        url("https://images.unsplash.com/photo-1579751626657-72bc17010498?auto=format&fit=crop&w=1800&q=90");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.delivery-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(83, 13, 24, 0.96) 0%,
            rgba(83, 13, 24, 0.82) 47%,
            rgba(17, 10, 9, 0.27) 100%
        );
}

.delivery-container {
    position: relative;

    z-index: 2;
}

.delivery-content {
    max-width: 600px;
}

.delivery-label {
    color: var(--gold-light);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 2.4px;
}

.delivery h2 {
    margin: 15px 0 20px;

    color: var(--white);

    font-family: var(--font-title);

    font-size: clamp(44px, 5vw, 66px);

    line-height: 1.05;
}

.delivery h2 span {
    display: block;

    color: var(--gold-light);

    font-style: italic;
}

.delivery p {
    max-width: 500px;

    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.7);

    line-height: 1.8;
}

.btn-light {
    background: var(--white);
    color: var(--wine);
}

.btn-light:hover {
    background: var(--gold-light);

    transform: translateY(-3px);
}


/* ==================================================
   CONTATO
================================================== */

.contact {
    background: var(--cream);
}

.contact-heading {
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.contact-card {
    padding: 40px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.contact-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(118, 28, 40, 0.08);
    color: var(--wine);

    border-radius: 50%;
}

.contact-card h3 {
    margin-bottom: 10px;

    font-family: var(--font-title);

    font-size: 22px;
}

.contact-card p {
    color: var(--gray);

    font-size: 13px;

    line-height: 1.7;
}


/* ==================================================
   FOOTER
================================================== */

.footer {
    padding-top: 70px;

    background: var(--dark);
    color: var(--white);
}

.footer-grid {
    padding-bottom: 55px;

    display: grid;

    grid-template-columns: 1.7fr 1fr 1fr 1fr;

    gap: 50px;
}

.footer-logo {
    width: fit-content;

    margin-bottom: 20px;
}

.footer-brand > p {
    max-width: 320px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 13px;

    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 8px;

    color: var(--gold-light);

    font-family: var(--font-title);

    font-size: 16px;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;

    transition: 0.25s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.socials {
    display: flex;

    gap: 9px;
}

.socials a {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;

    transition: 0.25s ease;
}

.socials a:hover {
    background: var(--wine);

    border-color: var(--wine);

    transform: translateY(-3px);
}

.footer-bottom {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;
}

.footer-bottom strong {
    color: var(--gold-light);
}


/* ==================================================
   OVERLAY CARRINHO
================================================== */

.cart-overlay {
    position: fixed;
    inset: 0;

    z-index: 1998;

    background: rgba(0, 0, 0, 0.55);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ==================================================
   CARRINHO
================================================== */

.cart {
    width: min(440px, 100%);
    height: 100%;

    position: fixed;

    top: 0;
    right: 0;

    z-index: 1999;

    display: flex;
    flex-direction: column;

    background: var(--white);

    transform: translateX(100%);

    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);

    transition: transform 0.4s ease;
}

.cart.active {
    transform: translateX(0);
}

.cart-header {
    min-height: 105px;

    padding: 25px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);
}

.cart-header span {
    color: var(--wine);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.cart-header h2 {
    font-family: var(--font-title);

    font-size: 28px;
}

.close-cart {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--gray-light);
    color: var(--dark);

    border-radius: 50%;

    font-size: 17px;

    transition: 0.25s ease;
}

.close-cart:hover {
    background: var(--wine);
    color: var(--white);
}

.cart-items {
    flex: 1;

    padding: 25px 30px;

    overflow-y: auto;
}


/* ==================================================
   CARRINHO VAZIO
================================================== */

.empty-cart {
    min-height: 380px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: var(--gray);

    text-align: center;
}

.empty-cart > div {
    width: 80px;
    height: 80px;

    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--cream);
    color: var(--wine);

    border-radius: 50%;

    font-size: 28px;
}

.empty-cart h3 {
    margin-bottom: 8px;

    color: var(--dark);

    font-family: var(--font-title);

    font-size: 21px;
}

.empty-cart p {
    max-width: 280px;

    font-size: 12px;

    line-height: 1.7;
}


/* ==================================================
   ITEM CARRINHO
================================================== */

.cart-item {
    padding: 17px 0;

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 15px;

    border-bottom: 1px solid var(--border);
}

.cart-item h4 {
    margin-bottom: 5px;

    font-family: var(--font-title);

    font-size: 16px;
}

.cart-item-price {
    color: var(--wine);

    font-size: 12px;
    font-weight: 700;
}

.cart-item-controls {
    margin-top: 12px;

    display: flex;
    align-items: center;

    gap: 8px;
}

.quantity-btn {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--gray-light);

    border-radius: 50%;

    font-size: 11px;

    transition: 0.2s ease;
}

.quantity-btn:hover {
    background: var(--wine);
    color: var(--white);
}

.quantity {
    min-width: 20px;

    text-align: center;

    font-size: 12px;
    font-weight: 700;
}

.remove-item {
    background: transparent;
    color: #a9a3a0;

    font-size: 14px;

    transition: 0.2s ease;
}

.remove-item:hover {
    color: var(--wine);
}


/* ==================================================
   TOTAL CARRINHO
================================================== */

.cart-footer {
    padding: 24px 30px 28px;

    background: var(--white);

    border-top: 1px solid var(--border);
}

.cart-total {
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-total span {
    color: var(--gray);

    font-size: 13px;
}

.cart-total strong {
    color: var(--wine);

    font-family: var(--font-title);

    font-size: 24px;
}

.checkout-btn {
    width: 100%;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    background: #1da851;
    color: var(--white);

    border-radius: 50px;

    font-size: 13px;
    font-weight: 800;

    transition: 0.25s ease;
}

.checkout-btn:hover {
    background: #168b42;
}

.checkout-btn:disabled {
    opacity: 0.45;

    cursor: not-allowed;
}

.cart-footer small {
    display: block;

    margin-top: 10px;

    color: #a29c98;

    font-size: 9px;

    text-align: center;
}


/* ==================================================
   WHATSAPP
================================================== */

.whatsapp-float {
    width: 58px;
    height: 58px;

    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1da851;
    color: var(--white);

    border-radius: 50%;

    font-size: 25px;

    box-shadow: 0 12px 30px rgba(18, 158, 73, 0.28);

    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
}


/* ==================================================
   TOAST
================================================== */

.toast {
    position: fixed;

    left: 50%;
    bottom: 30px;

    z-index: 3000;

    padding: 14px 20px;

    display: flex;
    align-items: center;

    gap: 10px;

    background: var(--dark);
    color: var(--white);

    border-radius: 50px;

    font-size: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, 30px);

    transition: 0.3s ease;
}

.toast.show {
    opacity: 1;
    visibility: visible;

    transform: translate(-50%, 0);
}

.toast i {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1da851;

    border-radius: 50%;

    font-size: 10px;
}


/* ==================================================
   NOTEBOOK
================================================== */

@media (max-width: 1050px) {

    .header-order {
        display: none;
    }

    .nav {
        gap: 22px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}


/* ==================================================
   TABLET / MOBILE
================================================== */

@media (max-width: 800px) {

    .section {
        padding: 80px 0;
    }


    /* HEADER */

    .header-container {
        min-height: 75px;
    }


    /* MENU */

    .menu-toggle {
        display: flex;
    }

    .nav {
        width: 100%;
        height: calc(100vh - 75px);

        position: fixed;

        top: 75px;
        left: 0;

        padding: 45px 5%;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 28px;

        background: var(--cream);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }

    .nav-link,
    .header.scrolled .nav-link {
        color: var(--dark);

        font-family: var(--font-title);

        font-size: 29px;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header.menu-active {
        background: var(--white);
    }

    .header.menu-active .logo-name {
        color: var(--dark);
    }

    .header.menu-active .logo-subtitle {
        color: var(--gray);
    }

    .header.menu-active .logo-icon {
        color: var(--wine);

        border-color: var(--border);
    }

    .header.menu-active .menu-toggle span {
        background: var(--dark);
    }


    /* HERO */

    .hero {
        min-height: 750px;
        height: auto;

        padding: 140px 0 80px;

        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(26, 11, 10, 0.96),
                rgba(39, 13, 15, 0.8)
            );
    }

    .hero-container {
        padding-top: 0;
    }

    .hero h1 {
        font-size: clamp(45px, 13vw, 65px);

        letter-spacing: -1px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-info {
        flex-direction: column;

        gap: 25px;

        margin-top: 40px;
    }

    .scroll-down {
        display: none;
    }


    /* FEATURES */

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        padding: 28px 10px;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .feature:last-child {
        border-bottom: 0;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-images {
        min-height: 510px;
    }

    .about-image-main {
        height: 450px;
    }

    .about-image-small {
        width: 210px;
        height: 260px;
    }

    .about-stamp {
        width: 115px;
        height: 115px;

        left: 58%;
    }


    /* HEADINGS */

    .section-header {
        flex-direction: column;
        align-items: flex-start;

        gap: 5px;
    }

    .section-header > p {
        padding-bottom: 0;
    }


    /* CONTATO */

    .contact-grid {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


/* ==================================================
   CELULAR
================================================== */

@media (max-width: 570px) {

    .container {
        width: 91%;
    }


    /* HEADER */

    .header-container {
        gap: 10px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
    }

    .logo-icon::after {
        width: 31px;
        height: 31px;
    }

    .logo-name {
        font-size: 14px;
    }

    .logo-subtitle {
        font-size: 7px;
    }

    .cart-button {
        width: 42px;
        height: 42px;
    }


    /* HERO */

    .hero {
        min-height: 710px;
    }

    .hero-badge {
        font-size: 10px;
    }

    .hero h1 {
        font-size: clamp(42px, 13.5vw, 56px);
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        flex: 1;

        padding-left: 14px;
        padding-right: 14px;
    }


    /* SOBRE */

    .about-images {
        min-height: 450px;
    }

    .about-image-main {
        width: 83%;
        height: 400px;
    }

    .about-image-small {
        width: 175px;
        height: 225px;

        border-width: 6px;
    }

    .about-stamp {
        width: 102px;
        height: 102px;

        top: 45px;
    }

    .about-stamp strong {
        font-size: 26px;
    }

    .about-numbers {
        gap: 10px;
    }

    .about-numbers strong {
        font-size: 27px;
    }

    .about-numbers span {
        font-size: 9px;
    }


    /* CARDÁPIO */

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 260px;
    }

    .product-content > p {
        min-height: 0;
    }

    .menu-filters {
        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 8px;

       
    }

    .menu-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
    }


    /* DELIVERY */

    .delivery {
        min-height: 520px;
    }

    .delivery h2 {
        font-size: 43px;
    }


    /* CONTATO */

    .contact-card {
        padding: 30px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 22px 0;

        flex-direction: column;
        justify-content: center;

        text-align: center;
    }


    /* CARRINHO */

    .cart-header,
    .cart-items,
    .cart-footer {
        padding-left: 22px;
        padding-right: 22px;
    }


    /* WHATSAPP */

    .whatsapp-float {
        width: 52px;
        height: 52px;

        right: 18px;
        bottom: 18px;

        font-size: 23px;
    }
}


/* ==================================================
   CELULAR PEQUENO
================================================== */

@media (max-width: 390px) {

    .logo-name {
        font-size: 12px;
    }

    .logo-subtitle {
        display: none;
    }

    .hero h1 {
        font-size: 41px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-image-main {
        width: 88%;
    }

    .about-image-small {
        width: 155px;
        height: 200px;
    }

    .about-numbers {
        grid-template-columns: 1fr;
    }

    .about-numbers > div {
        padding: 8px 0;
    }

    .delivery h2 {
        font-size: 38px;
    }

    .nav-link,
    .header.scrolled .nav-link {
        font-size: 26px;
    }
}