/* -------------------- VARIÁVEIS & RESET -------------------- */
:root {
    --purple: #a11881;
    --purple-dark: #a11881;
    --accent: #ffd300;
    --accent-hover: #ffd700;
    --dark: #111119;
    --muted: #bbb;
    --light-bg: #faf7fc;
    --radius: 12px;
    --ifood-color: #ea1d2c;
    --anotaai-color: #00a651;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Texto Geral: Montserrat */
body {
    font-family: "Montserrat", sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: 70px;
    display: flex; flex-direction: column; min-height: 100vh;
    overflow-x: hidden;
}

/* Títulos / Destaques: Montserrat com peso "Black/ExtraBold" igual à arte */
h1, h2, h3, h4 { 
    font-family: "Montserrat", sans-serif; 
    font-weight: 800; /* Peso muito grosso */
    line-height: 1.2; 
    letter-spacing: -0.5px; /* Junta um pouquinho as letras para dar mais impacto */
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; position: relative; }

/* -------------------- HEADER -------------------- */
.site-header {
    background: var(--purple);
    color: #fff;
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    height: 70px;
    display: flex; align-items: center;
}

.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.header-left-group { display: flex; align-items: center; gap: 15px; }
.brand img { height: 45px; width: auto; }
.main-nav ul { display: flex; gap: 1.5rem; align-items: center; }

/* Menus e Navegação: Poppins */
.main-nav a { 
    font-family: "Poppins", sans-serif;
    color: #fff; font-weight: 500; font-size: 0.95rem; 
    padding: 0.5rem 0.8rem; border-radius: 6px; 
}
.main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,0.1); color: var(--accent); font-weight: 600;}

/* -------------------- ALINHAMENTO DO HEADER (MOBILE) -------------------- */
@media (max-width: 768px) {
  .header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .mobile-toggle {
    position: absolute !important;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important;
    z-index: 99; /* Garante que fica clicável por cima de outros elementos */
  }
}

/* -------------------- MODO ESCURO & ELEGÂNCIA (DARK MODE) -------------------- */
.section-dark-1 { background-color: #111119; color: #fff; padding: 5rem 0; }
.section-dark-2 { background-color: #1a1a24; color: #fff; padding: 5rem 0; }
.section-purple { background-color: var(--purple); color: #fff; padding: 5rem 0; }
.section-ouvidoria { background-color: var(--accent); padding: 3rem 0; text-align: center; }

.section-dark-1 .section-title, 
.section-dark-2 .section-title, 
.section-purple .section-title { color: #fff; }
.text-muted { color: #bbb; font-weight: 600;}
.text-accent { color: var(--accent); }

/* Cards Escuros */
.card-dark { 
    background: #222; color: #eee; 
    border-top: 4px solid var(--accent); border-radius: var(--radius); 
    padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
}
.card-dark h3 { color: var(--accent); margin-bottom: 1.5rem; border-bottom: 1px solid #333; padding-bottom: 0.5rem; font-weight: 800; text-transform: uppercase;}
.card-dark li { border-bottom: 1px solid #333; padding: 0.8rem 0; display: flex; justify-content: space-between; }
.card-dark li:last-child { border-bottom: none; }

/* Delivery Dark Box */
.delivery-dark { 
    background: transparent; border: 2px dashed #fff; margin-top: 4rem; 
    padding: 2.5rem; border-radius: var(--radius); text-align: center; 
}

/* FAQ Escuro */
.faq-dark .faq-item { border-bottom-color: #333; }
.faq-dark summary { color: var(--accent); font-family: "Poppins", sans-serif; }
.faq-dark .faq-content { color: #bbb; }

/* Botão Ouvidoria */
.btn-ouvidoria { background: #000; color: var(--accent); }
.btn-ouvidoria:hover { background: #222; color: var(--accent-hover); transform: translateY(-2px); }

/* Ajustes de Botões de Contato */
.btn-small { padding: 0.4rem 0.8rem; font-size: 0.75rem; }
.flex-center { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* -------------------- BOTÕES (POPPINS) -------------------- */
.btn {
    font-family: "Poppins", sans-serif;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 0.8rem 1.5rem; border-radius: 8px;
    font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px;
    border: none; cursor: pointer; transition: all 0.3s; white-space: nowrap;
    text-decoration: none;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.btn-primary { background: var(--accent); color: var(--purple-dark); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.6); padding: 0.5rem 1rem; }
.btn-outline:hover { background: #fff; color: var(--purple); border-color: #fff; }
.btn-outline.btn-delivery:hover { background-color: #222; color: #ffffff; border-color: var(--purple); }

.contact-grid .btn-outline {padding: 0.5rem 0.4rem;}
.contact-grid .text-muted {margin-bottom: 20px;}

.btn-ifood { background: var(--ifood-color); color: #fff; }
.btn-ifood:hover { background: #c0121f; color: #fff; }
.btn-anotaai { background: var(--purple-dark); color: #fff; border: 1px solid var(--accent); }
.btn-anotaai:hover { background: var(--accent); color: var(--purple-dark); }

/* -------------------- HERO -------------------- */
.hero {
    min-height: 85vh; display: flex; align-items: center; position: relative; color: #fff;
    background-image: url('banner-hero-2.webp'); background-size: cover; background-position: center;
    margin-top: -70px; padding-top: 70px;
}
.hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(74, 18, 74, 0.85) 0%, rgba(107, 27, 107, 0.4) 100%); z-index: 1;
}
.hero-inner { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 3rem; padding: 4rem 0; }
.hero-text { flex: 1; max-width: 675px; }
/* Título do Hero muito mais imponente */
.hero-text h1 { font-size: 3.5rem; margin-bottom: 1rem; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); font-weight: 900; line-height: 1.1; text-transform: uppercase;}
.hero-text p { font-size: 1.1rem; margin-bottom: 2rem; color: rgba(255,255,255,0.9); font-weight: 500; }
.hero-actions { display: flex; gap: 1rem; margin-bottom: 2rem; }

/* Apoio / Variação: Poppins */
.hero-meta { 
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem; color: rgba(255,255,255,0.8); display: flex; gap: 1.5rem; 
    align-items: center; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.2); 
}

.hero-cards { width: 300px; display: flex; flex-direction: column; gap: 1.2rem; position: relative; top: 20px; }
.mini-card {
    display: flex; align-items: center; gap: 1rem;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius); padding: 0.8rem; backdrop-filter: blur(10px);
}
.mini-card img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.mini-body h4 { font-size: 1.1rem; color: var(--accent); margin-bottom: 4px; font-weight: 800; text-transform: uppercase;}
.mini-body p { font-family: "Poppins", sans-serif; font-size: 0.85rem; color: #fff; margin: 0; }

/* -------------------- SECTIONS GERAL -------------------- */
section { padding: 5rem 0; }
.section-light { background: #fff; }
.section-dark { background: var(--light-bg); }
.section-accent { background: var(--purple); color: #fff; }

/* Títulos de Seção Iguais à Arte */
.section-title { 
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center; font-size: 2.2rem; margin-bottom: 3rem; color: var(--purple); position: relative; 
}
.section-title::after { content: ""; display: block; width: 60px; height: 3px; background: var(--accent); margin: 10px auto 0; }
.section-accent .section-title { color: #fff; }

/* -------------------- MENU E DELIVERY -------------------- */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.menu-card { background: #fff; padding: 2rem; border-radius: var(--radius); box-shadow: 0 4px 6px rgba(0,0,0,0.05); border-top: 4px solid var(--purple); }
.menu-card h3 { color: var(--purple); margin-bottom: 1.5rem; border-bottom: 1px solid #eee; padding-bottom: 0.5rem; font-weight: 800; text-transform: uppercase; }
.menu-card li { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid #f0f0f0; }
.menu-card li span { color: var(--purple); font-weight: 700; }

.delivery-actions {
    background: #fff; border: 2px dashed var(--accent); border-radius: var(--radius);
    padding: 2.5rem; margin-top: 3rem; text-align: center; box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.delivery-actions h3 { color: var(--purple); margin-bottom: 0.5rem; font-size: 1.5rem; font-weight: 800; text-transform: uppercase;}
.delivery-actions p { margin-bottom: 1.5rem; color: #666; }
.delivery-buttons-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); transition: 0.4s; }
.gallery-grid img:hover { transform: scale(1.03); }
@media (min-width: 768px) { .gallery-grid img:nth-child(1) { grid-column: span 2; } }

.events-row { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.event { background: rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; width: calc(33.333% - 1rem); min-width: 280px; }
.event img { width: 100%; height: 180px; object-fit: cover; }
.event-body { padding: 1.5rem; }
.event-body h4 { color: var(--accent); margin-bottom: 0.5rem; font-weight: 800; text-transform: uppercase; }

/* -------------------- DEPOIMENTOS (CARROSSEL) -------------------- */
.carousel-wrapper { position: relative; width: 100%; overflow: hidden; padding: 2rem 0; }
.carousel-track-container { width: 100%; max-width: 900px; margin: 0 auto; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s ease-in-out; align-items: center; }
.testimonial-card { flex: 0 0 33.333%; padding: 1rem; text-align: center; transition: all 0.5s ease; opacity: 0.5; transform: scale(0.85); }
.testimonial-card.active { opacity: 1; transform: scale(1.1); z-index: 2; }
.testimonial-content {
    background: #fff; padding: 2rem 1.5rem; border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); height: 100%;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.stars { color: var(--accent); font-size: 1.2rem; margin-bottom: 0.5rem; }
.testimonial-text { font-style: italic; color: #555; margin-bottom: 1rem; font-size: 0.95rem; }
.avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-bottom: 0.5rem; border: 3px solid var(--accent); }
.client-name { font-weight: 800; color: var(--purple); font-size: 0.9rem; text-transform: uppercase; }

.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: var(--purple); color: #fff; border: none;
    width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; z-index: 10; transition: 0.3s;
}
.carousel-btn:hover { background: var(--accent); color: var(--purple); }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* -------------------- FAQ (ACCORDION) -------------------- */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 1rem; border-bottom: 1px solid #ddd; }
.faq-item details { padding: 1rem 0; transition: all 0.3s; }
.faq-item summary {
    font-family: "Poppins", sans-serif;
    font-weight: 600; color: var(--purple); cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
    font-size: 1.1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); font-weight: 400; transition: 0.3s; }
.faq-item details[open] summary::after { content: "-"; transform: rotate(180deg); }
.faq-content { margin-top: 1rem; color: #555; font-weight: 600; line-height: 1.6; padding-right: 2rem; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* -------------------- CONTATO -------------------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.contact-card { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: 0 15px 30px rgba(0,0,0,0.12); text-align: center; }
.contact-card.map { padding: 0; overflow: hidden; min-height: 250px; }
.contact-card iframe { width: 100%; height: 100%; min-height: 250px; border: 0; }

/* -------------------- FOOTER -------------------- */
.site-footer {
    background: #0b0b0b; color: #e0e0e0; padding: 5rem 0 2rem;
    border-top: 5px solid var(--accent); font-size: 0.95rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

/* Títulos do Footer: Poppins */
.footer-col h4 { 
    font-family: "Poppins", sans-serif; 
    color: var(--accent); font-weight: 600; text-transform: uppercase; 
    margin-bottom: 1.2rem; font-size: 1rem; letter-spacing: 1px; 
}

.footer-about img { width: 140px; margin-bottom: 1rem; opacity: 0.9; }
.footer-about p { color: var(--muted); margin-bottom: 1.5rem; line-height: 1.5; }
.footer-address { font-style: normal; line-height: 1.8; color: #ccc; }
.footer-address a { color: #fff; border-bottom: 1px dotted #777; display:flex;}
.footer-address a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.footer-links ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { font-family: "Poppins", sans-serif; transition: 0.2s; color: #ccc; }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; color: #fff; }
.footer-social a:hover { background: var(--accent); color: #000; transform: translateY(-3px); }

.footer-bottom { 
    font-family: "Poppins", sans-serif; 
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; 
    text-align: center; font-size: 0.85rem; color: #777; 
}

/* -------------------- WHATSAPP FAB -------------------- */
.whatsapp-fab {
    position: fixed; right: 20px; bottom: 20px; width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); 
    z-index: 999; 
    transition: 0.3s;
    text-decoration: none;
    /* Animação pulsante infinita */
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-fab:hover { 
    transform: scale(1.05) rotate(5deg); 
    animation: none; /* Para de pulsar quando o mouse está em cima */
}

.whatsapp-fab img, .whatsapp-fab svg { 
    width: 35px; height: 35px; 
}

/* Bolinha vermelha de notificação */
.whatsapp-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff0000;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    border: 2px solid #fff; /* Borda branca para destacar do fundo verde */
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Criando o efeito de "ondas" do pulso */
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 10px 25px rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0), 0 10px 25px rgba(37, 211, 102, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 25px rgba(37, 211, 102, 0.4); }
}
/* -------------------- MOBILE -------------------- */
.mobile-toggle { display: none; }
@media (max-width: 980px) {
    .container { width: 92%; }
    .header-left-group { gap: 15px; }
    .mobile-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 101; padding: 0; margin-left: 5px; }
    .mobile-toggle span { display: block; width: 26px; height: 3px; background-color: #fff; border-radius: 3px; transition: 0.3s; }
    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
    .main-nav { position: absolute; top: 70px; left: 0; width: 100%; background: var(--purple-dark); overflow: hidden; max-height: 0; transition: max-height 0.4s ease-out; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
    .main-nav.active { max-height: 450px; }
    .main-nav ul { flex-direction: column; gap: 0; padding: 1rem 0; }
    .main-nav li { width: 100%; text-align: center; }
    .main-nav a { display: block; font-size: 1.1rem; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .header-cta { display: block; }
    .header-cta .btn { font-size: 0.7rem; padding: 0.5rem 0.8rem; }
    .hero-inner { flex-direction: column; text-align: center; padding: 2rem 0; gap: 2rem; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-actions { justify-content: center; }
    .hero-meta { justify-content: center; flex-direction: column; gap: 0.5rem; }
    .hero-cards { width: 100%; top: 0; flex-direction: row; overflow-x: auto; padding-bottom: 10px; }
    .mini-card { min-width: 260px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-social { justify-content: center; }
    .testimonial-card { flex: 0 0 100%; transform: scale(0.95) !important; opacity: 1 !important; }
    .carousel-btn { width: 30px; height: 30px; font-size: 1rem; }
}

/* -------------------- LINKS LGPD RODAPÉ -------------------- */
.legal-links a {
    font-family: "Poppins", sans-serif;
    color: #777; text-decoration: none; font-size: 0.85rem; transition: color 0.3s;
}
.legal-links a:hover { color: var(--accent); }

/* -------------------- BANNER DE COOKIES LGPD -------------------- */
.cookie-banner {
    position: fixed; bottom: -100%; left: 0; width: 100%;
    background-color: #ffffff; box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999; padding: 1.5rem 0; transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 4px solid var(--purple);
}
.cookie-banner.show { bottom: 0; }
.cookie-container { width: 90%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
.cookie-container p { font-family: "Poppins", sans-serif; margin: 0; font-size: 0.9rem; color: #444; line-height: 1.5; }
.cookie-container a { font-family: "Poppins", sans-serif; color: var(--purple); text-decoration: underline; font-weight: 600; }
.cookie-buttons { display: flex; gap: 1rem; flex-shrink: 0; }
.reject-btn { color: #555 !important; border-color: #ccc !important; }
.reject-btn:hover { background: #f0f0f0 !important; color: #333 !important; border-color: #999 !important; }

@media (min-width: 768px) {
    .cookie-container { flex-direction: row; text-align: left; justify-content: space-between; }
}
@media (max-width: 480px) {
    .cookie-buttons { flex-direction: column; width: 100%; }
    .cookie-buttons button { width: 100%; }
}

/* Estilos específicos para páginas de texto legal */
.legal-content { max-width: 800px; margin: 0 auto; color: #444; line-height: 1.8; }
.legal-content h1 { font-family: "Montserrat", sans-serif; font-weight: 900; text-transform: uppercase; color: var(--purple); font-size: 2.5rem; margin-bottom: 0.5rem; text-align: center; }
.legal-content .last-updated { font-family: "Poppins", sans-serif; text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 3rem; }
.legal-content h2 { font-family: "Montserrat", sans-serif; font-weight: 800; text-transform: uppercase; color: var(--purple-dark); font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; border-bottom: 1px solid #eee; padding-bottom: 0.5rem; }
.legal-content p { margin-bottom: 1.2rem; }
.legal-content ul { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; list-style-type: disc; }
.legal-content a { color: var(--purple); text-decoration: underline; }
.legal-content a:hover { color: var(--accent); }

/* -------------------- SOBRE -------------------- */
.sobre-hero {
    padding: 140px 0 6rem; text-align: center;
    background: linear-gradient(to bottom, rgba(17, 17, 25, 0.85) 0%, rgba(26, 26, 36, 0.95) 100%), url('bg-sobre.webp');
    background-size: cover; background-position: center; background-attachment: fixed;
}
.sobre-text p { margin-bottom: 1.5rem; line-height: 1.8; font-size: 1.05rem; color: #bbb; }
.sobre-hero .section-title {color: #fff; margin-bottom: 1rem;}
.sobre-hero .text-accent {font-weight: 600; font-size: 1.1rem; max-width: 600px; margin: 0 auto;}

.sobre-grid {display:grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap:3rem; align-items:center;}

/* -------------------- IMAGEM FUNDADORES (PÁGINA SOBRE) -------------------- */
.img-fundadores {
  float: right;
  width: 45%;
  min-width: 250px;
  margin: 0 0 1.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  object-fit: cover;
}

/* Comportamento no Mobile (UX) */
@media (max-width: 768px) {
  .img-fundadores {
    float: none;           /* Pára de empurrar o texto */
    width: 100%;           /* Ocupa a largura total do ecrã */
    margin: 0 0 1.5rem 0;  /* Remove a margem da esquerda que havia no PC */
    display: block;
  }
}

.curiosity-box {
    background: #222; border-left: 5px solid var(--accent); padding: 2rem;
    border-radius: 0 var(--radius) var(--radius) 0; margin-top: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.curiosity-box h3 { color: var(--accent); margin-bottom: 1rem; font-family: "Montserrat", sans-serif; font-weight: 800; text-transform: uppercase; font-size: 1.5rem; }
.curiosity-box p { color: #eee; line-height: 1.7; margin: 0; }

/* ESTILOS DO BREADCRUMB */
.breadcrumb {
    font-family: "Poppins", sans-serif;
    list-style: none; display: flex; justify-content: center; gap: 10px; margin-bottom: 1.5rem; font-size: 0.9rem; color: #bbb;
}
.breadcrumb li { display: flex; align-items: center; gap: 10px; }
.breadcrumb a { color: var(--accent); text-decoration: none; transition: 0.3s; font-weight: 500; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .separator { color: #777; font-size: 0.8rem; }

/* ==========================================
 CARROSSEL E LIGHTBOX DA PÁGINA SOBRE
 ========================================== */
.about-gallery-wrapper {
    position: relative; border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5); background: #111119; padding: 15px; 
}
.about-gallery-track {
    display: flex; gap: 15px; overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; scrollbar-width: none; 
}
.about-gallery-track::-webkit-scrollbar { display: none; }
.about-gallery-track img {
    flex: 0 0 calc((100% / 3) - 10px) !important; width: calc((100% / 3) - 10px) !important;
    max-width: calc((100% / 3) - 10px) !important; aspect-ratio: 4/3; object-fit: cover;
    scroll-snap-align: start; cursor: zoom-in; transition: opacity 0.3s ease, transform 0.3s ease; border-radius: 8px;
}
.about-gallery-track img:hover { opacity: 0.85; transform: scale(1.02); }

/* Responsividade: Tablet (2 colunas) e Telemóvel (1 coluna) */
@media (max-width: 768px) {
    .about-gallery-track img {
        flex: 0 0 calc((100% / 2) - 7.5px) !important; width: calc((100% / 2) - 7.5px) !important;
        max-width: calc((100% / 2) - 7.5px) !important;
    }
    .section-title {font-size: 1.3rem;}
    .menu-hero {padding: 40px 0 3rem; }
    .footer-about img {margin: 0 auto 25px auto;}
    .footer-address a {display: block;}
    .testimonial-card, .testimonial-card.active { 
    flex: 0 0 100%; 
    transform: none !important; 
    opacity: 1 !important; 
}
}
@media (max-width: 576px) {
    .about-gallery-track img {
        flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
    }
}

.gallery-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.6); color: #fff; border: none; width: 40px; height: 40px;
    border-radius: 50%; cursor: pointer; z-index: 10; font-size: 1.2rem; transition: 0.3s;
}
.gallery-btn:hover { background: var(--purple); }
.gallery-btn.prev { left: 20px; } 
.gallery-btn.next { right: 20px; }

.gallery-hint {
    font-family: "Poppins", sans-serif;
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,0.6); color: #fff; padding: 4px 12px; border-radius: 20px;
    font-size: 0.75rem; pointer-events: none;
}

/* Lightbox Modal (Ecrã Inteiro) */
.lightbox-modal {
    display: none; position: fixed; z-index: 99999; padding-top: 50px; left: 0; top: 0;
    width: 100%; height: 100%; background-color: rgba(0,0,0,0.95); backdrop-filter: blur(5px);
}
.lightbox-content {
    margin: auto; display: block; max-width: 90%; max-height: 80vh;
    border-radius: 8px; box-shadow: 0 0 30px rgba(0,0,0,0.8); object-fit: contain; animation: zoomIn 0.3s ease;
}
@keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.lightbox-close { position: absolute; top: 20px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.lightbox-close:hover { color: var(--accent); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%); background: transparent; color: #fff;
    border: none; font-size: 3rem; cursor: pointer; padding: 20px; transition: 0.3s;
}
.lightbox-nav:hover { color: var(--accent); }
.lightbox-nav.prev { left: 5%; }
.lightbox-nav.next { right: 5%; }
@media (max-width: 768px) {
    .lightbox-nav { font-size: 2rem; padding: 10px; }
    .lightbox-nav.prev { left: 0; }
    .lightbox-nav.next { right: 0; }
}