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

html,
body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

/* ============================================================
   MENU LATERAL — VARIÁVEIS LOCAIS
   ============================================================ */
:root {
  --ouro: #D6B377;
  --gl: #f7bd0f;
  --gpl: #fff;
  --gold-l: #D4B87A;
  --bl-dark: #d63434;
  --bl-submenu: #3eaf1b;
}

/* ============================================
   SOMENTE AS FONTES QUE VOCÊ TEM
   ============================================ */

/* 1. CINZEL - você tem o arquivo */
@font-face {
  font-family: 'Cinzel';
  src: url('cinzel-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

/* 2. CORMORANT LIGHT - você tem */
@font-face {
  font-family: 'Cormorant';
  src: url('CormorantGaramond-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

/* 3. CORMORANT LIGHT ITALIC - você tem */
@font-face {
  font-family: 'Cormorant';
  src: url('CormorantGaramond-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
}

/* ============================================
   APLICAÇÃO (SÓ O QUE EXISTE)
   ============================================ */
:root {
  --fonte-cinzel: 'Cinzel', serif;
  --fonte-cormorant: 'Cormorant', serif;
  --fonte-sistema: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --peso-semi-bold: 600;
  /* único peso que a Cinzel tem no seu arquivo */
  --peso-light: 300;
  /* peso do Cormorant */
}

h1,
h2,
h4 {
  font-family: var(--fonte-cinzel);
  font-weight: var(--peso-semi-bold);
}

h3 {
  font-family: var(--fonte-cormorant);
  font-weight: var(--peso-light);
  font-style: normal;
}

em,
i {
  font-family: var(--fonte-cormorant);
  font-weight: var(--peso-light);
  font-style: italic;
}

p,
span,
li {
  font-family: var(--fonte-sistema);
  font-weight: 400;
}

/* dentro do menu lateral */
:root {
  --gpl: #fff;
  --gold-l: #fff;
  /*menu*/
  --bl-dark: #131921;
  /*fundo*/
  --bl-submenu: #232F3F;
  /*fundo sub*/
}
/* ============================================================
   VARIÁVEIS
============================================================ */
:root {
    --bg-side: #1a1a1a;
    --gold: #dbc498;
    --white: #ffffff;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ============================================================
   HEADER
============================================================ */
#menu-toggle { display: none; }
.menu-icon {
         
    font-weight: 100;      
    transform: scaleX(1.4); 
    display: inline-block;
}

.menu-icon {
    font-size: 20px !important;
    cursor: pointer;
    color: #fff;
    line-height: 1;
    padding: 3px 10px;
    z-index: 1001;
    position: relative;
}



.site-header {
    position: fixed;
  
    left: 0;
    width: 100%;
    z-index: 1000;
      background: #fff;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }


.logo-area {
    display: flex;
    align-items: center;
   
    text-decoration: none;
    z-index: 1001;
    position: relative;
}

.logo-img  { width: 22px !important; height: auto !important;}
.logo-text {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    font-style: italic !important;
    color: #fff;
    white-space: nowrap;
}

.motors {
    font-size:0.85rem!important;
    font-weight: 700;
      font-style: italic;
    
}
.header-links {
    display: flex;
    gap: 24px;
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.header-links a {
    color: #fff !important;
    font-size: 0.80rem;
    position: relative;
    padding-bottom: 3px;
    text-decoration: none;
}

.header-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #D6B377;
    transition: width 0.3s ease;
}

.header-links a:hover::after {
    width: 100%;
}

/* ============================================================
   OVERLAY
============================================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 1500;
}

#menu-toggle:checked ~ .overlay { display: block; }

/* ============================================================
   MENU LATERAL
============================================================ */
.side-menu {
    position: fixed;
    top: 0;
    left: -220px;
    width: 200px;
    height: 100%;
    background: #232f3e;
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
}

#menu-toggle:checked ~ .side-menu { left: 0; }

/* ── Cabeçalho do menu ── */
.side-menu-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 18px 15px 18px 20px;
    border-bottom: 1px solid rgba(196, 156, 100, 0.4);
    position: relative;
    background: #1a2330;
}

.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

.side-menu-logo {
    height: 25px;
    width: auto;
    flex-shrink: 0;
}

.link-participar {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    line-height: 1.3;
}

.link-participar:hover { color: #D6B377; }

/* ── Lista de categorias ── */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list > li {
    border-bottom: 1px solid rgba(196, 156, 100, 0.2);
}

.menu-cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.menu-cat:hover {
    background: rgba(196, 156, 100, 0.1);
}

.arrow {
    transition: var(--transition);
    font-size: 15px;
    color: #fff;
}

.cat-input:checked ~ .menu-cat .arrow {
    transform: rotate(90deg);
}

/* ── Submenu ── */
.submenu {
    max-height: 0;
    overflow: hidden;
    background: #1a2330;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: max-height 0.3s ease-out;
}
.cat-input:checked ~ .submenu {
    max-height: 500px;
}

.submenu li a {
    display: block;
    padding: 11px 20px 11px 30px;
    color: #d9d9d9;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(196, 156, 100, 0.15);
    transition: background 0.2s, color 0.2s;
}

.submenu li a:hover {
    color: #fff;
    background: rgba(196, 156, 100, 0.15);
}


/* ============================================================
   SCROLLBAR DO MENU LATERAL
============================================================ */
.side-menu {
    scrollbar-width: thin;
    scrollbar-color: #3a4a5a #1a2330;
}

.side-menu::-webkit-scrollbar {
    width: 4px;
}

.side-menu::-webkit-scrollbar-track {
    background: #1a2330;
}

.side-menu::-webkit-scrollbar-thumb {
    background: #3a4a5a;
    border-radius: 10px;
}

.side-menu::-webkit-scrollbar-thumb:hover {
    background: #4a5a6a;
}




/* ============================================================
   FOOTER PRINCIPAL
============================================================ */
.footer {
    background-color: #10141D;
    padding-top: 60px;
   
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 3;
}

.footer-col {
    background: #10141D;
    padding:30px 40px;
    border-radius: 12px;
    border: 1px solid rgba(212, 184, 122, 0.15);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.footer-col:hover {
    transform: translateY(-5px);
    border-color: #D4B87A;
}

.footer-subtitle {
    color: #fff;
    font-size:1.4rem;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.footer-subtitle::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 1.5px;
    background: #D4B87A;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
    color: #D4B87A;
    font-size: 0.65rem;
}

.footer-menu a {
    color: #D4B87A;
    text-decoration: none;
}

.footer-menu a:hover {
    color: #fff;
}



.social-links {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 10px;
}

.social-link {
    width: 25px;
    height: 25px;
    padding: 7px;
    border: 1px solid #D4B87A;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-link:hover {
    background: rgba(212, 184, 122, 0.23);
}

.social {
    font-size:0.75rem;
    font-weight: 600;
    color: #fff;
}

.footer-copy {
    background: #10141D;
    color: #D4B87A;
    text-align: center;
    padding: 20px 10px ;
    font-size: 0.65rem;
    border-top: 1px solid rgba(212, 184, 122, 0.15);
}

.footer::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(212, 184, 122, 0.15) 0%, rgba(214, 179, 119, 0.05) 50%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 4;
}
/* Style for contact link */
.contact-link {
    font-size: 18px;
    color: #007bff;
    text-decoration: none;
}


.btn-topo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    z-index: 9999;
    width: 46px;
    height: 46px;
    border-radius: 20%;
   background: transparent!important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #eda853;
    color: #D6B377;
    font-size: 24px;
   
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    text-decoration: none;
    outline: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.btn-topo:hover {
    border-color: rgba(214, 179, 119, 0.8);
    background: rgba(214, 179, 119, 0.08);
    transform: translateY(-4px);
}










/* ============================================================
   RESPONSIVO — FOOTER
============================================================ */





/* Opcional: Ajuste os outros links no celular se necessário */
@media (max-width: 768px) {
    .header-links a:not(.contact-link) {
        font-size: 14px; /* Ajuste para caber melhor no celular */
        margin-right: 10px;
        display: none;
    }
    
    .logo-img {
  height: 25px;
  width: auto;
}


.menu-icon {
  font-size: 26px;
  padding:5px 10px;
    
}



 @media (max-width: 768px) {
    .site-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 15px;
     
    }

    .header-top {
        display: flex;
        align-items: center;
        gap: 0;
        padding: 0;
    }

    .header-links {
        position: static;
        transform: none;
        display: flex;
        gap: 10px;
        margin-left: auto;
    }

    .header-links a {
        display: block;
        font-size: 13px;
        color: #fff;
    }
}







@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
     .footer-container {
        padding: 0 20px 20px 10px;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}




@media (min-width: 1025px) {
   
    .menu-cat { padding: 8px 12px; font-size: 14px; }
    .menu-list { font-size: 15px; }
    .submenu li a { font-size: 16px; }

    .header-links { padding-right: 10px; } }
 
/* ============================================================
   RESPONSIVO — DESKTOP GRANDE
============================================================ */
@media (min-width: 1400px) {
 
     .menu-cat {
  padding: 8px 12px;
      font-size: 14px;
}
.menu-list{
    font-size: 15px;
}
.submenu li a {
    display: block;
    font-size: 16px;
 
}
.arrow { 
  
    font-size: 17px;
}  

.btn-topo {
    position: fixed;
    bottom: 40px;
    right: 24px;
    left: auto;
    z-index: 9999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(10, 10, 20, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 179, 119, 0.35);
    color: #D6B377;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.btn-topo:hover {
    border-color: rgba(214, 179, 119, 0.8);
    background: rgba(214, 179, 119, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(214, 179, 119, 0.15);
}

.side-menu::-webkit-scrollbar {
    width: 5px;
}

.side-menu::-webkit-scrollbar-track {
    background: #0f0f0f;
    border-radius: 6px;
}

.side-menu::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 6px;
}

.side-menu::-webkit-scrollbar-thumb:hover {
    background: #5a5a5a;
}

/* Para Firefox */
.side-menu {
    scrollbar-width: thin;
    scrollbar-color: #3a3a3a #0f0f0f;
}

}

/* ============================================================
   RESPONSIVO — DESKTOP
============================================================ */
@media (min-width: 1025px) and (max-width: 1399px) {
 
.menu-cat {
    padding: 12px 25px;
      font-size: 13px;
}
.submenu li a {
    display: block;
    font-size: 16px;
 
}
.arrow { 
  
    font-size: 17px;
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .navbar-logo {
        margin-left: 40px;
    }

}










