/* ==================================================
   FOLHA DE ESTILO GLOBAL - SHANGRI-LÁ SITE
================================================== */

/* =============================================
   1. CONFIGURAÇÕES GLOBAIS
============================================= */
:root {
    --cor-preto: #0d0d0d;
    --cor-vermelho-vibrante: #e50914;
    --cor-dourado: #d4af37;
    --cor-branco: #f5f5f5;
    --cor-cinza-texto: #a0a0a0;
    --fonte-titulo: 'Bebas Neue', cursive;
    --fonte-corpo: 'Lato', sans-serif;
}

body {
    background-color: var(--cor-preto);
    color: var(--cor-branco);
    font-family: var(--fonte-corpo);
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: var(--fonte-titulo);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tipografia base (Mobile) */
h2 {
    font-size: 2.5rem; /* Menor para mobile */
    color: var(--cor-dourado);
    text-align: center;
    margin-bottom: 40px;
}

/* =============================================
   2. COMPONENTES REUTILIZÁVEIS
============================================= */

/* --- Header (Mobile First) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    padding: 15px 0;
    transition: all 0.4s ease-in-out; 
}

.site-header.scrolled,
.site-header.visible {
    background-color: var(--cor-preto);
    border-color: #222;
}

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

.site-logo img {
    height: 40px;
    width: auto;
    position: relative;
    z-index: 1001;
}

.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.hamburger-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--cor-branco);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.hamburger-btn.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.main-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main-navigation.active { display: flex; }
.main-navigation ul { 
    flex-direction: column; 
    text-align: center; 
    gap: 20px; 
}
.main-navigation a { font-family: var(--fonte-titulo); 
    font-size: 2.5rem; 
    color: var(--cor-branco); 
    padding: 10px; 
}
.main-navigation a:hover { color: var(--cor-dourado); }

.header-cta-mobile { margin-top: 40px; }
.header-cta-desktop { display: none; }

/* --- Botões --- */
.cta-button {
    display: inline-block;
    background-color: var(--cor-vermelho-vibrante);
    color: var(--cor-branco);
    padding: 15px 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--fonte-corpo);
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.cta-button:hover { 
    transform: scale(1.05); 
    background-color: #ff1a27; 
}
.cta-button-secondary { 
    background: none; 
    border: 2px solid var(--cor-dourado); 
    color: var(--cor-dourado); 
}
.cta-button-secondary:hover { 
    background-color: var(--cor-dourado); 
    color: var(--cor-preto); 
}

/* --- Footer --- */
.site-footer {
    background-color: #1a1a1a;
    color: var(--cor-cinza-texto);
    padding: 60px 0 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Coluna única no mobile */
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}
.footer-column .logo { 
    max-width: 150px; 
    margin-bottom: 15px; 
}
.footer-column h4 { 
    font-size: 1.8rem; 
    color: var(--cor-branco); 
    margin-bottom: 15px; 
}
.footer-column p { line-height: 1.7; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul a { transition: color 0.3s; }
.footer-column ul a:hover { color: var(--cor-dourado); }
.social-icons { 
    display: flex; 
    gap: 20px; 
}
.social-icons a { 
    font-size: 1.8rem; 
    transition: color 0.3s; 
}
.social-icons a:hover { color: var(--cor-vermelho-vibrante); }
.footer-bottom { 
    padding: 25px 0; 
    text-align: center; 
    font-size: 0.9rem; 
}
.footer-bottom a { 
    background-image: linear-gradient(to right, #007bff, #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
}

/* =============================================
   ESTILOS PARA TELAS MAIORES (TABLET/DESKTOP)
============================================= */
@media (min-width: 768px) {
    /* Tipografia Desktop */
    h2 { font-size: 3.5rem; }

    /* Header Desktop */
    .site-logo img { height: 50px; }
    .hamburger-btn { display: none; }
    .main-navigation {
        display: flex;
        position: static;
        height: auto;
        width: auto;
        background: none;
        flex-direction: row;
        align-items: center;
    }
    .main-navigation ul { 
        display: flex;
        flex-direction: row; 
        gap: 35px; 
    }
    .main-navigation a {
        font-family: var(--fonte-corpo);
        font-size: 0.9rem;
        font-weight: 700;
    }
    .header-cta-mobile { display: none; }
    .header-cta-desktop { display: block; }
    .site-header {
        transform: translateY(-100%);
        opacity: 0;
    }
    .site-header.scrolled,
    .site-header.visible {
        background-color: var(--cor-preto);
        border-color: #222;
        transform: translateY(0);
        opacity: 1;
    }
    /* Footer Desktop */
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Volta ao grid flexível */
    }
}