/********** Template CSS - VERSÃO FINAL COM TUDO AUMENTADO **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

/* Aumento Geral do Corpo do Site */
body {
    font-size: 18px;
}

.ff-secondary {
    font-family: 'Pacifico', cursive;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button - AUMENTADO ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    transition: .5s;
    padding: 12px 25px;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square { width: 45px; height: 45px; }
.btn-sm-square { width: 35px; height: 35px; }
.btn-lg-square { width: 55px; height: 55px; }

/*** Navbar - AUMENTADA ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 18px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        font-size: 17px;
    }
}

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** LINKS DE CONTATO (WHATSAPP E INSTAGRAM) - GIGANTES ***/
.link-neutro {
    font-size: 24px !important; 
    font-weight: 800 !important; 
    color: #333 !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-bottom: 10px !important;
}

.link-neutro i {
    font-size: 28px !important; 
    margin-right: 8px !important;
}

/*** Footer - AUMENTADO ***/
.footer .btn.btn-social {
    margin-right: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
    font-size: 20px;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 8px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 19px; 
    font-weight: 600;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "FontAwesome";
    margin-right: 10px;
}

/* --- MELHORIA DO RESUMO DO ITEM E CARRINHO --- */
.titulo-popup, .modal-title {
    font-size: 22px !important; /* Título bem grande */
    font-weight: 800 !important;
    color: #000 !important;
    margin-bottom: 10px !important;
}

.conteudo-popup, .modal-body p {
    font-size: 18px !important; /* Texto dos ingredientes maior */
    color: #444 !important;
    line-height: 1.5 !important;
}

.nome-produto {
    font-size: 18px !important; /* Nome do lanche no carrinho */
    font-weight: 700 !important;
    color: #333 !important;
}

.valor-item-maior {
    font-size: 22px !important; /* Preço em destaque */
    color: #27ae60 !important; /* Verde chamativo */
    font-weight: 800 !important;
}

/* Botão de "Adicionar" ou "Finalizar" */
.btn-primary, .botao-carrinho, .btn-success {
    font-size: 19px !important;
    font-weight: bold !important;
    height: 52px !important;
    border-radius: 12px !important;
}

@media (max-width: 768px) {
    .link-neutro {
        font-size: 22px !important;
        display: block !important;
        text-align: center;
    }
}
