@charset "utf-8";

/******************************
  Casa do Tejo — Custom Styles
  Paleta: Ouro (#c9a96e), Marfim (#f5f0e8), Carvão (#1a1a1a), Creme (#faf7f2)
******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Alex+Brush|Great+Vibes|PT+Sans+Narrow:400,700');

@font-face {
    font-family: 'Edward';
    src: url(../font/edwardian_script_itc.ttf) format('truetype'),
         url(../font/edwardian_script_itc.otf) format('opentype');
}

/*********************************
2. Body e geral
*********************************/

* { margin: 0; padding: 0; -webkit-font-smoothing: antialiased; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    background: #faf7f2;
    color: #7a7a7a;
}

div { display: block; position: relative; -webkit-box-sizing: border-box; box-sizing: border-box; }
ul { list-style: none; margin-bottom: 0; }

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 2;
    font-weight: 300;
    color: #6b6b6b;
    letter-spacing: 0.02em;
}
p:last-of-type { margin-bottom: 0; }

a { transition: all 200ms ease; text-decoration: none; -webkit-font-smoothing: antialiased; }
a, a:hover, a:visited, a:active, a:link { text-decoration: none; }

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
h5 { font-size: 14px; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.15;
    color: #1a1a1a;
    letter-spacing: 0.03em;
}

::selection { background: rgba(201,169,110,0.25); color: #1a1a1a; }

.trans_200 { transition: all 200ms ease; }
.trans_300 { transition: all 300ms ease; }
.trans_400 { transition: all 400ms ease; }
.trans_500 { transition: all 500ms ease; }
.trans_800 { transition: all 800ms ease; }

.super_container { width: 100%; overflow: hidden; }
.prlx_parent { overflow: hidden; }
.prlx { height: 130% !important; }
.parallax-window { min-height: 400px; background: transparent; }

.parallax_background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.background_image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.nopadding { padding: 0 !important; }

/* Subtítulo cursivo — mais elegante */
.page_subtitle {
    font-family: 'Great Vibes', cursive;
    color: #c9a96e;
    line-height: 0.85;
}

/* Botão — estilo minimalista dourado */
.button {
    display: inline-block;
    padding: 0 32px;
    height: 48px;
    background: transparent;
    border: 1px solid #c9a96e;
    text-align: center;
    letter-spacing: 0.15em;
    transition: all 0.35s ease;
}
.button a {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: #c9a96e;
    line-height: 46px;
    letter-spacing: 0.2em;
}
.button:hover { background: #c9a96e; }
.button:hover a { color: #fff; }

/* Linha decorativa dourada */
.gold-line {
    display: block;
    width: 40px;
    height: 1px;
    background: #c9a96e;
    margin: 20px auto;
}

/*********************************
3. Header
*********************************/

.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 100;
    transition: all 400ms ease;
    /* gradiente subtil no topo */
    background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 100%);
}
.header.scrolled {
    background: rgba(17, 17, 17, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.header_content {
    width: 100%;
    height: 130px;
    transition: all 400ms ease;
}
.header.scrolled .header_content { height: 72px; }

.logo a { display: block; }
.logo a > div:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 0.85;
    color: #fff;
    letter-spacing: 0.08em;
}
.logo a > div:last-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    color: #c9a96e;
    letter-spacing: 0.55em;
    line-height: 0.75;
    margin-top: 10px;
}

.main_nav { margin-left: 120px; }
.main_nav ul li:not(:last-child) { margin-right: 36px; }
.main_nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    position: relative;
    padding-bottom: 4px;
}
.main_nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: #c9a96e;
    transition: width 0.3s ease;
}
.main_nav ul li a:hover { color: #fff; }
.main_nav ul li a:hover::after { width: 100%; }

.nav_cta a {
    background: #c9a96e;
    border: 1px solid #c9a96e;
    border-radius: 3px;
    padding: 10px 28px !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
}
.nav_cta a:hover {
    background: transparent;
    border-color: #c9a96e;
    color: #c9a96e !important;
}

.reservations_phone {
    height: 40px;
    line-height: 38px;
    padding: 0 20px;
    border: 1px solid rgba(201,169,110,0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.reservations_phone:hover {
    border-color: #c9a96e;
    color: #c9a96e;
}

/* Hamburger */
.hamburger_bar {
    position: fixed; top: 0;
    right: calc((100vw - 690px) / 2 - 15px);
    width: auto; height: 130px; z-index: 102;
}
.hamburger_bar.scrolled { height: 72px; }
.hamburger {
    display: none; position: absolute;
    top: 50%; transform: translateY(-50%);
    right: 0; cursor: pointer; padding: 15px; z-index: 2;
}
.menu_toggle { display: block; }
.menu_hamburger { display: block; position: relative; width: 22px; height: 14px; }
.hamburger_lines {
    display: block; position: absolute; left: 0;
    width: 100%; height: 1px;
    background: #fff;
    transition: all 600ms ease;
    transform-origin: center center;
}
.line_1 { top: 0; }
.line_2 { top: 7px; }
.line_3 { top: 14px; }
.hamburger.active .line_1 { transform: translateY(7px) rotate(45deg) !important; }
.hamburger.active .line_3 { transform: translateY(-7px) rotate(-45deg) !important; }
.hamburger.active .line_2 { opacity: 0 !important; }
.menu_toggle span {
    display: block; position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 500;
    line-height: 14px; letter-spacing: 2px;
    text-transform: uppercase; color: #fff;
}

/*********************************
4. Menu mobile
*********************************/

.menu {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(18, 14, 10, 0.97);
    z-index: 101;
    visibility: hidden; opacity: 0;
    padding-bottom: 100px;
    transition: all 800ms ease;
}
.menu.active { visibility: visible; opacity: 1; }
.menu_content { width: 100%; height: 100%; }
.menu_content ul li:not(:last-child) { margin-bottom: 6px; }
.menu_content ul li a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 300;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.15em;
}
.menu_content ul:hover li a { color: rgba(255,255,255,0.3); }
.menu_content ul li a:hover { color: #c9a96e; }
.menu_reservations_phone {
    position: absolute;
    left: 50%; transform: translateX(-50%);
    bottom: 40px;
    height: 40px; line-height: 38px;
    padding: 0 24px;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
    border: 1px solid rgba(201,169,110,0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 400;
    color: #c9a96e;
    white-space: nowrap;
    letter-spacing: 0.1em;
}

/*********************************
5. Hero
*********************************/

.home { width: 100%; height: 100vh; min-height: 700px; }

/* Overlay escuro elegante */
.home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.65) 100%
    );
    z-index: 1;
}

.home_container {
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}

.home_subtitle { font-size: 52px; font-weight: normal; line-height: 0.85; }

.home_title { margin-top: 12px; }
.home_title h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.04em;
}

/* Linha decorativa sob o título */
.home_title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #c9a96e;
    margin: 20px auto 0;
}

.home_text { max-width: 700px; margin-top: 24px; }
.home_text p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 2;
}

/* Ícone de scroll */
.scroll_icon {
    position: absolute;
    left: 50%; transform: translateX(-50%);
    bottom: 30px;
    width: 1px; height: 60px;
    background: rgba(201,169,110,0.4);
    z-index: 2;
}
.scroll_icon::after {
    display: block; position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #c9a96e;
    content: '';
    animation: scrollDot 1800ms ease infinite;
}
@keyframes scrollDot {
    0%   { top: 0; opacity: 1; }
    100% { top: 54px; opacity: 0; }
}

/*********************************
6. Intro
*********************************/

.intro {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #faf7f2;
    padding-top: 110px;
    padding-bottom: 110px;
}
.intro_image { width: 100%; overflow: hidden; }
.intro_image img { max-width: 100%; transition: transform 0.6s ease; display: block; }
.intro_image:hover img { transform: scale(1.04); }

.intro_content {
    position: relative;
    margin-left: -60px;
    background: #faf7f2;
    border-left: 3px solid #c9a96e;
    box-shadow: 20px 40px 80px rgba(0,0,0,0.1);
    z-index: 1;
    padding: 60px 55px 65px 55px;
}
.intro_content::before {
    content: '';
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border: 1px solid rgba(201,169,110,0.15);
    pointer-events: none;
}

.intro_subtitle { font-size: 38px; }
.intro_title { margin-top: 8px; }
.intro_title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1.2;
}
.intro_text { margin-top: 28px; }

/*********************************
7. Vídeo
*********************************/

.video_section { position: relative; overflow: hidden; width: 100%; height: 520px; }

.video_section::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.52);
    z-index: 1;
}

.video_section_content { width: 100%; height: 100%; z-index: 2; }

.video_section_title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.06em;
    line-height: 1.1;
}
.video_section_title::after {
    content: '';
    display: block;
    width: 40px; height: 1px;
    background: #c9a96e;
    margin: 16px auto 0;
}

.video_section_icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.7);
    text-align: center;
    margin-top: 32px;
    transition: all 0.3s ease;
}
.video_section_icon:hover {
    background: rgba(201,169,110,0.2);
    border-color: #c9a96e;
    transform: scale(1.08);
}
.video_button { display: block; width: 100%; height: 100%; }
.video_button:focus { outline: none; }
.video_section_icon i { color: #c9a96e; font-size: 16px; line-height: 62px; margin-left: 4px; }

#colorbox { background-color: #000; }

/*********************************
8. Prato de Assinatura
*********************************/

.sig {
    width: 100%;
    background: #fff;
    padding-top: 110px;
    padding-bottom: 110px;
}
.sig_image { width: 100%; height: 540px; overflow: hidden; }
.sig_image img { display: none; max-width: 100%; }

/* Sobreposição dourada subtil na imagem */
.sig_image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.sig_content_container {
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    width: 100%; z-index: 1;
}

.sig_content {
    width: 100%;
    background: #fff;
    border-top: 3px solid #c9a96e;
    box-shadow: -20px 30px 80px rgba(0,0,0,0.1);
    padding: 55px 60px 65px 55px;
    position: relative;
}
.sig_content::before {
    content: '';
    position: absolute;
    top: 16px; left: 16px; right: 16px; bottom: 16px;
    border: 1px solid rgba(201,169,110,0.12);
    pointer-events: none;
}

.sig_subtitle { font-size: 38px; }
.sig_title { margin-top: 8px; padding-left: 0; }
.sig_title h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.sig_rating { margin-top: 16px; padding-left: 0; }
.rating_r i::before { font-family: 'FontAwesome'; content: "\f006"; font-style: normal; font-size: 11px; color: #c9a96e; }
.rating_r i:not(:last-child) { margin-right: 4px; }
.rating_r_5 i::before { content: "\f005"; }

.sig_name { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #1a1a1a; padding-left: 0; margin-top: 4px; font-weight: 400; letter-spacing: 0.02em; }
.sig_price { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #c9a96e; font-weight: 400; }
.sig_name_container { margin-top: 2px; }

.sig_content_list { margin-top: 8px; margin-left: 0; }
.sig_content_list ul li:not(:last-child)::after {
    display: inline-block; content: '·';
    font-size: 14px; color: #c9a96e;
    margin-left: 6px; margin-right: 6px;
}
.sig_content_list ul li { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #999; text-transform: uppercase; letter-spacing: 0.1em; }

.sig_button { margin-left: 0; margin-top: 40px; }

/*********************************
9. Ementa
*********************************/

.themenu { width: 100%; background: #faf7f2; }

.themenu_title_bar_container {
    width: 100%;
    background: #1a1a1a;
    padding: 30px 28px;
    position: relative;
}
/* Linha dourada no topo da barra */
.themenu_title_bar_container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #c9a96e, transparent);
}

.themenu_title_bar {
    width: 100%; height: 110px;
    border: 1px solid rgba(201,169,110,0.3);
}
.themenu_title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.08em;
    margin-top: 0;
}
.themenu_stars {
    position: absolute; top: 22px; left: 50%;
    transform: translateX(-50%);
    width: auto; padding: 0 20px;
    background: #1a1a1a;
    font-size: 32px;
    z-index: 1;
    color: #c9a96e;
}
.themenu_rating {
    position: absolute; left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    width: 100px; background: #1a1a1a;
    z-index: 1;
}

.themenu_col {
    width: 100%;
    padding: 42px 36px 50px;
    background: #fff;
    border-top: 2px solid #c9a96e;
    transition: box-shadow 0.3s ease;
}
.themenu_col:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); }

.themenu_row { margin-top: 60px; padding-bottom: 110px; }

.themenu_col_title {
    display: inline-block;
    padding: 0 16px;
    height: 52px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 50px;
    color: #1a1a1a;
    border-bottom: 1px solid #c9a96e;
    letter-spacing: 0.05em;
}

.dish_list { margin-top: 40px; }

.dish:not(:last-child) { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(0,0,0,0.05); }

.dish_title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}
.dish_price {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #c9a96e;
    margin-left: auto;
    white-space: nowrap;
}

.dish_contents { margin-top: 5px; }
.dish_contents ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.dish_contents ul li:not(:last-child)::after {
    display: inline-block; content: '·';
    margin: 0 5px; font-size: 12px; color: #c9a96e;
}

.dish_order { margin-top: 8px; }
.dish_order a {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c9a96e;
    position: relative;
    padding-bottom: 2px;
}
.dish_order a::after {
    display: block; position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: #c9a96e;
    content: '';
    transition: width 0.3s ease;
}
.dish_order a:hover::after { width: 100%; }

/*********************************
10. Reservas
*********************************/

.reservations {
    width: 100%;
    padding-top: 120px;
    padding-bottom: 90px;
    position: relative;
}

.reservations::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(15, 11, 8, 0.65);
    z-index: 1;
}

.reservations .container { position: relative; z-index: 2; }

.res_stars { font-size: 38px; font-weight: normal; color: #c9a96e; }

.res_title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: #fff;
    line-height: 0.85;
    margin-top: 14px;
    letter-spacing: 0.04em;
}
.res_title::after {
    content: '';
    display: block;
    width: 40px; height: 1px;
    background: #c9a96e;
    margin: 20px auto 0;
}

.res_form_container { margin-top: 60px; }

.res_input {
    background: transparent;
    width: 200px; height: 50px;
    border: 1px solid rgba(201,169,110,0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 300;
    color: #fff;
    padding-left: 20px;
    outline: none;
    letter-spacing: 0.08em;
    transition: border-color 0.3s ease;
}
.res_input:not(:last-child) { margin-right: 14px; }
.res_input:focus { border-color: #c9a96e; }
.res_input::placeholder { color: rgba(255,255,255,0.5); }

.res_select {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    width: 200px; height: 50px;
    border: 1px solid rgba(201,169,110,0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 300;
    color: #fff;
    padding-left: 20px;
    outline: none;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: border-color 0.3s ease;
}
.res_select:focus { border-color: #c9a96e; }
.res_select option { color: #1a1a1a; background: #fff; }

.res_button {
    width: 200px; height: 50px;
    background: transparent;
    color: #c9a96e;
    border: 1px solid #c9a96e;
    outline: none;
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
}
.res_button:hover {
    background: #c9a96e;
    color: #fff;
}

/*********************************
11. Footer
*********************************/

.footer {
    width: 100%;
    background: #111;
    padding-top: 80px;
    padding-bottom: 60px;
    border-top: 1px solid rgba(201,169,110,0.2);
}

.footer_logo_title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 0.85;
    color: #fff;
    letter-spacing: 0.05em;
}
.footer_logo_subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    color: #c9a96e;
    letter-spacing: 0.55em;
    line-height: 0.75;
    margin-top: 14px;
}
.copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    line-height: 1.5;
    margin-top: 24px;
    letter-spacing: 0.04em;
}

.footer_about p {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    line-height: 2;
    font-weight: 300;
}

.footer_contact ul li:not(:last-child) { margin-bottom: 16px; }

.footer_contact_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c9a96e;
    line-height: 21px;
    margin-right: 12px;
    white-space: nowrap;
}
.footer_contact_text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 21px;
    letter-spacing: 0.03em;
}
.footer_contact ul li div:last-child { white-space: nowrap; }

/* Linha dourada no footer */
.footer_col:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.05);
}

