/* --- GLOBAL STYLES & TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto:wght@400;500&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden; /* Evita scrolls horizontais indesejados no mobile */
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: #111827;
    letter-spacing: -0.5px;
    font-weight: 700;
}

/* --- PRELOADER (SLIDE UP) --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

#preloader.fade-out {
    transform: translateY(-100%);
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #f97136;
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.55, 0.055, 0.675, 0.19) infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #f97136;
    font-size: 1.2em;
    animation: pulse 1.5s infinite ease-in-out;
}

/* --- HEADER (STICKY & MODERN) --- */
.cabecalho {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.cabecalho.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.container-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cabecalho .logo {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
}

.cabecalho h1 {
    margin: 0;
    font-size: 1.5em;
    color: #f97136;
}

.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .nav-desktop a {
        text-decoration: none;
        color: #4b5563;
        font-weight: 600;
        margin: 0 15px;
        transition: color 0.3s ease;
        position: relative;
    }

    .nav-desktop a:hover {
        color: #f97136;
    }
}

.header-acoes .btn-pedir-agora {
    background-color: #f97136;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.header-acoes .btn-pedir-agora:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.5);
}

.header-acoes .btn-pedir-agora:active,
.btn-adicionar:active,
.botao-principal:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(249, 115, 22, 0.2);
}

@media (max-width: 768px) {
    .container-header {
        padding: 0 15px;
    }

    .cabecalho h1 {
        font-size: 1.2em;
    }

    .logo-container {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .cabecalho {
        padding: 10px 0;
    }

    .cabecalho h1 {
        font-size: 0.95em;
        white-space: nowrap;
    }

    .header-acoes .btn-pedir-agora {
        padding: 8px 16px;
        font-size: 0.9em;
    }

    .cabecalho .logo {
        width: 35px;
        height: 35px;
    }

    .logo-container {
        gap: 6px;
    }
}

/* --- HERO SECTION --- */
.hero {
    background: none;
    position: relative;
    overflow: hidden;
    height: 55vh;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.hero-conteudo {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-conteudo h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-conteudo p {
    font-size: 1.2em;
    opacity: 0.95;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* --- SEARCH & FILTERS (FLOATING) --- */
.busca-e-filtros {
    margin-top: -70px;
    margin-bottom: 80px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.container-busca {
    position: relative;
    margin-bottom: 20px;
}

.container-busca i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-85%);
    color: #f97136;
    font-size: 1.3em;
    z-index: 5;
    pointer-events: none;
}

#input-busca {
    width: 100%;
    padding: 15px 15px 15px 55px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1.1em;
    outline: none;
    transition: all 0.3s;
    background-color: white;
}

#input-busca:focus {
    border-color: #f97136;
    box-shadow: 0 0 0 4px rgba(249, 113, 54, 0.1);
}

/* --- CATEGORY CARDS (REINFORCED) --- */
.menu-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 40px !important;
    width: 100%;
}

.card-categoria {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 40px 30px !important;
    text-align: center !important;
    text-decoration: none !important;
    color: #1f2937 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s !important;
    border: 2px solid transparent !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.card-categoria:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(249, 113, 54, 0.15) !important;
    border-color: #f97136 !important;
}

.card-cat-img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 25px !important;
    font-size: 3.5em !important;
    color: white !important;
    transition: transform 0.3s !important;
}

.card-categoria h3 {
    font-size: 1.8em !important;
    margin: 0 0 10px 0 !important;
    color: #1f2937 !important;
    font-weight: 700 !important;
}

.card-categoria p {
    color: #6b7280 !important;
    margin: 0 !important;
    font-size: 1.1em !important;
}

.card-categoria:hover .card-cat-img {
    transform: scale(1.1);
}

#input-busca {
    width: 100%;
    padding: 18px 20px 18px 65px !important;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1.1em;
    outline: none;
    transition: all 0.3s ease;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

#input-busca:focus {
    border-color: #f97136;
    box-shadow: 0 0 0 4px rgba(249, 113, 54, 0.1);
}

.filtros-categoria {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: center;
    /* Desktop default */
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll iOS */
}

@media (max-width: 600px) {
    .filtros-categoria {
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.filtros-categoria::-webkit-scrollbar {
    display: none;
}

.btn-filtro {
    background-color: #f3f4f6;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: #4b5563;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1em;
    white-space: nowrap;
    /* Prevent text wrap */
    flex-shrink: 0;
    /* Prevent button shrinking */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-filtro.ativo,
.btn-filtro:hover {
    background-color: #f97136;
    color: white;
    box-shadow: 0 4px 12px rgba(249, 113, 54, 0.4);
    transform: translateY(-2px);
}

/* --- PRODUCT CARDS (PREMIUM) --- */
.container-principal {
    padding: 0 20px 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
}

.secao-cardapio {
    padding: 60px 0;
}

.categoria {
    margin-bottom: 60px;
    border-bottom: 1px dashed #e5e7eb;
    padding-bottom: 40px;
    content-visibility: auto; /* Otimização de renderização (apenas renderiza quando visível) */
    contain-intrinsic-size: 1px 500px;
}

.categoria:last-child {
    border: none;
    margin-bottom: 0;
}

.categoria h3 {
    font-size: 2em;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.categoria h3 i {
    color: #f97136;
    background: #fff7ed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
}

.lista-produtos,
.lista-produtos-destaque,
.lista-produtos-promocao {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {

    .lista-produtos,
    .lista-produtos-destaque {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lista-produtos {
        grid-template-columns: repeat(2, 1fr);
    }
}

.produto {
    background: white;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    will-change: transform; /* Aceleração de hardware */
}

.produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
    border-color: rgba(249, 113, 54, 0.2);
}

.produto img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background-color: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
    .produto {
        flex-direction: row;
        align-items: center;
        padding: 25px;
    }

    .produto img {
        width: 140px;
        height: 140px;
        object-fit: contain;
        background-color: #f8fafc;
        flex-shrink: 0;
    }
}

.produto-info {
    flex: 1;
    text-align: left;
}

.produto-info h4 {
    font-size: 1.4em;
    margin-bottom: 8px;
}

.produto-info p {
    color: #6b7280;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 0;
}

.produto-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

@media (min-width: 640px) {
    .produto-footer {
        flex-direction: column;
        width: auto;
        align-items: flex-end;
        gap: 15px;
        margin-top: 0;
        margin-left: 20px;
    }
}

.produto-preco {
    font-size: 1.4em;
    font-weight: 800;
    color: #f97136;
}

/* Shared button styles */
.produto-acoes button,
.botao-principal {
    background: linear-gradient(135deg, #f97136 0%, #ea580c 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(249, 113, 54, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button Circle (+ Add) */
.produto-acoes button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.4em;
}

.produto-acoes button:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 25px rgba(249, 113, 54, 0.5);
}

/* Button Main (Pill/Text) */
.botao-principal {
    width: auto;
    height: auto;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.botao-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 113, 54, 0.6);
}

.produto-promocao {
    background: #fff;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(249, 113, 54, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 2px solid #fff7ed;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-img-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.promo-bg-blur {
    position: absolute;
    top: -15%;
    left: -15%;
    width: 130%;
    height: 130%;
    background-size: cover;
    background-position: center;
    filter: blur(25px) brightness(0.65);
    transform: scale(1.15);
    z-index: 1;
}

.produto-promocao .promo-img-wrapper img {
    position: relative;
    z-index: 2;
    max-width: 92%;
    max-height: 92%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.produto-promocao:hover .promo-img-wrapper img {
    transform: scale(1.04);
}

@media (max-width: 640px) {
    .promo-img-wrapper {
        height: 280px;
    }
}

.produto-promocao .produto-info {
    width: 100%;
}

.produto-promocao::before {
    content: 'OFERTA';
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    backdrop-filter: blur(4px);
    color: white;
    padding: 7px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85em;
    letter-spacing: 1px;
    box-shadow: 0 6px 15px rgba(255, 71, 87, 0.4);
}

.banner-wpp-ofertas {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.2);
    flex-wrap: wrap;
    gap: 20px;
}

.banner-wpp-ofertas a {
    background: white;
    color: #128C7E;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.banner-wpp-ofertas a:hover {
    transform: scale(1.05);
}

/* --- EMPTY CART STATE --- */
.carrinho-vazio {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carrinho-vazio i {
    font-size: 4em;
    color: #e5e7eb;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.carrinho-vazio p {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 20px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- CART FOOTER --- */
.rodape-carrinho {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    z-index: 1000;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .rodape-carrinho {
        padding: 15px 20px;
    }

    .carrinho-info {
        font-size: 0.95em;
        gap: 10px;
    }
}

.carrinho-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1em;
    font-weight: 500;
}

.carrinho-contador {
    background-color: #dc2626;
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 0.8em;
    margin-left: 8px;
    vertical-align: middle;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

/* Modals & Forms */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.modal-content {
    background: white;
    padding: 35px;
    border-radius: 30px;
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

@keyframes modalPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.escondido {
    display: none !important;
}

.modal-overlay.escondido {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

.modal-conteudo {
    background: white;
    padding: 0;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
    }
}

.modal-cabecalho {
    padding: 25px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-cabecalho h2 {
    margin: 0;
    font-size: 1.5em;
    color: #1f2937;
}

.btn-fechar {
    background: none;
    border: none;
    font-size: 1.8em;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.btn-fechar:hover {
    color: #ef4444;
}

.modal-corpo-form,
.modal-corpo-confirmacao,
.lista-opcionais,
.lista-itens-carrinho,
.modal-upsell-conteudo {
    padding: 25px;
}

.opcional-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.opcional-item:last-child {
    border-bottom: none;
}

.opcional-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex: 1;
}

.opcional-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #f97136;
}

.opcional-preco {
    font-weight: 600;
    color: #f97136;
    font-size: 0.9em;
}

/* --- CART ITEMS --- */
.item-carrinho {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
    animation: fadeIn 0.3s ease;
}

.item-carrinho:last-child {
    border-bottom: none;
}

.item-carrinho img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background-color: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.item-info {
    flex: 1;
}

.item-info p {
    margin: 0;
    font-weight: 600;
    color: #374151;
}

.item-acoes {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    padding: 5px;
    border-radius: 50px;
}

.item-acoes button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: white;
    cursor: pointer;
    font-weight: bold;
    color: #f97136;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.item-acoes button:hover {
    transform: scale(1.1);
    background: #f97136;
    color: white;
}

.item-acoes span {
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    font-size: 0.9em;
}

.modal-rodape {
    padding: 25px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

input[type="text"],
input[type="tel"],
input[type="time"] {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1em;
    margin-bottom: 15px;
    box-sizing: border-box;
    transition: all 0.3s;
}

input:focus {
    border-color: #f97136;
    background: #fffcfb;
}

.form-grupo label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-grupo-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 400px) {
    .form-grupo-horizontal {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
}

.toast {
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #10b981;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- TESTIMONIALS SECTION --- */
.secao-avaliacoes {
    padding: 80px 20px;
    background-color: #f3f4f6;
    text-align: center;
}

.secao-avaliacoes h2 {
    margin-bottom: 40px;
    font-size: 2em;
}

.container-avaliacoes {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .container-avaliacoes {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-avaliacao {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.card-avaliacao:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-avaliacao p {
    font-size: 1em;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    flex-grow: 1;
}

.autor-avaliacao {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.autor-avaliacao img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f97136;
}

.autor-avaliacao span {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.1em;
}

/* --- FOOTER --- */
.rodape-informativo {
    background-color: #1f2937;
    color: white;
    padding: 60px 20px 130px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
    margin-top: auto;
}

@media (min-width: 768px) {
    .rodape-informativo {
        grid-template-columns: repeat(3, 1fr);
        padding: 80px 10%;
        text-align: left;
    }
}

.rodape-coluna h4 {
    color: #f97136;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.rodape-coluna p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 10px;
}

.redes-sociais {
    display: flex;
    gap: 15px;
}

.redes-sociais a {
    color: white;
    font-size: 1.5em;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.redes-sociais a:hover {
    background: #f97136;
    transform: translateY(-3px);
}

#btn-login-admin:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-color: white !important;
}

.pagamento-opcoes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .pagamento-opcoes {
        grid-template-columns: 1fr;
    }
}

.radio-pagamento {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.radio-pagamento input {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #f97136;
}

.radio-pagamento:hover {
    border-color: #f97136;
    background: #fffafa;
}

.radio-pagamento.selecionado {
    border-color: #f97136;
    background: #fff7ed;
}

#campo-troco {
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease;
}

textarea#input-observacao {
    width: 100%;
    min-height: 80px;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1em;
    resize: vertical;
    margin-top: 8px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

textarea#input-observacao:focus {
    outline: none;
    border-color: #f97136;
    background: #fffcfb;
}

.btn-enviar-final {
    width: 100%;
    margin-top: 10px;
}

.input-erro {
    border-color: #ef4444 !important;
    background-color: #fef2f2 !important;
    animation: shake 0.4s ease-in-out;
}

/* Aviso de Demanda */
.aviso-demanda {
    margin: 0 25px 20px 25px;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .aviso-demanda {
        margin: 0 15px 15px 15px;
        font-size: 0.85em;
        padding: 10px;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}