@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    border: none;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
}

html {
    width: 100%;
    height: auto;
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Customização da Barra de Rolagem (Scrollbar) */

/* 1. Largura da barra */
::-webkit-scrollbar {
    width: 10px;
}

/* 2. Fundo da barra (Trilho) */
::-webkit-scrollbar-track {
    background: #121212; 
}

/* 3. A parte que desliza (Puxador) */
::-webkit-scrollbar-thumb {
    background: #ffc506; /* Amarelo Brotei */
    border-radius: 10px;
    border: 2px solid #121212; /* Cria um respiro em volta do amarelo */
}

/* 4. Efeito ao passar o mouse no puxador */
::-webkit-scrollbar-thumb:hover {
    background: white; 
}

/* Estilos de Elementos Flutuantes (Animação Fanta) */

.floating-ingredients {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Atrás de quase tudo, mas visível */
    overflow: hidden;
}

.f-item {
    position: absolute;
    font-size: 4rem; /* Tamanho dos emojis */
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    opacity: 0.5;
    z-index: 1;
    user-select: none;
    display: block;
}

/* Posições Iniciais Estratégicas */
.tomato-1 { top: 15%; left: 5%; font-size: 6rem; }
.leaf-1 { top: 40%; right: 10%; font-size: 4.5rem; }
.tomato-2 { top: 75%; left: 12%; font-size: 5rem; }
.leaf-2 { top: 85%; right: 18%; font-size: 4rem; }
.slice-1 { top: 30%; right: 25%; font-size: 8rem; opacity: 0.2; }
.olive-1 { top: 55%; left: 22%; font-size: 3.5rem; }
.cheese-1 { top: 65%; right: 5%; font-size: 5.5rem; }

/* --- ESTILO DESKTOP (PADRÃO) --- */

/* Menu */

.content {
    width: 100vw;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1f1e1f;
    position: fixed;
    padding: 0 5%;
    z-index: 1000;
}

.logo {
    width: auto;
    height: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.logo h3 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
}

.logo img {
    width: 120px;
    height: auto;
    transition: 0.3s;
}

.logo:hover img {
    transform: rotate(-10px) scale(1.1); /* Efeito divertido ao passar o mouse */
}

.content .list-menu {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.content .list-menu li {
    height: 100%;
    display: flex;
    align-items: center;
}

.content .list-menu li a {
    height: 100%;
    padding: 0 1rem;
    color: white;
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 200ms;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid transparent;
    white-space: nowrap;
}

.content .list-menu li a i {
    font-size: 2rem;
}

.content .list-menu li a:hover{
    background-color: #3333;
    border-bottom: 4px solid #ffc506;
    color: #ffc506;
}

/* Botão Especial Loja Bro */
.content .list-menu li a.btn-loja-bro {
    background-color: #ffc506;
    color: black;
    font-weight: 800;
    border-radius: 5px;
    height: 35px;
    margin: 0 1rem;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: none; 
    transition: all 300ms ease;
    line-height: normal;
    white-space: nowrap;
}

.content .list-menu li a.btn-loja-bro:hover {
    background-color: white !important;
    color: black;
    transform: scale(1.05);
    border-bottom: none;
}

/* Seções Pizzaria */

.first-section {
    height: 100vh;
    background-image: linear-gradient(rgba(29, 29, 29, 0.8), rgba(29 ,29 ,29 ,0.8)) ,url(./img/pizza-with-sliced-sausages-orange-juice.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 50px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#Home {
    scroll-margin-top: 80px;
}

.first-section .conteúdo-principal{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.first-section h1 {
    color: #ffc506;
    font-size: 6rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.first-section h2 {
    color: rgb(177, 177, 177);
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.btn {
    width: 500px;
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
}

.btn a {
    width: 240px;
    height: 60px;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #ffc506;
    border-radius: 10px;
    color: black;
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 400ms ease;
    text-align: center;
    padding: 0 1rem;
}

.btn a:hover {
    border: 1px solid #ffc506;
    background-color: transparent;
    color: #ffc506;
    transform: scale(1.05);
}

/* Sobre nós */
/* Cardápio */

.cardapio {
    padding: 10rem 5%;
    background-color: #121212;
    text-align: center;
}

.section-title-cardapio {
    color: #ffc506;
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 6rem;
    letter-spacing: 2px;
}

.cardapio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cardapio-item {
    background-color: #1f1e1f;
    padding: 3.5rem;
    border-radius: 20px;
    transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 197, 6, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cardapio-item:hover {
    transform: translateY(-15px) scale(1.02);
    border: 1px solid #ffc506;
    box-shadow: 0 20px 40px rgba(255, 197, 6, 0.15);
}

.item-img-placeholder {
    width: 230px;
    height: 230px;
    background-color: transparent;
    border-radius: 50%;
    margin-bottom: 2.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
}

.item-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border: 4px solid transparent;
    transition: border-color 0.3s ease;
}

.cardapio-item:hover .item-img-placeholder img {
    border-color: #ffc506;
}

.cardapio-item h3 {
    color: white;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.cardapio-item p {
    color: #aaa;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    min-height: 4.5rem;
}

.cardapio-item .price {
    display: block;
    color: #ffc506;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.add-to-cart {
    width: 100%;
    padding: 1.8rem;
    background-color: #ffc506;
    color: black;
    font-weight: 800;
    font-size: 1.6rem;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #ffc506;
}

.add-to-cart:hover {
    background-color: transparent;
    color: #ffc506;
    transform: scale(1.05);
}

/* Seção Sobre Nós */
.sobre-nos {
    background-color: #1f1e1f;
    width: 100%;
    padding: 10rem 5%;
    color: white;
}

.main-sobre {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.content-sobre {
    flex: 1;
}

.content-sobre h2 {
    color: #ffc506;
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.content-sobre p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #ccc;
    text-align: justify;
}

.video-sobre {
    flex: 1;
    display: flex;
    justify-content: center;
}

.video-sobre video {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    border: 3px solid #ffc506;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 968px) {
    .main-sobre {
        flex-direction: column;
        text-align: center;
    }
    
    .content-sobre p {
        text-align: center;
    }

    .video-sobre video {
        max-width: 100%;
    }
}
/* Depoimentos */

.depoimentos {
    padding: 10rem 5%;
    background-color: #121212;
    text-align: center;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.depoimento-card {
    background-color: #1f1e1f;
    padding: 4rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 197, 6, 0.1);
}

.stars {
    color: #ffc506;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.depoimento-card p {
    color: #ccc;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.depoimento-card h4 {
    color: white;
    font-size: 1.6rem;
}

/* Footer */

footer {
    background-color: #0d0d0d;
    color: white;
    padding: 8rem 5% 2rem 5%;
    border-top: 2px solid #ffc506;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 6rem;
}

.footer-info img {
    width: 100px;
    margin-bottom: 2rem;
}

.footer-info p {
    color: #ccc;
    font-size: 1.6rem;
}

.footer-links h3, .footer-contact h3 {
    color: #ffc506;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.footer-links ul li {
    margin-bottom: 1.5rem;
}

.footer-links ul li a {
    color: #ccc;
    font-size: 1.6rem;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ffc506;
    padding-left: 1rem;
}

.footer-contact p {
    color: #ccc;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-contact p i {
    color: #ffc506;
    font-size: 2rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 8rem auto 0 auto;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #888;
    font-size: 1.4rem;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ffc506;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 0; /* Começa invisível */
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: white;
    transform: scale(1.1);
}

/* Transição de Página */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    z-index: 9999;
    pointer-events: none;
}

/* Modal de Pedido (Teste) */
.modal-overlay-order {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none; /* Começa escondido */
    align-items: flex-start;
    justify-content: center;
    backdrop-filter: blur(10px);
    overflow-y: auto;
    padding: 4rem 0 calc(2rem + env(safe-area-inset-bottom));
}

.modal-content-order {
    background-color: #1f1e1f;
    width: 90%;
    max-width: 500px;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #ffc506;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 197, 6, 0.2);
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-header-order {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.modal-header-order h2 {
    color: #ffc506;
    font-size: 2.5rem;
    text-transform: uppercase;
}

#close-modal-order {
    background: transparent;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.3s;
}

#close-modal-order:hover {
    color: #ffc506;
    transform: rotate(90deg);
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    color: #ccc;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.input-group input, .input-group textarea, .input-group select {
    width: 100%;
    padding: 1.5rem;
    background-color: #121212;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 1.6rem;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus, .input-group select:focus {
    border-color: #ffc506;
    outline: none;
    box-shadow: 0 0 10px rgba(255, 197, 6, 0.1);
}

.input-group textarea {
    height: 100px;
    resize: none;
}

.order-summary {
    background-color: #121212;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border-left: 4px solid #ffc506;
}

.order-summary p {
    color: #ccc;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.order-summary span {
    color: white;
    font-weight: 700;
}

.submit-order-btn {
    width: 100%;
    padding: 2rem;
    background-color: #ffc506;
    color: black;
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

/* --- ESTILO MOBILE (MENÚ HAMBÚRGUER) --- */

.menu-toggle {
    display: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: 0.3s;
}

.social-mobile {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    html { font-size: 68.75%; }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1002;
        padding: 1rem;
    }

    .list-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 180px;
        height: 100vh;
        background-color: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: center !important;
        padding-top: 8rem;
        padding-bottom: 2.5rem;
        overflow-y: auto;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1001;
        gap: 0.5rem !important;
        box-shadow: -2px 0 15px rgba(0,0,0,0.6);
        display: none; /* Escondido por padrão */
    }

    .list-menu.active {
        right: 0;
        display: flex !important; /* Aparece ao clicar */
    }

    .list-menu li {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .list-menu li a {
        font-size: 1.2rem !important;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        font-weight: 400;
        letter-spacing: 1.2px;
        padding: 1rem 0 !important;
        width: 100%;
        text-align: center;
        border: none !important;
    }

    /* Botão Loja Bro Minimalista de Grife */
    .content .list-menu li a.btn-loja-bro {
        background-color: transparent !important;
        color: #ffc506 !important;
        border: 1px solid #ffc506 !important;
        font-size: 1rem !important;
        font-weight: 600;
        border-radius: 3px;
        height: 28px !important;
        width: 110px !important;
        margin: 1.5rem 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: none !important;
    }

    .social-mobile {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: auto;
        margin-bottom: 2.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.03);
        width: 70%;
    }

    .social-mobile li { width: auto; }

    .social-mobile li a i {
        font-size: 1.6rem !important;
        color: rgba(255, 255, 255, 0.5);
    }

    /* Ajustes Gerais Mobile */
    .content { height: 64px; padding: 0 4%; }
    .logo img { width: 92px; }
    .logo h3 { font-size: 1.9rem; }

    .first-section { padding: 0 4%; }
    .first-section h1 { font-size: 3.6rem; text-align: center; line-height: 1.1; }
    .first-section h2 { font-size: 1.9rem; text-align: center; padding: 0 1.5rem; line-height: 1.35; }
    .btn { width: 90%; flex-direction: column; gap: 1.5rem; margin-top: 3rem; }
    .btn a { width: 100%; height: 50px; font-size: 1.2rem; }

    .cardapio { padding: 8rem 4%; }
    .section-title-cardapio { font-size: 3.2rem; margin-bottom: 4rem; }
    .cardapio-grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .cardapio-item { padding: 2.4rem; }
    .item-img-placeholder { width: 180px; height: 180px; margin-bottom: 2rem; }
    .cardapio-item h3 { font-size: 2.2rem; }
    .cardapio-item p { font-size: 1.4rem; margin-bottom: 2rem; min-height: 0; }
    .cardapio-item .price { font-size: 2.6rem; margin-bottom: 2rem; }
    .add-to-cart { padding: 1.5rem; font-size: 1.4rem; }

    .sobre-nos { padding: 8rem 4%; }
    .main-sobre { gap: 3rem; }
    .content-sobre h2 { font-size: 3.2rem; }
    .content-sobre p { font-size: 1.6rem; }

    .depoimentos { padding: 8rem 4%; }
    .depoimentos-grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .depoimento-card { padding: 2.6rem; }
    .depoimento-card p { font-size: 1.6rem; }

    footer { padding: 6rem 4% 2rem 4%; }
    .footer-content { gap: 3rem; }
    .footer-bottom { margin-top: 4.5rem; padding-top: 2.5rem; }

    .back-to-top { bottom: 18px; right: 18px; width: 46px; height: 46px; font-size: 2.6rem; }

    .modal-content-order { padding: 2rem; border-radius: 16px; }
    .modal-header-order h2 { font-size: 2.1rem; }
    .input-group input, .input-group textarea { padding: 1.2rem; font-size: 1.5rem; }
    .submit-order-btn { padding: 1.6rem; font-size: 1.6rem; }

    .f-item { opacity: 0.28; }
    .slice-1 { opacity: 0.12; }
}

@media (max-width: 480px) {
    html { font-size: 70%; }
    .list-menu { width: 200px; }
    .first-section h1 { font-size: 3.3rem; }
    .first-section h2 { font-size: 1.7rem; }
    .btn { width: 100%; }
    .item-img-placeholder { width: 160px; height: 160px; }
}

@media (max-width: 360px) {
    .list-menu { width: 190px; }
    .logo img { width: 84px; }
    .first-section h1 { font-size: 3.0rem; }
    .cardapio-item { padding: 2.1rem; }
}

.submit-order-btn:hover {
    background-color: white;
    transform: scale(1.02);
}

/* Estilo da Loja Bro */

.bro-body {
    background-color: #0d0d0d;
    color: white;
}

.bro-header {
    background-color: #000 !important;
}

.bro-hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(https://images.unsplash.com/photo-1558769132-cb1aea458c5e?q=80&w=2070&auto=format&fit=crop);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10%;
}

.bro-content h1 {
    font-size: 10rem;
    font-weight: 900;
    line-height: 0.9;
    margin: 2rem 0;
    color: #ffc506;
    text-shadow: 4px 4px 0px rgba(0,0,0,0.3);
}

.bro-content p {
    font-size: 2.2rem;
    color: #ccc;
    max-width: 500px;
    margin-bottom: 4rem;
}

.bro-btns .shop-now {
    background-color: #ffc506;
    color: black;
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 2rem;
}

.bro-btns .drops {
    background-color: transparent;
    color: #ffc506;
    border: 2px solid #ffc506;
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.bro-btns button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 197, 6, 0.2);
}

.tag {
    background-color: #ffc506;
    color: black;
    padding: 0.5rem 1.5rem;
    font-weight: 800;
    font-size: 1.4rem;
    border-radius: 20px;
}

.bro-products {
    padding: 10rem 5%;
}

.section-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.product-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.product-card:hover {
    background-color: #252525;
}

.product-img-placeholder {
    width: 100%;
    height: 350px;
    background-color: #333;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.product-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-card span {
    font-size: 1.8rem;
    color: #ffc506;
    font-weight: 700;
}

/* --- RESPONSIVIDADE (MOBILE) --- */

@media (max-width: 768px) {
    /* Header e Menu */
    .content {
        padding-left: 0;
        justify-content: space-around;
    }

    .content .list-menu {
        display: none; /* Esconde o menu completo no celular */
    }

    /* Seção Principal */
    .first-section h1 {
        font-size: 3.5rem;
        text-align: center;
        padding: 0 1rem;
    }

    .first-section h2 {
        font-size: 1.8rem;
        text-align: center;
        padding: 0 1rem;
    }

    /* Botões um embaixo do outro */
    .btn {
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 0 2rem;
    }

    .btn button {
        width: 100%;
        margin-top: 2rem;
    }

    /* Marca Bro */
    .bro-content h1 {
        font-size: 5rem;
    }

    .bro-hero {
        padding-left: 5%;
        justify-content: center;
        text-align: center;
    }

    .bro-btns {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .bro-btns .shop-now {
        margin-right: 0;
    }

    /* Ajustes Gerais para Telas Pequenas */
    .section-title-cardapio {
        font-size: 3rem;
        margin-bottom: 4rem;
    }

    .cardapio-item {
        padding: 2.5rem;
    }

    .cardapio-item h3 {
        font-size: 2.2rem;
    }

    .cardapio-item .price {
        font-size: 2.5rem;
    }

    .item-img-placeholder {
        width: 180px;
        height: 180px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .first-section h1 {
        font-size: 2.8rem;
    }

    .first-section h2 {
        font-size: 1.5rem;
    }

    .content .logo img {
        width: 90px;
    }

    .content .logo h3 {
        font-size: 1.8rem;
    }
}
