/* ================================================ */
/* RESET - Redefinir estilos padrão do navegador    */
/* ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================================================ */
/* SCROLLBAR - Escondida para um visual mais limpo  */
/* ================================================ */
/* Chrome, Safari e Edge */
::-webkit-scrollbar {
    display: none;
}

/* Firefox */
* {
    scrollbar-width: none;
}

/* IE e Edge antigo */
body {
    -ms-overflow-style: none;
}

/* ================================================ */
/* ESTILOS BASE - Estilos globais                   */
/* ================================================ */
html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    transition: opacity 0.3s ease-in-out;
}

h1, h2, h3, p {
    animation: fadeIn 1.5s ease-out forwards;
}

/* ================================================ */
/* PÁGINA INICIAL - Estilos específicos da home     */
/* ================================================ */
.index-page {
    background: linear-gradient(45deg, #393838, #666565, #393838, #918e8e);
    background-size: 400% 400%;
    animation: gradientAnim 15s ease infinite;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ================================================ */
/* CABEÇALHO - Navegação e branding                 */
/* ================================================ */
header {
    background-color: #333;
    color: #fff;
    padding: 8px 15px;
    display: grid;
    grid-template-areas: "left center right";
    grid-template-columns: auto 1fr auto; 
    align-items: center;
    gap: 15px;
}

.header-left {
    grid-area: left;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0; 
}

.header-title {
    color: #D4AF37;
    font-size: clamp(1rem, 1.6vw + 0.4rem, 1.8rem);
    margin: 0;
    max-width: 420px;
    min-width: 0;              
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    justify-self: start;
}

header .logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
}

/* NAV CENTRO */
nav.nav-centro {
    grid-area: center;
    display: flex;
    justify-content: center;
    justify-self: center;
    width: 100%;
    white-space: nowrap;
}

nav.nav-centro ul {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* NAV DIREITA */
nav.nav-direita {
    grid-area: right;
    display: flex;
    justify-content: flex-end;
    justify-self: end;
}

nav.nav-direita ul {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* LINKS */
nav ul li a {
    color: #f9f9f9;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

nav ul li a:hover {
    color: #D4AF37;
    text-decoration: underline;
}

/* ================================================ */
/* INTRO                                            */
/* ================================================ */
#intro {
    text-align: center;
    padding: 50px 20px;
    background-color: #f0f0f0;
}

#intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ================================================ */
/* SERVIÇOS                                         */
/* ================================================ */
#servicos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
    gap: 20px;
    padding: 20px;
}

#servicos h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3rem;
    color: #000000;
    text-shadow: 2px 2px 6px rgba(193, 193, 32, 0.904);
    text-transform: uppercase;
    font-weight: bold;
}

#servicos .servico {
    width: 300px;
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#servicos .servico:hover {
    transform: scale(1.05);
}

#servicos .servico img {
    width: 80%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
    animation: fadeInUp 1.5s ease-out forwards;
}

#servicos .descricao {
    margin-top: 10px;
    font-size: 1rem;
}

.servicos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================================================ */
/* CATEGORIAS                                       */
/* ================================================ */
#categorias {
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 50px 20px;
  color: #fff;
}

#categorias h2 {
  color: #D4AF37;
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.categorias-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 20px;
}

.categoria {
  background-color: #1a1a1a;
  border-radius: 20px;
  width: 220px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.categoria:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
  text-decoration: none;
}

.categoria .img-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #222;
}

.categoria img {
  width: 70%;
  height: 70%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.categoria:hover img {
  transform: scale(1.05);
}

.categoria h3 {
  color: #D4AF37;
  font-size: 1.1rem;
  margin-top: 12px;
  text-transform: capitalize;
  text-align: center;
}

/* ================================================ */
/* PRODUTOS                                         */
/* ================================================ */
.titulo-produtos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 30px auto;
    text-align: center;
}

.select-categoria {
    padding: 10px 15px;
    font-size: 1rem;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-categoria:hover {
    background-color: #f8f3e7;
}

.produtos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.produto {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.produto-topo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.produto-corpo {
    min-height: 120px;
}

.produto-corpo h3 {
    margin-top: auto;
    font-size: 1.1rem;
    margin: 10px 0;
}

.descricao-produto {
    font-size: 0.95rem;
}

.produto-footer {
    margin-top: auto;
}

.preco {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.2rem;
}

.produto p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.form-adicionar-carrinho {
    margin-top: auto;
}

/* ================================================ */
/* SOBRE                                            */
/* ================================================ */
#sobre {
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
}

.sobre-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 950px;
}

.sobre-info {
    width: 100%;
    max-width: 800px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#sobre .imagem-dona {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

#sobre .imagem-dona img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#sobre .imagem-dona img:hover {
    transform: scale(1.1);
}

#sobre h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease-out forwards;
}

#sobre h3 {
    font-size: 1.5rem;
    margin-top: 20px;
    animation: fadeInUp 1.5s ease-out forwards;
}

#sobre p {
    font-size: 1rem;
    line-height: 1.6;
    animation: fadeInUp 1.5s ease-out forwards;
}

#sobre .descricao strong {
    color: #d4af37;
}

#sobre .nome-dona {
    font-size: 30px;
    font-weight: bold;
    color: #D4AF37;
    display: block;
    text-align: left;
}

#sobre ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

#sobre ul li {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    color: #444;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1.5s ease-out forwards;
}

#sobre ul li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background-color: #D4AF37;
    border-radius: 3px;
}

#sobre .descricao {
    animation: fadeInUp 1.5s ease-out forwards;
}

/* ================================================ */
/* CONTACTO & MAPA                                  */
/* ================================================ */
.contacto {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.contacto h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contacto p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
}

#contacto {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

#contacto h1, #contacto > p {
    text-align: center;
    width: 100%;
}

.informacoes-contacto {
    text-align: left;
    width: 100%;
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.informacoes-contacto h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.informacoes-contacto ul {
    list-style: none;
    padding: 0;
}

.informacoes-contacto li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.informacoes-contacto a {
    color: #007BFF;
    text-decoration: none;
}

.informacoes-contacto a:hover {
    text-decoration: underline;
}

.mapa {
    width: 100%;
    margin: 30px auto;
    display: flex;
    justify-content: center;
}

.mapa iframe {
    width: 100%;
    min-height: 500px;
    border-radius: 8px;
    border: none;
}

/* ================================================ */
/* HORÁRIOS                                         */
/* ================================================ */
.horarios {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.horarios h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.horarios ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    color: white;
}

.horarios ul li {
    margin-bottom: 10px;
}

.horarios ul li strong {
    color: #f1b32d;
}

/* ================================================ */
/* BOTÕES & CTAs                                    */
/* ================================================ */
.cta-button {
    background-color: #d4af37;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #b08d28;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Botão de compra dentro do produto */
.produto .cta-button {
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
    margin-top: auto;
}

#btn-voltar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

#btn-voltar:hover {
    background-color: #f79c42;
}

/* ================================================ */
/* AGENDAMENTO & FUNCIONÁRIOS                       */
/* ================================================ */
.funcionarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.card-funcionario {
    border: 2px solid #eee;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: #fff;
}

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

.card-funcionario.selecionado {
    border-color: #D4AF37;
    background: #fdfaf7;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    background: #D4AF37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    font-weight: bold;
}

.btn-selecionar-func {
    margin-top: 10px;
    background: #D4AF37;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.secao-agendamento {
    display: none;
}

.secao-agendamento.ativa {
    display: block;
}

/* ================================================ */
/* ALERTAS & COMPONENTES FLUTUANTES                 */
/* ================================================ */
.alerta-desconto {
    background-color: #f79c42;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.5s, transform 0.5s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alerta-desconto.show {
    opacity: 1;
    transform: translateY(0);
}

.close-alert {
    font-weight: bold;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 10px;
    background: none;
    border: none;
    color: white;
    transition: color 0.3s;
}

.close-alert:hover {
    color: #e68a2e;
}

.carrinho-panel {
    width: 280px;
    right: -280px;
}

.carrinho-btn {
    top: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 14px;
}

/* ================================================ */
/* REDES SOCIAIS                                    */
/* ================================================ */
.redes-sociais {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.social-icon {
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon:hover {
    color: #D4AF37;
}

.social-icon i {
    font-size: 1.8rem;
}

.instagram i {
    color: #E1306C;
}

.instagram:hover {
    color: #E1306C;
}

.facebook i {
    color: #1877F2;
}

.facebook:hover {
    color: #1877F2;
}

/* ================================================ */
/* FOOTER                                           */
/* ================================================ */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
    margin-top: auto;
}

/* ================================================ */
/* ANIMAÇÕES                                        */
/* ================================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes gradientAnim {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ================================================ */
/* LAZY LOADING                                     */
/* ================================================ */
img[data-src] {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-color: #f0f0f0;
}

img.loaded {
    opacity: 1;
}

/* ================================================ */
/* MEDIA QUERIES - Responsividade                   */
/* ================================================ */

@media (max-width: 1024px) {
    .header-title {
        font-size: 2rem;
    }
    nav ul {
        gap: 15px;
    }
    nav ul li a {
        font-size: 16px;
    }
    .servicos-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        padding: 0 20px;
    }
    #servicos .servico {
        width: 100%;
    }
}

@media (max-width: 900px) {
    header {
        display: flex;
        align-items: center;
        padding: 10px;
    }
    .header-title { max-width: 220px; }
    nav.nav-centro {
        position: static;
        transform: none;
        top: auto;
        left: auto;
        justify-self: center;
        margin-left: 20px;
        margin-right: 20px;
        white-space: normal;
        gap: 10px;
    }
    nav.nav-direita {
        position: static;
        transform: none;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        padding: 10px;
    }
    header .logo img {
        max-width: 80px;
        height: 80px;
        margin: 10px 0;
    }
    .header-title {
        font-size: 1.8rem;
        flex-basis: 100%;
        text-align: center;
        order: 2;
    }
    nav {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }
    nav ul {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    nav ul li a {
        font-size: 14px;
    }
    #intro {
        padding: 30px 15px;
    }
    #intro h1 {
        font-size: 2rem;
    }
    #intro p {
        font-size: 1rem;
    }
    #servicos h2 {
        font-size: 2.2rem;
    }
    .servicos-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        padding: 0 10px;
    }
    #sobre {
        padding: 30px 15px;
    }
    .sobre-container {
        width: 90%;
    }
    #sobre h2 {
        font-size: 2rem;
    }
    #sobre h3 {
        font-size: 1.8rem;
    }
    #sobre p {
        font-size: 0.95rem;
    }
    #sobre ul {
        grid-template-columns: 1fr;
    }
    #sobre .imagem-dona img {
        width: 100px;
        height: 100px;
        max-width: 80%;
    }
    .contacto {
        padding: 30px 15px;
    }
    .contacto h1 {
        font-size: 2rem;
    }
    .mapa iframe {
        min-height: 350px;
    }
    .categoria {
      width: 180px;
      padding: 15px;
    }
    .categoria .img-container {
      width: 120px;
      height: 120px;
    }
    .produto {
        width: 90%;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 14px;
    }
    header {
        padding: 8px;
    }
    header .logo img {
        max-width: 60px;
        height: 60px;
    }
    .header-title {
        font-size: 1.5rem;
        padding-left: 5px;
    }
    nav ul {
        gap: 8px;
    }
    nav ul li a {
        font-size: 12px;
    }
    #intro {
        padding: 20px 10px;
    }
    #intro h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    #intro p {
        font-size: 0.95rem;
    }
    #servicos {
        margin-top: 20px;
        padding: 10px;
    }
    #servicos h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .servicos-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }
    #servicos .servico {
        padding: 12px;
        width: 100%;
    }
    #servicos .servico img {
        width: 90%;
    }
    .descricao {
        font-size: 0.9rem;
    }
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    #sobre {
        padding: 20px 10px;
    }
    .sobre-container {
        width: 95%;
        padding: 15px;
    }
    #sobre h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    #sobre h3 {
        font-size: 1rem;
        margin-top: 15px;
    }
    #sobre p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    #sobre .imagem-dona {
        flex-direction: column;
        gap: 10px;
    }
    #sobre .imagem-dona img {
        width: 80px;
        height: 80px;
    }
    #sobre .nome-dona {
        font-size: 22px;
        text-align: center;
    }
    #sobre ul {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 15px;
    }
    #sobre ul li {
        padding: 15px;
        font-size: 1rem;
    }
    .contacto {
        padding: 20px 10px;
    }
    .contacto h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .contacto p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .informacoes-contacto {
        padding: 15px;
        margin: 20px auto;
    }
    .informacoes-contacto h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    .informacoes-contacto li {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .mapa {
        margin: 20px auto;
    }
    .mapa iframe {
        min-height: 300px;
    }
    .horarios {
        padding: 15px;
        margin-top: 15px;
    }
    .horarios h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    .horarios ul {
        padding: 0;
    }
    .horarios li {
        padding: 8px 0;
        font-size: 0.95rem;
    }
    .select-categoria {
        padding: 8px 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 5px;
    }
    header .logo img {
        max-width: 50px;
        height: 50px;
        margin: 5px 0;
    }
    .header-title {
        font-size: 1.2rem;
        padding: 0;
        margin: 5px 0;
    }
    nav {
        width: 100%;
        margin-top: 5px;
    }
    nav ul {
        gap: 5px;
    }
    nav ul li a {
        font-size: 11px;
    }
    #intro {
        padding: 15px 8px;
    }
    #intro h1 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    #intro p {
        font-size: 0.9rem;
    }
    #servicos h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .servicos-container {
        gap: 10px;
        padding: 0;
    }
    #servicos .servico {
        padding: 10px;
        margin: 0 5px;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    #sobre {
        padding: 15px 8px;
    }
    .sobre-container {
        width: 100%;
        padding: 10px;
        margin: 15px 0;
    }
    #sobre h2 {
        font-size: 1.2rem;
    }
    #sobre h3 {
        font-size: 0.95rem;
    }
    #sobre p {
        font-size: 0.85rem;
    }
    .contacto {
        padding: 15px 8px;
    }
    .contacto h1 {
        font-size: 1.2rem;
    }
    .informacoes-contacto {
        padding: 10px;
    }
    .mapa iframe {
        min-height: 250px;
    }
    .carrinho-panel {
        width: 100%;
    }
    .carrinho-btn {
        top: 8px;
        right: 8px;
        padding: 6px 10px;
        font-size: 11px;
    }
    .titulo-produtos {
        gap: 10px;
        margin: 20px auto;
    }
    .select-categoria {
        width: 90%;
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}