/* style.css */

/* Reset e corpo */
body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background-color: #f8f8f8; /* Fundo cinza bem claro para as seções */
  color: #333; /* Cor de texto padrão mais escura para melhor contraste */
  overflow-x: hidden; /* Evita barra de rolagem horizontal indesejada */
}

/* Nova estrutura do cabeçalho e navegação com BRILHO SUAVE */
.top-bar {
    background-color: #e3b750; /* Dourado */
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #700e2a; /* Vinho para todo o texto aqui */
    font-size: 1.1rem;
    position: sticky; /* Fixo no topo ao rolar */
    top: 0;
    z-index: 1000; /* Garante que fique acima de tudo */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

    /* PROPRIEDADES PARA O BRILHO NO TOPO */
    position: relative; /* ESSENCIAL para o ::before */
    overflow: hidden; /* ESSENCIAL para o brilho não vazar */
}

/* Garante que o conteúdo textual da top-bar fique acima do brilho */
.top-bar .nav-left,
.top-bar .main-header-title,
.top-bar .nav-right {
    position: relative; /* Cria um novo contexto de empilhamento */
    z-index: 2; /* Garante que estejam acima do ::before (z-index: 1) */
}


.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%; /* Começa fora da tela à esquerda */
    width: 200%; /* Largura maior para cobrir toda a barra */
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 223, 0, 0.3), /* Dourado mais claro (FFD700) com opacidade reduzida (0.3) */
        rgba(255, 223, 0, 0.2), /* Um pouco mais suave para o centro (0.2) */
        transparent 70%
    );
    transform: skewX(-25deg); /* Inclinação do brilho */
    animation: shine 3s linear infinite; /* Animação: duração, tipo e repetição */
    pointer-events: none; /* Garante que o brilho não interfira com cliques */
    z-index: 1; /* Garante que o brilho apareça acima do fundo, mas abaixo do texto */
}

.top-bar nav {
    display: flex;
    gap: 1.5rem; /* Espaço entre os links */
    background-color: transparent; /* Remove background da nav */
    padding: 0; /* Remove padding da nav */
}

.top-bar nav a {
    color: #700e2a; /* Texto vinho */
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 5px; /* Leve arredondamento */
}

.top-bar nav a:hover {
    color: #fff; /* Texto branco ao passar o mouse */
    background-color: #700e2a; /* Fundo vinho ao passar o mouse */
}

.main-header-title {
    text-align: center;
    font-size: 2.2rem; /* Tamanho maior para o título principal */
    letter-spacing: 2px; /* Mais espaçamento entre letras */
    line-height: 1.2;
    flex-shrink: 0; /* Não permite que encolha */
    white-space: nowrap; /* Impede que quebre linha (ajusta em media query) */
}

.nav-icons {
    display: flex;
    gap: 1rem;
    align-items: center; /* Alinha os ícones verticalmente */
}

/* Estilo para o novo botão de ícone */
.icon-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex; /* Para centralizar a imagem dentro do botão */
    align-items: center;
    justify-content: center;
}

.nav-icons img {
    /* REMOVIDO O FILTER AQUI */
    width: 28px; /* Mantém o tamanho, ajuste se necessário */
    height: 28px; /* Mantém o tamanho, ajuste se necessário */
    transition: transform 0.3s ease;
}

.nav-icons .icon-button:hover img { /* Aplica o hover no botão pai */
    transform: scale(1.1);
}

/* Estilos para a ABA DE NOTIFICAÇÃO e LOGIN (compartilhados) */
.notification-sidebar,
.login-sidebar {
    position: fixed;
    top: 0;
    right: -350px; /* Inicialmente fora da tela */
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    z-index: 1001; /* Acima da top-bar */
    transition: right 0.4s ease-in-out;
    padding: 20px;
    box-sizing: border-box; /* Garante que padding não aumente a largura */
    color: #333;
    overflow-y: auto; /* Adiciona scroll se o conteúdo for muito grande */
}

.notification-sidebar.open,
.login-sidebar.open {
    right: 0; /* Desliza para a tela */
}

.notification-sidebar .close-btn,
.login-sidebar .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #700e2a;
    transition: color 0.3s ease;
}

.notification-sidebar .close-btn:hover,
.login-sidebar .close-btn:hover {
    color: #D4AF37;
}

.notification-sidebar h3,
.login-sidebar h3 {
    color: #700e2a;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #e3b750;
    padding-bottom: 10px;
    text-align: left; /* Alinha o título à esquerda */
}

/* Estilos específicos da Aba de Notificação */
.notification-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification-sidebar li {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.4;
    color: #555;
    text-align: left;
}

.notification-sidebar li:last-child {
    margin-bottom: 0;
}

.notification-sidebar .no-notifications {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-top: 30px;
}

/* Estilos específicos da Aba de Login */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinha labels à esquerda */
}

.login-form label {
    font-size: 1.1rem;
    color: #700e2a;
    margin-bottom: 5px;
    font-weight: bold;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box; /* Garante que padding não aumente a largura */
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    border-color: #e3b750;
    outline: none;
    box-shadow: 0 0 5px rgba(227, 183, 80, 0.5);
}

.login-form .submit-btn {
    background-color: #700e2a;
    color: #D4AF37;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.login-form .submit-btn:hover {
    background-color: #D4AF37;
    color: #700e2a;
}

.login-form .form-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

.login-form .form-text a {
    color: #700e2a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.login-form .form-text a:hover {
    color: #e3b750;
    text-decoration: underline;
}


/* Seção Hero/Carrossel */
.hero-new {
    background: none;
    padding: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin-top: 0;
}

.carousel-container-new {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-bottom: 5px solid #700e2a; /* Borda vinho na parte inferior do carrossel */
}

.carousel-slide-new {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide-item {
    min-width: 100%;
    height: 550px; /* Altura ajustada */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Slide de Fundo Escuro (LUXO CELESTIAL) */
.slide-item.slide-dark-background {
    background-color: #000;
    color: #D4AF37;
}

.slide-item.slide-dark-background .slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.slide-item.slide-dark-background h2 {
    font-size: 3.8rem;
    font-weight: bold;
    color: #D4AF37;
    text-shadow: 0 0 15px rgba(255, 223, 0, 0.7);
    line-height: 1.2;
}

/* Slides com Imagem e Texto (VENHA SABOREAR, DELICADAS POR FORA) */
.slide-item.slide-light-background {
    background-color: #700e2a;
    color: #fff;
    display: flex;
    flex-direction: row;
}

.slide-item.slide-light-background .image-half {
    flex: 0 0 50%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-item.slide-light-background .image-half img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-item.slide-light-background .text-half {
    flex: 0 0 50%;
    background-color: #fff;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 4rem;
    text-align: left;
    border-radius: 10px;
    margin: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slide-item.slide-light-background h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #700e2a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide-item.slide-light-background p {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: normal;
}

.highlight-text-gold {
    color: #D4AF37;
    font-weight: bold;
}

/* Botões de navegação do carrossel (setas) */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 2rem;
  border-radius: 50%;
  z-index: 100;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.carousel-btn:hover {
  background-color: #D4AF37;
  color: #700e2a;
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* Controles do carrossel (Pause/Play e Bolinhas) - AGORA ABAIXO DO CARROSSEL */
.carousel-controls-new {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 20px; /* Adicionado margem para afastar do carrossel */
  padding-bottom: 1rem;
}

/* Botão de pause/play */
.pause-btn {
  background-color: #700e2a;
  color: #D4AF37;
  border: none;
  font-size: 18px;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pause-btn:hover {
  background-color: #D4AF37;
  color: #700e2a;
}

/* Container das bolinhas */
.carousel-dots-new {
  display: flex;
  gap: 12px;
}

/* Bolinha dourada externa */
.carousel-dots-new .dot {
  width: 20px;
  height: 20px;
  background-color: #D4AF37;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carousel-dots-new .dot:hover {
  transform: scale(1.1);
}

/* Bolinha interna vinho */
.carousel-dots-new .inner-dot {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.carousel-dots-new .inner-dot.active {
  background-color: #700e2a;
}

/* Seções de Conteúdo */
.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  color: #700e2a;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

/* Cartões de Torta */
.tartes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.tarte-card {
  background-color: #fff;
  border: 2px solid #700e2a;
  border-radius: 15px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  padding: 1.5rem;
  color: #333;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarte-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.tarte-card img {
  width: 100%;
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
}

.tarte-card h3 {
  color: #700e2a;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.tarte-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
  font-style: italic;
  min-height: 40px; /* Garante altura mínima para alinhamento */
  display: flex;
  align-items: center;
  justify-content: center;
}

.tarte-card .stars {
    color: #D4AF37;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.tarte-card .price-box {
    background-color: #700e2a;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.tarte-card .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

/* Seção de Promoção */
.promo-section {
    background-color: #fff;
    padding-top: 3rem;
}

.promo-off {
    font-size: 4rem;
    font-weight: bold;
    color: #D4AF37;
    margin-top: -1rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

/* Seção de Localização */
.location-section {
    background-color: #f8f8f8;
    padding-bottom: 3rem;
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.map-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    border: 3px solid #700e2a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.map-container img {
    width: 100%;
    height: auto;
    display: block;
}

.address-box {
    background-color: #700e2a;
    color: #fff;
    flex: 0 0 350px;
    padding: 2.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.address-box p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.5;
}

.address-box p:first-of-type {
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
}

.social-title {
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-icons img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.social-icons img:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

/* Rodapé Final (sem brilho) */
footer {
  position: relative;
  background-color: #6D002E;
  color: #D4AF37;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.1rem;
  margin-top: 4rem;
}

/* Animação de brilho (usada apenas na .top-bar) */
@keyframes shine {
  0% {
    left: -60%;
  }
  100% {
    left: 100%;
  }
}

/* Responsividade */
@media (max-width: 992px) {
    .top-bar {
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }
    .top-bar nav {
        width: 100%;
        justify-content: center;
        gap: 1rem;
        margin-top: 0.5rem;
    }
    .main-header-title {
        font-size: 1.8rem;
        text-align: center;
        white-space: normal;
    }

    .slide-item {
        height: auto;
        min-height: 450px;
    }

    .slide-item.slide-light-background {
        flex-direction: column;
    }

    .slide-item.slide-light-background .image-half {
        flex: none;
        width: 100%;
        height: 250px;
    }

    .slide-item.slide-light-background .image-half img {
        border-radius: 10px 10px 0 0;
    }

    .slide-item.slide-light-background .text-half {
        flex: none;
        width: auto;
        padding: 2rem;
        text-align: center;
        align-items: center;
        margin: 1rem;
    }

    .slide-item.slide-light-background h2 {
        font-size: 1.8rem;
    }

    .slide-item.slide-light-background p {
        font-size: 1.2rem;
    }

    .slide-item.slide-dark-background h2 {
        font-size: 2.5rem;
    }

    .carousel-btn {
        padding: 8px 12px;
        font-size: 1.5rem;
    }

    /* Ajuste para controles do carrossel em telas menores */
    .carousel-controls-new {
        margin-top: 15px; /* Ajuste para telas menores */
        padding-bottom: 0.8rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .promo-off {
        font-size: 3rem;
    }

    .location-content {
        flex-direction: column;
        align-items: center;
    }

    .map-container, .address-box {
        width: 90%;
        max-width: 500px;
    }
    .address-box {
        text-align: center;
        align-items: center;
    }
    /* Responsividade da sidebar de notificação e login */
    .notification-sidebar,
    .login-sidebar {
        width: 280px; /* Menor em telas pequenas */
        right: -300px; /* Ajuste para o novo width */
    }
    .notification-sidebar.open,
    .login-sidebar.open {
        right: 0;
    }
}

@media (max-width: 576px) {
    .top-bar {
        padding: 0.8rem;
    }
    .top-bar nav a {
        padding: 0.3rem 0.6rem;
        font-size: 0.9rem;
    }
    .main-header-title {
        font-size: 1.5rem;
    }
    .nav-icons img {
        width: 24px;
        height: 24px;
    }

    .slide-item {
        min-height: 350px;
    }
    .slide-item.slide-dark-background h2 {
        font-size: 1.8rem;
    }
    .slide-item.slide-light-background .text-half {
        padding: 1.5rem;
    }
    .slide-item.slide-light-background h2 {
        font-size: 1.5rem;
    }
    .slide-item.slide-light-background p {
        font-size: 1rem;
    }

    .carousel-btn {
        padding: 5px 8px;
        font-size: 1.2rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }
    .tarte-card {
        padding: 1rem;
        max-width: 280px;
    }
    .tarte-card h3 {
        font-size: 1.4rem;
    }
    .tarte-card p {
        font-size: 0.8rem;
    }
    .tarte-card .price {
        font-size: 1.5rem;
    }
    .promo-off {
        font-size: 2.5rem;
    }
    .social-icons img {
        width: 40px;
        height: 40px;
    }
    footer {
        font-size: 0.9rem;
        padding: 1rem;
    }
}
/* style.css */

/* ... (seu CSS existente) ... */

/* Adicione estes estilos no final do seu arquivo style.css */

/* ========================================================== */
/* ESTILOS ESPECÍFICOS PARA O BOTÃO "FAZER PEDIDO" NO INDEX.HTML (ou cardapio_completo.html) */
.order-button-section {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #f8f8f8; /* Mantenha o fundo padrão da seção */
}

.order-button {
    display: inline-block;
    background-color: #700e2a; /* Vinho */
    color: #D4AF37; /* Dourado */
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid #700e2a; /* Borda inicial */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    letter-spacing: 1px;
}

.order-button:hover {
    background-color: #D4AF37; /* Dourado */
    color: #700e2a; /* Vinho */
    transform: translateY(-5px) scale(1.02);
    border-color: #700e2a; /* Borda ao hover */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}


/* ========================================================== */
/* ESTILOS PARA A PÁGINA cardapio_completo.html */

.menu-full-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #fff; /* Fundo branco para a seção do cardápio completo */
}

.menu-full-section h2 {
    color: #700e2a;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.menu-full-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #e3b750; /* Dourado */
    border-radius: 2px;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    color: #D4AF37; /* Dourado para o título da categoria */
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #700e2a; /* Vinho */
    border-radius: 1.5px;
}

/* ESTILOS PARA A PÁGINA fazer_pedido.html */

.order-page-header {
    background-color: #700e2a; /* Vinho */
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.order-page-header h2 {
    color: #D4AF37; /* Dourado */
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.order-page-header p {
    font-size: 1.5rem;
    opacity: 0.9;
}

.order-form-section {
    background-color: #f8f8f8;
    padding: 3rem 2rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 3rem;
}

.order-item-selection h3,
.order-details-section h3,
.order-summary h3 {
    color: #700e2a; /* Vinho */
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e3b750; /* Dourado */
    padding-bottom: 10px;
    text-align: left;
}

.tartes-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Mais compacto */
    gap: 1.5rem;
    justify-items: center;
}

.selectable-tarte-card {
    background-color: #f9f9f9;
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative; /* Para a label da quantidade */
}

.selectable-tarte-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.selectable-tarte-card img {
    width: 100%;
    height: 120px; /* Altura fixa para as imagens no pedido */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    border: 1px solid #ddd;
}

.selectable-tarte-card h4 {
    color: #700e2a;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.selectable-tarte-card p {
    color: #555;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.selectable-tarte-card input[type="number"] {
    width: 80px; /* Ajuste a largura do input de quantidade */
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    font-size: 1rem;
    -moz-appearance: textfield; /* Remove setas em Firefox */
}

/* Remove setas em Chrome, Safari, Edge */
.selectable-tarte-card input[type="number"]::-webkit-outer-spin-button,
.selectable-tarte-card input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.selectable-tarte-card label {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
    display: block; /* Para a label ficar abaixo do input */
}

/* Detalhes do Pedido */
.order-details-section .form-group {
    margin-bottom: 1.5rem;
}

.order-details-section label {
    display: block;
    font-size: 1.1rem;
    color: #700e2a;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.order-details-section input[type="date"],
.order-details-section input[type="time"],
.order-details-section textarea {
    width: calc(100% - 20px); /* Ajusta para padding */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}

.order-details-section input:focus,
.order-details-section textarea:focus {
    border-color: #e3b750;
    outline: none;
    box-shadow: 0 0 5px rgba(227, 183, 80, 0.5);
}

.order-details-section textarea {
    resize: vertical; /* Permite redimensionar verticalmente */
}

/* Resumo do Pedido */
.order-summary {
    background-color: #f3f3f3;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.order-summary h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.order-summary ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 1.5rem;
}

.order-summary li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.order-summary .total-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #700e2a;
    text-align: right;
    margin-top: 1.5rem;
}

.order-summary .total-price span {
    color: #D4AF37; /* Dourado para o valor total */
}

.submit-order-button {
    background-color: #D4AF37; /* Dourado */
    color: #700e2a; /* Vinho */
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 2rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.submit-order-button:hover {
    background-color: #700e2a; /* Vinho */
    color: #D4AF37; /* Dourado */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}


/* ========================================================== */
/* RESPONSIVIDADE ADICIONAL PARA AS NOVAS PÁGINAS */

@media (max-width: 992px) {
    .order-page-header h2 {
        font-size: 2.8rem;
    }
    .order-page-header p {
        font-size: 1.2rem;
    }
    .order-form {
        padding: 2rem;
    }
    .order-item-selection h3,
    .order-details-section h3,
    .order-summary h3 {
        font-size: 1.8rem;
    }
    .tartes-selection-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .selectable-tarte-card img {
        height: 100px;
    }
    .selectable-tarte-card h4 {
        font-size: 1.1rem;
    }
    .selectable-tarte-card p {
        font-size: 0.9rem;
    }
    .selectable-tarte-card input[type="number"] {
        width: 60px;
        font-size: 0.9rem;
    }
    .submit-order-button {
        padding: 1rem 2rem;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .order-page-header {
        padding: 3rem 1rem;
    }
    .order-page-header h2 {
        font-size: 2.2rem;
    }
    .order-page-header p {
        font-size: 1rem;
    }
    .order-form {
        padding: 1.5rem;
    }
    .order-item-selection h3,
    .order-details-section h3,
    .order-summary h3 {
        font-size: 1.6rem;
    }
    .tartes-selection-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 1rem;
    }
    .selectable-tarte-card {
        padding: 0.8rem;
    }
    .selectable-tarte-card img {
        height: 80px;
    }
    .selectable-tarte-card h4 {
        font-size: 1rem;
    }
    .selectable-tarte-card p {
        font-size: 0.8rem;
    }
    .selectable-tarte-card input[type="number"] {
        width: 50px;
        font-size: 0.8rem;
        padding: 5px;
    }
    .order-details-section label {
        font-size: 1rem;
    }
    .order-details-section input, .order-details-section textarea {
        font-size: 0.9rem;
        padding: 8px;
    }
    .order-summary li {
        font-size: 1rem;
    }
    .order-summary .total-price {
        font-size: 1.5rem;
    }
    .submit-order-button {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .order-form {
        padding: 1rem;
    }
    .order-page-header h2 {
        font-size: 1.8rem;
    }
    .order-page-header p {
        font-size: 0.9rem;
    }
    .order-item-selection h3,
    .order-details-section h3,
    .order-summary h3 {
        font-size: 1.4rem;
    }
    .tartes-selection-grid {
        grid-template-columns: 1fr 1fr; /* 2 colunas em telas muito pequenas */
        gap: 0.8rem;
    }
}