/* ============================================
   RESET
============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Georgia, serif; color: #333; }

/* ============================================
   SCROLL SUAVE
============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   NAVEGAÇÃO
============================================ */
nav {
    background: transparent;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
    background: #1b6ca8;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
nav .logo img { height: 60px; width: auto; }
nav ul { list-style: none; display: flex; gap: 50px; }
nav ul li { position: relative; }
nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s;
    padding-bottom: 5px;
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #c8a84b;
    transition: width 0.3s ease;
}
nav ul li a:hover { color: #c8a84b; }
nav ul li a:hover::after { width: 100%; }
#lang-btn {
    border: 1px solid #c8a84b;
    padding: 4px 10px !important;
    color: #c8a84b !important;
    transition: all 0.3s ease;
}
#lang-btn:hover {
    background: #c8a84b;
    color: #ffffff !important;
}

/* ============================================
   HERO
============================================ */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(27, 108, 168, 0.35), rgba(27, 108, 168, 0.35)),
                url('img/hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero h1 { font-size: 52px; letter-spacing: 5px; margin-bottom: 15px; color: #c8a84b; }
.hero .subtitulo { font-size: 16px; color: #ffffff; letter-spacing: 3px; margin-bottom: 10px; }
.hero .anos { font-size: 13px; color: #e8d08a; letter-spacing: 2px; margin-bottom: 40px; }
.hero a {
    background: #c8a84b;
    color: #ffffff;
    padding: 14px 38px;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.hero a:hover {
    background: #e8d08a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 168, 75, 0.4);
}

/* ============================================
   SECÇÕES GERAIS
============================================ */
section { padding: 80px 40px; text-align: center; }
section h2 { font-size: 32px; margin-bottom: 15px; color: #1b6ca8; letter-spacing: 3px; }
.divisor { width: 70px; height: 2px; background: linear-gradient(to right, #1b6ca8, #c8a84b); margin: 0 auto 40px; }

/* ============================================
   SOBRE
============================================ */
.sobre { background: #ffffff; }
.sobre p { max-width: 700px; margin: 0 auto; line-height: 1.9; font-size: 16px; color: #444; }
.sobre-stats { display: flex; justify-content: center; gap: 50px; margin-top: 35px; }
.stat .numero { font-size: 38px; color: #1b6ca8; font-weight: bold; }
.stat .label { font-size: 11px; color: #1b6ca8; letter-spacing: 2px; }

/* ============================================
   ESPECIALIDADES
============================================ */
.especialidades { background: #1b6ca8; }
.especialidades h2 { color: #c8a84b; }
.especialidades .divisor { background: linear-gradient(to right, #c8a84b, #e8d08a); }
.espec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; max-width: 1000px; margin: 0 auto; }
.espec-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(200,168,75,0.25);
    padding: 35px 25px;
    border-top: 3px solid #c8a84b;
    transition: transform 0.3s;
}
.espec-card:hover { transform: translateY(-4px); }
.espec-card h3 { font-size: 19px; color: #e8d08a; margin-bottom: 10px; }
.espec-card p { color: #d0e8f8; line-height: 1.6; font-size: 14px; }

/* ============================================
   EMENTA
============================================ */
.ementa { background: #f0f6fb; }
.ementa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1000px; margin: 0 auto; }
.prato {
    background: white;
    padding: 28px;
    border-left: 3px solid #c8a84b;
    box-shadow: 0 2px 12px rgba(27,108,168,0.1);
    text-align: left;
}
.prato h3 { font-size: 17px; margin-bottom: 8px; color: #1b6ca8; }
.prato p { color: #666; line-height: 1.6; font-size: 14px; }
.prato .preco { color: #c8a84b; font-size: 18px; margin-top: 12px; font-weight: bold; }

/* ============================================
   GALERIA
============================================ */
.galeria { background: #0d4f80; padding: 80px 40px; text-align: center; }
.galeria h2 { color: #c8a84b; }
.galeria .divisor { background: linear-gradient(to right, #c8a84b, #e8d08a); }
.galeria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 1000px; margin: 0 auto; }
.galeria-grid img { width: 100%; height: 230px; object-fit: cover; transition: opacity 0.3s; }
.galeria-grid img:hover { opacity: 0.8; }

/* ============================================
   RESERVA
============================================ */
.reserva {
    background: #c8a84b;
    padding: 55px 40px;
    text-align: center;
    color: white;
}
.reserva h2 { color: #ffffff; font-size: 30px; margin-bottom: 10px; letter-spacing: 2px; }
.reserva p { color: rgba(255,255,255,0.9); margin-bottom: 28px; font-size: 15px; }
.reserva a {
    background: #1b6ca8;
    color: #ffffff;
    padding: 14px 38px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 13px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.reserva a:hover {
    background: #0d4f80;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 79, 128, 0.4);
}

/* ============================================
   COMENTARIOS - SECÇÃO
============================================ */
.comentarios {
    background: #f0f6fb;
}
.comentarios h2 {
    color: #1b6ca8;
}

/* Formulário */
.form-comentario {
    max-width: 650px;
    margin: 0 auto 60px;
    background: white;
    padding: 40px;
    border-top: 3px solid #1b6ca8;
    box-shadow: 0 4px 20px rgba(27,108,168,0.1);
    text-align: left;
}
.form-titulo {
    font-size: 14px;
    letter-spacing: 3px;
    color: #1b6ca8;
    text-transform: uppercase;
    margin-bottom: 28px;
    text-align: center;
}
.form-grupo {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: Georgia, serif;
    color: #333;
    transition: border-color 0.3s;
}
.form-input:focus {
    outline: none;
    border-color: #1b6ca8;
}
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: Georgia, serif;
    color: #333;
    resize: vertical;
    transition: border-color 0.3s;
}
.form-textarea:focus {
    outline: none;
    border-color: #1b6ca8;
}
.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.form-check input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: #1b6ca8;
    cursor: pointer;
}
.form-check label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

/* Estrelas interativas */
.estrelas-input {
    display: flex;
    gap: 8px;
}
.estrela {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.15s ease;
    user-select: none;
}
.estrela:hover,
.estrela.ativa {
    color: #c8a84b;
    transform: scale(1.15);
}

/* Botão enviar */
.form-btn {
    width: 100%;
    background: #1b6ca8;
    color: white;
    padding: 14px;
    border: none;
    font-size: 13px;
    letter-spacing: 3px;
    font-family: Georgia, serif;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}
.form-btn:hover {
    background: #0d4f80;
    transform: translateY(-2px);
}
.form-btn:disabled {
    background: #999;
    cursor: not-allowed;
    transform: none;
}

/* Mensagem de feedback */
.form-mensagem {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    display: none;
}
.form-mensagem.sucesso {
    color: #1b6ca8;
    background: #e8f4fd;
    border-left: 3px solid #1b6ca8;
    display: block;
}
.form-mensagem.erro {
    color: #cc3333;
    background: #fde8e8;
    border-left: 3px solid #cc3333;
    display: block;
}

/* Lista de comentários */
.comentarios-lista {
    max-width: 750px;
    margin: 0 auto;
}
.comentarios-loading {
    color: #999;
    font-style: italic;
    text-align: center;
}
.comentario-card {
    background: white;
    padding: 28px 30px;
    margin-bottom: 15px;
    border-left: 3px solid #c8a84b;
    box-shadow: 0 2px 10px rgba(27,108,168,0.07);
    text-align: left;
}
.comentario-topo {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}
.comentario-nome {
    font-size: 15px;
    color: #1b6ca8;
    font-weight: bold;
}
.comentario-data {
    font-size: 12px;
    color: #aaa;
}
.comentario-estrelas {
    color: #c8a84b;
    font-size: 20px;
    margin-bottom: 10px;
}
.comentario-texto {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}
.sem-comentarios {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

/* ============================================
   CONTACTOS
============================================ */
.contactos { background: #ffffff; }
.contactos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; max-width: 900px; margin: 0 auto 40px; }
.contacto-card {
    background: #f0f6fb;
    padding: 32px;
    border-top: 3px solid #1b6ca8;
}
.contacto-card h3 { color: #c8a84b; margin-bottom: 10px; font-size: 13px; letter-spacing: 2px; }
.contacto-card p { color: #555; line-height: 1.8; font-size: 15px; }
.contacto-card a { color: #1b6ca8; text-decoration: none; }
.horario {
    background: #1b6ca8;
    color: white;
    padding: 28px 40px;
    max-width: 460px;
    margin: 0 auto;
    border-top: 3px solid #c8a84b;
}
.horario h3 { color: #c8a84b; margin-bottom: 12px; letter-spacing: 2px; font-size: 14px; }
.horario p { color: #d0e8f8; line-height: 2; font-size: 15px; }

/* ============================================
   FOOTER
============================================ */
footer {
    background: #0d4f80;
    color: #7aaac8;
    text-align: center;
    padding: 28px;
    font-size: 13px;
}
footer span { color: #c8a84b; }

footer .insta-btn {
    display: inline-block;
    margin-bottom: 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}
footer .insta-btn:hover {
    transform: translateY(-3px);
    opacity: 1;
}
/* ============================================
   EMENTA BOTOES
============================================ */
.ementa-botoes {
    display: flex;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
}
.ementa-btn-card {
    background: white;
    padding: 40px 35px;
    border-top: 3px solid #1b6ca8;
    box-shadow: 0 4px 20px rgba(27,108,168,0.1);
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ementa-btn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(27,108,168,0.2);
}
.ementa-btn-card h3 {
    font-size: 18px;
    color: #1b6ca8;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.ementa-btn-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}
.ementa-btn {
    display: inline-block;
    background: #1b6ca8;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}
.ementa-btn:hover {
    background: #0d4f80;
    transform: translateY(-2px);
}
