/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: #2d2d2d;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000; /* garante que fique acima dos outros elementos */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* opcional, só pra dar um sombreamento bonito */
}


.textos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #3d3d3d;
    margin: 0;
}

header p {
    font-size: 15px;
    font-weight: 600;
    color: #3d3d3d;
    margin: 0;
}

#logo {
    width: 70px;
    margin-right: 1rem;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ff2d00;
    text-align: left;
    margin-bottom: 1.5rem;
    padding-bottom: 5px;
}

.button-container {
    margin-left: auto;
}

#notification-btn {
    background-color: transparent;
    color: #2d2d2d;
    font-size: 30px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

#notification-btn:hover {
    transform: scale(1.2);
    color: #ff2d00;
}

#notification-count {
    background-color: #ff2d00;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 50%;
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
}

#notification-btn.shake {
    animation: shake 1.0s infinite;
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
    100% { transform: rotate(0deg); }
}

main {
    max-width: 1367px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Contêiner da seção */
.menu-section {
    margin-bottom: 40px;
}

/* Cabeçalho da sessão */
.section-header {
    margin-bottom: 20px;
}

/* Título da sessão */
.section-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #ff2d00;
    text-align: center;
}

/* Contêiner dos itens do menu */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.5rem;
}

/* Estilo do contêiner dos itens */
.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Duas colunas de largura igual */
    gap: 1.5rem; /* Espaçamento entre os itens */
    padding: 1rem;
}

/* Estilo dos itens */
.item {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: 6rem 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.75rem 1rem;
    align-items: start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.item img {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 0.75rem;
}

.item-info {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-left: 20px;
}

.item-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.item-info p {
    font-size: 14px;
    color: #666;
}

.item-price {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    text-align: right;
}

.item-price span {
    font-size: 18px;
    font-weight: 700;
    color: #ff2d00;
    display: block;
    margin-bottom: 0.75rem;
}

.item button {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    background-color: #ff2d00;
    color: #fff;
    border: none;
    padding: 0.75rem;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.item button:hover {
    background-color: #e63900;
}

/* Estilo Geral para Botões */
button {
    background-color: #ff2d00;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #e63900;
}

#cart-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.2s ease;
    font-size: 2rem;
}

#cart-icon:hover {
    transform: scale(1.05);
}

#cart-count {
    
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff2d00;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

#cart-container {
    position: fixed;
    top: 0px;
    right: 20px;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 100vh;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

#cart-container h2 {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

#cart-items {
    list-style: none;
    margin-bottom: 20px;
}

#cart-items li {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

#cart-items .item-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

#cart-items .item-actions button {
    background-color: #666;
    padding: 0.25rem 0.5rem;
    font-size: 12px;
}

#cart-container p {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0.75rem 0;
}

#cart-container h4 {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
    font-weight: normal;
    text-align: center;
}

.house-burger-link {
    color: #0026ff;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.house-burger-link:hover {
    color: #ffcc00;
    text-decoration: underline;
}

#distance-result {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

#cart-container label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

#cart-container textarea {
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    background-color: #fafafa;
    transition: border-color 0.2s ease;
    resize: vertical;
}

#cart-container textarea:focus {
    border-color: #ff2d00;
    outline: none;
}

#cart-container .button-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

#cart-container button {
    width: 100%;
}

/* Modal de Customização */
#customization-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#customization-modal .modal-content {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 28rem;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#customization-modal h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff2d00;
    margin-bottom: 1rem;
    text-align: center;
}

#customization-modal .highlight-item {
    color: #ff2d00;
    font-weight: 600;
}

#custom-options .custom-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #2d2d2d;
}

#custom-options .quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#custom-options .quantity-controls button {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    padding: 0; /* Remove qualquer padding que possa deslocar o texto */
}

#customization-modal p {
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    margin: 0.5rem 0;
}

/* Estilização dos textos de ajuda e importante */
#customization-modal .help-text,
#customization-modal .important-text {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

#customization-modal .help-text {
    background-color: #f0f7ff;
    border: 1px solid #d6e9ff;
    color: #0056b3;
}

#customization-modal .important-text {
    background-color: #fff3e6;
    border: 1px solid #ffd9b3;
    color: #e65100;
}

#customization-modal .icon {
    flex-shrink: 0;
    fill: currentColor;
}

/* Modal de Bebidas */
#drink-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#drink-modal .modal-content {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 28rem;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#drink-modal h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff2d00;
    margin-bottom: 1rem;
    text-align: center;
}

#drink-modal .highlight-item {
    color: #ff2d00;
    font-weight: 600;
}

#drink-options label {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    font-size: 0.875rem;
    color: #2d2d2d;
}

#drink-options input[type="radio"] {
    margin-right: 0.5rem;
}

#drink-options button{
    width: 100%;
    margin-top: 10px;
}

/* Modal de Finalização */
#finalize-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#finalize-modal-content {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    width: 90%;
    height: 100%;
    max-width: 28rem;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#finalize-modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff2d00;
    margin-bottom: 1rem;
    text-align: center;
}

#finalize-modal-content p {
    font-size: 0.875rem;
    color: #666;
    margin: 0.5rem 0;
}

#finalize-modal-content label {
    font-size: 0.875rem;
    color: #2d2d2d;
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: block;
}

#finalize-modal-content input[type="text"],
#finalize-modal-content input[type="tel"],
#finalize-modal-content select,
#finalize-modal-content textarea {
    padding: 0.75rem;
    font-size: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    width: 100%;
    background-color: #fafafa;
    transition: border-color 0.2s ease;
}

#finalize-modal-content input[type="text"]:focus,
#finalize-modal-content input[type="tel"]:focus,
#finalize-modal-content select:focus,
#finalize-modal-content textarea:focus {
    border-color: #ff2d00;
    outline: none;
}

#finalize-modal-content textarea {
    resize: vertical;
}

#finalize-modal-content .button-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

#finalize-modal-content button:first-of-type {
    background-color: #ff2d00;
}

#finalize-modal-content button:last-of-type {
    color: #ffffff;
    background-color: #ff2d00;

}

#finalize-modal-content button:first-of-type:hover {
    background-color: #e63900;
}

#finalize-modal-content button:last-of-type:hover {
    background-color: #e63900;
}

/* Modal de Frete */
#modal-frete {
    display: none;
    position: fixed;
    z-index: 9000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

#modal-frete .modal-content {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 36rem;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

#modal-frete .close-modal-frete {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3.0rem;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
}

#modal-frete .close-modal-frete:hover {
    color: #ff2d00;
}

#modal-frete h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff2d00;
    margin-bottom: 1rem;
    text-align: center;
}

#modal-frete p {
    font-size: 0.875rem;
    color: #666;
    margin: 0.5rem 0;
}

#modal-frete #frete-resultado-modal {
    margin: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d2d2d;
    text-align: center;
}

#modal-frete #endereco-sugestoes {
    max-height: 15rem;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    background-color: #fff;
    position: absolute;
    width: 90%;
    z-index: 200;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#modal-frete .sugestao {
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #2d2d2d;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#modal-frete .sugestao:hover {
    background-color: #f7fafc;
}

#modal-frete #endereco-input,
#modal-frete #numero-input,
#modal-frete #complemento-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease;
}

#modal-frete #endereco-input:focus,
#modal-frete #numero-input:focus,
#modal-frete #complemento-input:focus {
    border-color: #ff2d00;
    outline: none;
}

#modal-frete button {
    width: 30%;
    margin-top: 10px;
}

#modal-frete #map {
    width: 100%;
    height: 20rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* Estilização dos textos de ajuda e importante */
#modal-frete .help-text,
#modal-frete .important-text {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

#modal-frete .help-text {
    background-color: #f0f7ff;
    border: 1px solid #d6e9ff;
    color: #0056b3;
}

#modal-frete .important-text {
    background-color: #fff3e6;
    border: 1px solid #ffd9b3;
    color: #e65100;
}

#modal-frete .icon {
    flex-shrink: 0;
    fill: currentColor;
}

/* Modal de Notificação */
#modal-notification {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
}

#modal-notification .modal-content {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 28rem;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: auto;
}

#modal-notification h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff2d00;
    margin-bottom: 1rem;
    text-align: center;
}

#modal-notification .notification-item {
    background-color: #f7fafc;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #2d2d2d;
}

#modal-notification .notification-item button {
    padding: 0.5rem 1rem;
}

#modal-notification .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
}

#modal-notification .close-btn:hover {
    color: #ff2d00;
}

/* Rodapé */
footer {
    background-color: #ffffff;
    color: #000000;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 10px;
}

footer a {
    color: #ff2d00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #e63900;
}

#clearCacheBtn {
    padding: 0.75rem 1.5rem;
}

#clearCacheBtn:hover {
    background-color: #e63900;
}

/* Popup */
.popup {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    z-index: 1000;
    display: none;
    text-align: center;
}

/* Frete */
.frete-container {
    margin: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.frete-container button {
    padding: 0.75rem 1.5rem;
}

.frete-container #frete-result {
    font-size: 14px;
    color: #666;
}

#frete-info {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    text-align: right;
    width: 100%;
}

/* Categoria */
nav {
    background-color: #ffffff;
    padding: 10px 0;
    text-align: center;
    width: 100%; /* Garante que o nav ocupe apenas a largura disponível */
    overflow-x: hidden; /* Evita que o conteúdo transborde para fora */
    box-sizing: border-box; /* Inclui padding na largura total */
    margin-top: 100px;
}

nav, nav * {
    user-select: none;
}

nav ul {
    list-style: none;
    padding: 0 5px; /* Reduz o padding lateral para telas menores */
    margin: 10px 0; /* Ajusta a margem para consistência */
    display: flex;
    justify-content: flex-start; /* Alinha à esquerda com rolagem */
    gap: 10px;
    flex-wrap: nowrap; /* Mantém os itens em uma linha */
    overflow-x: auto; /* Permite rolagem horizontal */
    scrollbar-width: auto; /* Esconde a barra de rolagem no Firefox */
    width: 100%; /* Garante que o ul respeite a largura do nav */
    box-sizing: border-box; /* Inclui padding na largura total */

}

nav ul::-webkit-scrollbar {
    display: auto; /* Esconde a barra de rolagem no Chrome/Safari */
}

nav ul li {
    flex: 0 0 auto; /* Permite que os itens tenham largura automática */
    min-width: 100px; /* Reduz a largura mínima para telas menores */
    max-width: 250px; /* Limita a largura máxima para evitar itens muito largos */
    white-space: nowrap; /* Impede que o texto quebre em várias linhas */
    overflow: hidden; /* Esconde texto que ultrapasse o limite */
    text-overflow: ellipsis; /* Adiciona "..." se o texto for cortado */
}

nav ul li button {
    background: transparent;
    color: #ff2d00;
    padding: 5px;
    transition: background-color 0.3s ease;
    font-size: 18px;
    width: 100%; /* O botão ocupa a largura do li */
    box-sizing: border-box; /* Inclui padding na largura total */
    border: none; /* Remove borda padrão do botão */
    cursor: pointer; /* Adiciona cursor de clique */
    text-align: center; /* Centraliza o texto no botão */
}

nav ul li button:hover {
    color: #b12c00;
    background: transparent;
}

@media (max-width: 480px) {
    nav {
        padding: 5px 0; /* Reduz o padding vertical */
    }

    nav ul {
        padding: 0 5px;
        gap: 8px; /* Reduz o espaçamento entre itens */
        scrollbar-width: none; /* Esconde a barra de rolagem no Firefox */

    }
    nav ul::-webkit-scrollbar {
        display: none; /* Esconde a barra de rolagem no Chrome/Safari */
    }

    nav ul li {
        min-width: 80px; /* Reduz ainda mais a largura mínima */
        max-width: 250px; /* Limita a largura máxima para evitar itens muito largos */
    }

    nav ul li button {
        font-size: 16px; /* Reduz o tamanho da fonte */
        padding: 0.5rem; /* Reduz o padding do botão */
    }
}

.modal-status {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.modal-content p {
    color: #007a10;
    text-align: center;
}

.close {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

#status {
    cursor: pointer;
}

.floating-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    font-size: 16px;
    text-align: center;
    z-index: 9999;
    border-bottom: 2px solid #f5c6cb;
    box-sizing: border-box;
}

.floating-message button {
    padding: 0;
}

.floating-message button:hover {
    color: #d9534f;
}

a {
    color: #000;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

a i {
    font-size: 20px;
    margin-right: 8px;
}

a:hover {
    color: #ff2d00;
}

/* Tutorial */
.tutorial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow-y: auto;
}

.tutorial-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.tutorial-content h2 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #ff2d00;
    font-weight: 600;
    text-align: center;
}

.tutorial-content p {
    margin: 12px 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tutorial-content ul {
    text-align: left;
    margin: 12px 0;
    padding-left: 18px;
}

.tutorial-content li {
    margin: 8px 0;
    color: #444;
    font-size: 0.95rem;
}

.tutorial-content button {
    background-color: #2ecc71;
    margin-top: 20px;
}

/* Animação */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#address-label {
    display: block;
    font-size: 0.875rem;
    color: #2d2d2d;
    background-color: #f7fafc;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    margin-bottom: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    header { justify-content: flex-start; }
    header h1 { font-size: 30px; }
    header p { font-size: 20px; }
    #logo { width: 70px; }
    h2 { font-size: 30px; text-align: center; }
    #notification-btn { font-size: 35px; }
    #notification-count { font-size: 18px; padding: 4px 8px; top: 10px; right: 0px; }
    main { padding: 20px 10px; }
    .menu-items { grid-template-columns: 1fr; }
    .item {
        grid-template-columns: 5rem 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.5rem;
    }
    .item img { width: 5rem; height: 5rem; }
    .item-info h3 { font-size: 25px; }
    .item-info p { font-size: 18px; }
    .item-price { grid-column: 2 / 3; grid-row: 2 / 3; text-align: left; }
    .item-price span { font-size: 25px; text-align: left; }
    .item button { grid-column: 1 / 3; grid-row: 3 / 4; font-size: 20px; padding: 1rem; }
    #cart-icon { bottom: 20px; right: 15px; width: 80px; height: 80px; font-size: 35px; }
    #cart-count { width: 30px; height: 30px; font-size: 20px; }
    #cart-container { top: 0; right: 0; width: 100vw; height: 100vh; padding: 20px; border-radius: 0; box-shadow: none; max-width: none; max-height: none; }
    #cart-container h2 { font-size: 30px; }
    #cart-items li { font-size: 20px; }
    #cart-items .item-actions button { font-size: 15px; padding: 6px 10px; }
    #cart-container p { font-size: 25px; }
    #cart-container h4 { font-size: 20px; }
    #cart-container label { font-size: 20px; }
    #cart-container textarea { font-size: 20px; }
    #customization-modal .modal-content,
    #drink-modal .modal-content,
    #finalize-modal-content,
    #modal-frete .modal-content,
    #modal-notification .modal-content,
    .modal-status .modal-content,
    .tutorial-content {
        width: 100vw;
        height: 100%;
        max-width: none;
        border-radius: 0;
        padding: 1rem;
    }
    #customization-modal h2,
    #drink-modal h2,
    #finalize-modal-content h3,
    #modal-frete h2,
    #modal-notification h2 { font-size: 2rem; }
    #custom-options .custom-option,
    #drink-options label,
    #finalize-modal-content p,
    #finalize-modal-content label,
    #modal-frete p,
    #modal-frete .sugestao,
    #modal-frete #endereco-input,
    #modal-frete #numero-input,
    #modal-frete #complemento-input,
    #modal-notification .notification-item { font-size: 1.25rem; }
    #modal-frete #frete-resultado-modal { font-size: 1.75rem; }
    #customization-modal p { font-size: 1.25rem; }
    .footer-container { flex-direction: column; text-align: center; }
    .footer-column { padding: 10px 0; }
    .carousel { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
    .carousel::-webkit-scrollbar { display: none; }
    .slide { width: 100%; }
    .slide::before { top: 10%; left: 50%; transform: translateX(-50%); padding: 0px; font-size: 25px; max-width: 90%; }
    .popup { top: 10px; padding: 8px 16px; font-size: 14px; }
    .house-burger-link { color: #002fff; }
    .house-burger-link:hover { color: #0066ff; }
    .modal-content { width: 90%; padding: 20px; }
    .close { font-size: 1.5rem; top: 5px; right: 10px; }
    .floating-message { font-size: 20px; padding: 10px; }
    .floating-message button { font-size: 30px; top: 10px; right: 5px; }

    #modal-frete #map {
        width: 100%;
        height: 400px;
        border-radius: 0.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    header { padding: 10px; }
    header h1 { font-size: 24px; }
    header p { font-size: 16px; }
    #logo { width: 70px; }
    h2 { font-size: 26px; }
    #notification-btn { font-size: 35px; right: 15px; }
    #notification-count { font-size: 14px; }
    main { padding: 15px 5px; }
    .item {
        grid-template-columns: 100px 1fr auto; /* Imagem | Texto | Preço+Botão */
        grid-template-rows: auto auto; /* Linha 1: Título, Linha 2: Descrição */
        gap: 0.5rem;
        align-items: center;
    }
    .item img {
        width: 100px;
        height: 100px;
        grid-column: 1 / 2;
        grid-row: 1 / 3; /* Imagem ocupa as duas linhas à esquerda */
    }
    .item-info {
        grid-column: 2 / 3;
        grid-row: 1 / 2; /* Título na primeira linha */
    }
    .item-info h3 { font-size: 20px; }
    .item-info p {
        font-size: 16px;
        grid-column: 2 / 3;
        grid-row: 2 / 3; /* Descrição na segunda linha */
    }
    .item-price {
        grid-column: 3 / 4;
        grid-row: 1 / 3; /* Preço e botão ocupam as duas linhas à direita */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end; /* Alinha preço e botão à direita */
        gap: 0.5rem;
    }
    .item-price span {
        font-size: 20px;
        font-weight: bold;
        display: inline; /* Valores na mesma linha */
        margin-right: 0.5rem;
    }
    .item button {
        font-size: 18px;
        padding: 0.75rem;
        width: auto; /* Botão com largura automática */
    }
    #cart-icon { width: 60px; height: 60px; font-size: 30px; }
    #cart-count { width: 25px; height: 25px; font-size: 16px; }
    #cart-container { padding: 15px; }
    #cart-container h2 { font-size: 25px; }
    #cart-items li { font-size: 18px; }
    #cart-items .item-actions button { font-size: 14px; }
    #cart-container p { font-size: 20px; }
    #cart-container h4 { font-size: 16px; }
    #cart-container label { font-size: 18px; }
    #cart-container textarea { font-size: 18px; }
    #customization-modal h2,
    #drink-modal h2,
    #finalize-modal-content h3,
    #modal-frete h2,
    #modal-notification h2 { font-size: 1.75rem; }
    #custom-options .custom-option,
    #drink-options label,
    #finalize-modal-content p,
    #finalize-modal-content label,
    #modal-frete p,
    #modal-frete .sugestao,
    #modal-frete #endereco-input,
    #modal-frete #numero-input,
    #modal-frete #complemento-input,
    #modal-notification .notification-item { font-size: 1rem; }
    #modal-frete #frete-resultado-modal { font-size: 1.5rem; }
    #customization-modal p { font-size: 1rem; }
    .popup { padding: 6px 12px; font-size: 12px; }
    .modal-content { width: 95%; max-width: 350px; padding: 15px; }
    .close { font-size: 3.0rem; top: 3px; right: 5px; }
    .floating-message { font-size: 14px; padding: 8px; }
    .floating-message button { font-size: 20px; }

    #modal-frete button{
        width: 100%;
        margin-top: 10px;
    }

    /* Estilo dos itens */
    .item {
        background-color: #fff;
        border-radius: 1rem;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        width: 100%;
    }

    .item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .item img {
        width: 50%;
        height: auto;
        max-height: 150px;
        object-fit: cover;
        border-radius: 0.75rem;
        margin: 0 auto;
    }  

    .item-info {
        margin: 0;
    }

    .item-info h3 {
        font-size: 18px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 0.25rem;
    }

    .item-info p {
        font-size: 14px;
        color: #666;
    }

    .item-price {
        text-align: right;
    }

    .item-price span {
        font-size: 18px;
        font-weight: 600;
        color: #ff2d00;
        display: block;
        margin-bottom: 0.75rem;
    }

    .item button {
        background-color: #ff2d00;
        color: #fff;
        border: none;
        padding: 0.75rem;
        border-radius: 15px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.2s ease;
        width: 100%;
    }

    .item button:hover {
        background-color: #e63900;
    }

}

@media (min-width: 769px) and (max-width: 1024px) {
    .carousel { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
    .carousel::-webkit-scrollbar { display: none; }
    .slide { width: calc(50% - 20px); }
    .slide::before { top: 10%; left: 50%; transform: translateX(-50%); padding: 0px; font-size: 25px; max-width: 90%; }
}

@media (min-width: 1025px) and (max-width: 1366px) {
    .carousel { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
    .carousel::-webkit-scrollbar { display: none; }
    .slide { width: calc(25% - 20px); }
}

@media (min-width: 1367px) {
    header { padding: 30px; }
    header h1 { font-size: 32px; }
    header p { font-size: 18px; }
    #logo { width: 80px; }
    h2 { font-size: 28px; }
    #notification-btn { font-size: 35px; }
    #notification-count { font-size: 14px; }
    main { max-width: 1400px; padding: 50px 30px; }

    .item img { width: 120px; height: 120px; }
    .item-info h3 { font-size: 20px; }
    .item-info p { font-size: 16px; }
    .item-price span { font-size: 20px; }
    .item button { font-size: 16px; padding: 1rem; }

    .burger-dia-item img { width: 120px; height: 120px; }
    .burger-dia-item-info h3 { font-size: 20px; }
    .burger-dia-item-info p { font-size: 16px; }
    .burger-dia-item-price span { font-size: 20px; }
    .burger-dia-item button { font-size: 16px; padding: 1rem; }

    #cart-icon { width: 80px; height: 80px; font-size: 2.5rem; }
    #cart-count { width: 20px; height: 20px; font-size: 12px; }
    #cart-container { max-width: 400px; padding: 30px; }
    #cart-container h2 { font-size: 24px; }
    #cart-items li { font-size: 16px; }
    #cart-items .item-actions button { font-size: 14px; }
    #cart-container p { font-size: 18px; }
    #cart-container h4 { font-size: 14px; }
    #cart-container label { font-size: 16px; }
    #cart-container textarea { font-size: 16px; }
    #customization-modal .modal-content,
    #drink-modal .modal-content,
    #finalize-modal-content { max-width: 32rem; padding: 2rem; }
    #modal-frete .modal-content { max-width: 60%; padding: 2rem; }
    #modal-notification .modal-content,
    .modal-status .modal-content,
    .tutorial-content { max-width: 32rem; padding: 2rem; }
    #customization-modal h2,
    #drink-modal h2,
    #finalize-modal-content h3,
    #modal-frete h2,
    #modal-notification h2 { font-size: 1.75rem; }
    #custom-options .custom-option,
    #drink-options label,
    #finalize-modal-content p,
    #finalize-modal-content label,
    #modal-frete p,
    #modal-frete .sugestao,
    #modal-frete #endereco-input,
    #modal-frete #numero-input,
    #modal-frete #complemento-input,
    #modal-notification .notification-item { font-size: 1rem; }
    #modal-frete #frete-resultado-modal { font-size: 1.5rem; }
    #customization-modal p { font-size: 1rem; }
    .popup { padding: 12px 24px; font-size: 16px; }
    .carousel { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
    .carousel::-webkit-scrollbar { display: none; }
    .slide { width: calc(16.66% - 20px); }
    a { font-size: 20px; height: 50px; }
    a i { font-size: 24px; }
    .modal-content { max-width: 450px; padding: 35px; }
    .close { font-size: 2.5rem; }
    .floating-message { font-size: 18px; padding: 20px; }
    .floating-message button { font-size: 20px; }
}

#pix-key {
    font-weight: bold;
    color: #333;
}

.popup-pix {
    display: none; /* Escondido por padrão */
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
}
.popup-pix.success {
    border: 2px solid #4CAF50;
}
.popup-pix.error {
    border: 2px solid #f44336;
}
.popup-pix button {
    margin-top: 10px;
    background-color: #4CAF50;
}
.popup-pix button:hover {
    background-color: #45a049;
}


/* Estilo dos itens do burger do dia ============================================================================================== */
.burger-dia-item {
    background-color: #ff2d00;
    border-radius: 1rem;
    padding: 1rem;
    display: none; /* Esconde por padrão */
    grid-template-columns: 6rem 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.75rem 1rem;
    align-items: start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Estilo padrão para itens ativos */
.burger-dia-item.active {
    display: grid; /* Mostra o item ativo com o layout grid */
}

.burger-dia-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.burger-dia-item img {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 10rem;
    height: 10rem;
    object-fit: cover;
    border-radius: 0.75rem;
}

.burger-dia-item-info {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-left: 70px;
}

.burger-dia-item-info h3 {
    font-size: 25px;
    font-weight: 600;
    color: #ffe600;
    margin-bottom: 0.25rem;
}

.burger-dia-item-info p {
    font-size: 14px;
    color: #ffffff;
}

.burger-dia-item-price {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    text-align: right;
}

.burger-dia-item-price span {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 0.75rem;
}

.burger-dia-item button {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    background-color: #ffe600;
    color: #ff2d00;
    border: none;
    padding: 0.75rem;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.burger-dia-item button:hover {
    background-color: #ffffff;
}
/* Media query para telas menores que 768px */
@media (max-width: 768px) {
    .burger-dia-item {
        background-color: #ff2d00;
        border-radius: 1rem;
        padding: 1rem;
        display: none; /* Mantém escondido por padrão */
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.75rem;
        align-items: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        width: 100%;
    }

    .burger-dia-item.active {
        display: grid; /* Mostra apenas o item ativo */
    }

    /* Restante do CSS permanece igual */
    .burger-dia-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .burger-dia-item img {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        width: 15rem;
        height: 15rem;
        object-fit: cover;
        border-radius: 0.75rem;
        margin: 0 auto;
    }

    .burger-dia-item-info {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        margin-left: 0;
        text-align: center;
    }

    .burger-dia-item-info h3 {
        font-size: 26px;
        font-weight: 600;
        color: #ffe600;
        margin-bottom: 0.25rem;
    }

    .burger-dia-item-info p {
        font-size: 14px;
        color: #ffffff;
    }

    .burger-dia-item-price {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        text-align: center;
    }

    .burger-dia-item-price span {
        font-size: 22px;
        font-weight: 600;
        color: #ffffff;
        display: block;
        margin-bottom: 0.75rem;
    }

    .burger-dia-item button {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        background-color: #ffe600;
        color: #ff0000;
        border: none;
        padding: 0.75rem;
        border-radius: 15px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.2s ease;
        width: 100%;
    }

    .burger-dia-item button:hover {
        background-color: #ffffff;
    }
}

/* Sem Burger do Dia ====================================================================================================== */
/* Estilo específico para o item "Sem Burger do Dia Hoje" quando ativo */
.burger-dia-item.no-burger.active {
    display: flex; /* Usa flex apenas quando ativo */
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%; /* Opcional, dependendo do contêiner pai */
    background-color: #696969;

}

.burger-dia-item.no-burger.active .burger-dia-item-info {
    margin: 0; /* Remove margens indesejadas */
}

.burger-dia-item-info h3 {
    font-size: 26px;
    font-weight: 600;
    color: #ffe600;
    margin-bottom: 0.25rem;
}

.burger-dia-item-info p {
    font-size: 14px;
    color: #ffffff;
}

/* Modal PIX ====================================================================================================== */
#pix-modal {
    display: none; /* Oculto por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

#pix-modal .modal-content {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    text-align: center;
    border-radius: 8px;
    /* Remove a margem padrão e deixa o flexbox do pai centralizar */
    margin: 0;
    /* Opcional: adiciona flexbox interno para centralizar o conteúdo, se necessário */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.close-modal-pix {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    /* Ajuste para não interferir no alinhamento central */
    position: absolute;
    top: 10px;
    right: 15px;
}

.close-modal-pix:hover,
.close-modal-pix:focus {
    color: black;
    text-decoration: none;
}

/* Estilo dos itens do Promoções ============================================================================================== */
.promocao-item {
    background-color: #141414;
    border-radius: 1rem;
    padding: 1rem;
    display: none; /* Esconde por padrão */
    grid-template-columns: 6rem 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.75rem 1rem;
    align-items: start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Estilo padrão para itens ativos */
.promocao-item.active {
    display: grid; /* Mostra o item ativo com o layout grid */
}

.promocao-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.promocao-item img {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 10rem;
    height: 10rem;
    object-fit: cover;
    border-radius: 0.75rem;
}

.promocao-item-info {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-left: 70px;
}

.promocao-item-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ff2d00;
    margin-bottom: 0.25rem;
}

.promocao-item-info p {
    font-size: 14px;
    color: #ffffff;
}

.promocao-item-price {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    text-align: right;
}

.promocao-item-price span {
    font-size: 18px;
    font-weight: 700;
    color: #ff2d00;
    display: block;
    margin-bottom: 0.75rem;
}

.promocao-item button {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    background-color: #ff2d00;
    color: #fff;
    border: none;
    padding: 0.75rem;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.promocao-item button:hover {
    background-color: #e63900;
}
/* Media query para telas menores que 768px */
@media (max-width: 768px) {
    .promocao-item {
        background-color: #141414;
        border-radius: 1rem;
        padding: 1rem;
        display: none; /* Mantém escondido por padrão */
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.75rem;
        align-items: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        width: 100%;
    }

    .promocao-item.active {
        display: grid; /* Mostra apenas o item ativo */
    }

    /* Restante do CSS permanece igual */
    .promocao-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .promocao-item img {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        width: 15rem;
        height: 15rem;
        object-fit: cover;
        border-radius: 0.75rem;
        margin: 0 auto;
    }

    .promocao-item-info {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        margin-left: 0;
        text-align: center;
    }

    .promocao-item-info h3 {
        font-size: 22px;
        font-weight: 600;
        color: #ff2d00;
        margin-bottom: 0.25rem;
    }

    .promocao-item-info p {
        font-size: 14px;
        color: #ffffff;
    }

    .promocao-item-price {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        text-align: center;
    }

    .promocao-item-price span {
        font-size: 22px;
        font-weight: 600;
        color: #ff2d00;
        display: block;
        margin-bottom: 0.75rem;
    }

    .promocao-item button {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        background-color: #ff2d00;
        color: #fff;
        border: none;
        padding: 0.75rem;
        border-radius: 15px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.2s ease;
        width: 100%;
    }

    .promocao-item button:hover {
        background-color: #e63900;
    }
}

/* Rodapé flutuante */
.floating-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999; /* Fica acima do footer normal */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer-icon {
    height: 50px;
    width: auto;
}


.footer-icon:hover {
    transform: scale(1.1);
}

/* Espaço para não cobrir o conteúdo do footer existente */
footer {
    padding-bottom: 80px; /* Ajusta conforme a altura do floating-footer */
}
