@font-face {
    font-family: 'TTRicordiTrialNobili';
    src: url('../fonts/TTRicordiTrialNobili.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GlacialIndifference';
    src: url('../fonts/GlacialIndifference-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-gold: #002147;
    --color-sand: #FCF7F1;
    --color-off-white: #F2F2F2;
    --color-champagne: #F7E7CE;
    --color-gold: #CEA56D;
    --color-text: #313131;
    --font-serif: 'GlacialIndifference', serif;
    --font-sans: 'GlacialIndifference', sans-serif;

    /* Breakpoints */
    --breakpoint-md: 992px;
    --breakpoint-lg: 1200px;

    --color-primary-dark: #001c3d;
    /* O azul profundo do fundo/botão original */
    --color-gold: #c5a880;
    /* Tom de ouro sofisticado baseado no logo_gold */
    --color-gold-hover: #b3946b;
    /* Ouro ligeiramente mais escuro para o hover */
    --color-white: #ffffff;
    --font-family: 'Cinzel', 'Didot', 'Bodoni MT', serif;
    /* Fontes elegantes para marcas de luxo */
    --font-sans: 'Montserrat', 'Lato', sans-serif;
    /* Para botões e menus (legibilidade) */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-off-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background-color: #FCF7F1;
    padding: 35px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo img {
    width: 120px;
    height: auto;
    background-color: #FCF7F1;
    position: absolute;
    top: 0px;
}

.logo-alt {
    display: none;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--color-gold);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.main-nav ul li a:hover {
    color: var(--color-gold);
}

/* Hamburger Button */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1100;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-gold);
}

/* Hamburger Active State */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Styles */
@media (max-width: 1023px) {
    .hamburger {
        display: block;
    }

    .main-nav {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--color-sand);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul li {
        margin: 20px 0;
    }

    .main-nav ul li a {
        font-size: 1.2rem;
    }

    .logo-default {
        display: none;
    }

    .logo-alt {
        display: block;
        left: 50%;
        transform: translateX(-50%);
        height: 70% !important;
        width: auto !important;
        top: 10% !important;
    }
}

/* CTA Button */
.cta-button {
    background-color: #D19E4A;
    color: var(--color-off-white) !important;
    padding: 10px 20px;
    border-radius: 2px;
    transition: background-color 0.3s !important;
}

.cta-button:hover {
    background-color: #7D5929 !important;
}

/* Section General Styles */
section {
    padding: 100px 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 33, 71, 0.4), rgb(206 172 101 / 50%)), url(../img/header-backgroud.jpeg) no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-off-white);
    margin-top: 0;
    position: relative;

    .hero-logo {
        position: absolute;
        top: 0px;
        transform: translateX(-50%);
    }
}

.hero-bottom-logo {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-bottom-logo img {
    height: 120px;
    width: auto;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 60%;
    margin: 0 auto;
}

/* Footer Styles */
.main-footer {
    background-color: var(--color-gold);
    color: var(--color-off-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3,
.footer-links h4,
.footer-contact h4 {
    color: var(--color-champagne);
    margin-bottom: 20px;
}

.footer-contact>p>a {
    color: var(--color-off-white);
    text-decoration: underline;
    margin-bottom: 10px;
    text-weight: bold;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: var(--color-off-white);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.8rem;
}

/* Responsive Breakpoints & Adjustments */

/* Small Tablets / Large Phones (SM) */
@media (max-width: 768px) {

    .hero-content p {
        font-size: 1.2rem;
    }

    section {
        padding: 60px 0;
    }
}


/* Base Comum para os Botões */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    white-space: nowrap;
    color: white !important
}

/* 1. Botão Principal (Hero / Meio da Página) 
   Foco em minimalismo: fundo transparente, bordas finas e detalhes em ouro. */
.btn-hero-primary {
    padding: 16px 36px;
    color: var(--color-white);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    /* Sutil efeito de vidro para destacar do background */
}

.btn-hero-primary:hover {
    color: var(--color-primary-dark);
    background-color: var(--color-white);
    border-color: var(--color-white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    /* Leve elevação */
}

/* Alternativa para o Hero: Se preferir o botão em Ouro para contrastar com a grama */
.btn-hero-gold {
    padding: 16px 36px;
    color: var(--color-white);
    background-color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.btn-hero-gold:hover {
    background-color: transparent;
    color: var(--color-gold);
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.2);
    transform: translateY(-2px);
}


/* 2. Botão do Header (Menu Superior)
   Mais compacto, focado em conversão limpa. */
.btn-header {
    padding: 10px 24px;
    color: var(--color-white);
    background-color: #BCAB63;
    border: 1px solid #BCAB63;
    font-size: 11px;
}

.btn-header:hover {
    background-color: transparent;
    color: white;
    background-color: #7D5929;
    border: 1px solid #7D5929;
}

/* Variante do Header se o menu flutuante for escuro/transparente */
.btn-header-outline {
    padding: 10px 24px;
    color: var(--color-primary-dark);
    background-color: transparent;
    border: 1px solid var(--color-primary-dark);
    font-size: 11px;
}

.btn-header-outline:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

/* Título em caixa alta, serifado e imponente */
.hero-title {
    font-family: 'Georgia', serif;
    font-size: 110px;
    font-weight: 300;
    line-height: 100px;
    letter-spacing: 0px;
    color: linear-gradient(circle, rgba(242, 205, 134, 1) 0%, 50%, rgba(124, 77, 24, 1) 100%);
    color: rgba(242, 205, 134, 1);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 1px 1px 8px rgba(124, 77, 24, 1);
}

/* --- CONFIGURAÇÕES DA SEÇÃO HERO LUXO --- */
.luxury-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Substitua pela imagem de fundo de alta qualidade, clara e iluminada */
    background: url('{{ asset("img/image_82bf77.jpg") }}') center center / cover no-repeat;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* --- HEADER CLEAN --- */
.hero-header {
    background: rgba(255, 255, 255, 0.95);
    /* Branco quase puro para leveza */
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.hero-logo img {
    max-height: 50px;
    /* Ajuste conforme a proporção do seu logo_black */
    width: auto;
}

.hero-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 0 20px;
    transition: color 0.3s ease;
}

.hero-nav a:hover {
    color: #bfa15f;
    /* Tom de ouro no hover */
}

/* --- CONTEÚDO CENTRAL (TEXTO SOBRE A IMAGEM) --- */
.hero-banner-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    /* Um degradê muito sutil apenas para garantir leitura do texto branco */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-text-box {
    max-width: 800px;
}

/* Subtítulo limpo */
.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #f9f9f9;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Botão de Destaque Principal */
.btn-main-luxury {
    display: inline-block;
    background: #0d233a;
    /* Azul marinho nobre */
    color: #ffffff;
    padding: 16px 36px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid var(--color-gold);
    transition: all 0.3s ease;
    margin-top: 32px;
    /* border-radius: 25px; */
    background: #BCAB63;
    background: radial-gradient(circle, rgba(209, 158, 74, 1) 0%, rgba(125, 89, 41, 1) 100%);
    background-size: 200% 200%;
    background-position: center left;
    transition: background-position 0.5s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-main-luxury:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    background: radial-gradient(circle, rgba(125, 89, 41, 1) 0%, rgba(209, 158, 74, 1) 100%);
    /* crie uma animação para deslocar inverter as cores do background */
    background-position: center right;
}

/* --- RESPONSIVIDADE SUTIL --- */
@media (max-width: 768px) {

    .hero-nav,
    .hero-cta-header {
        display: none;
    }

    /* Esconde menu no mobile para focar no logo */
    .hero-title {
        font-size: 34px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 15px;
    }
}