@import url('https://cloudflare.com');

/* ==========================================
   ESTILOS GLOBAIS E TIPOGRAFIA
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #f6f1eb;
    color: #2b2b2b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.main-content {
    width: 100%;
}

/* ==========================================
   CABEÇALHO TRANSPARENTE
   ========================================== */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    background-color: transparent;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    letter-spacing: 5px;
    font-weight: 300;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #555555;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Segoe UI', Arial, sans-serif;
    transition: color 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #2b2b2b;
    font-weight: 600;
}

/* Botão Solicitar Acesso com Efeito Hover Idêntico */
.btn-acesso {
    border: 1px solid #c5b6a7;
    padding: 12px 24px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #2b2b2b;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-acesso:hover {
    background-color: #2b2b2b;
    color: #f6f1eb;
    border-color: #2b2b2b;
}

.btn-acesso-mobile {
    display: none;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #2b2b2b;
    cursor: pointer;
    z-index: 1100;
}

/* ==========================================
   SEÇÃO HERO (TEXTOS LEVEMENTE ELEVADOS)
   ========================================== */
.hero-section-fullscreen {
    position: relative;
    width: 100%;
    height: 1161px;
    overflow: hidden;
    background-size: cover;
    background-position: center 65%;
    background-repeat: no-repeat;
    background-color: #e5dec9;
}

.hero-overlay-content {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: linear-gradient(to right, rgba(246, 241, 235, 0.4) 30%, rgba(246, 241, 235, 0) 100%);
    padding-top: 90px;
}

.hero-text-block {
    padding: 20px 60px 80px 120px; /* Reduzido padding superior para elevar o bloco de texto */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(-40px); /* Move levemente o texto para cima */
}

.main-title {
    font-size: 82px;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.subtitle {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 40px;
    max-width: 440px;
    line-height: 1.5;
}

.subtitle span {
    display: block;
}

.description {
    font-size: 17px;
    color: #1a1a1a;
    max-width: 480px;
    margin-bottom: 25px;
    font-style: italic;
    text-shadow: 0px 1px 2px rgba(255, 255, 255, 0.4);
}

.btn-historia {
    align-self: flex-start;
    border: 1px solid #2b2b2b;
    padding: 16px 35px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #2b2b2b;
    margin-top: 20px;
    background-color: rgba(246, 241, 235, 0.7);
    transition: all 0.3s ease;
}

.btn-historia:hover {
    background-color: #2b2b2b;
    color: #f6f1eb;
}

.hero-sidebar-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 120px 80px 40px;
    transform: translateY(-40px); /* Sobe os conceitos na mesma proporção */
}

.concept-list {
    list-style: none;
}

.concept-list li {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 25px;
    color: #2b2b2b;
    text-transform: uppercase;
    font-weight: 500;
}

/* ==========================================
   CARDS INFERIORES COM EFEITO ELEGANTE
   ========================================== */
.features-section {
    background-color: #eee7df;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 100px 60px;
}

.feature-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

/* Efeito ao passar o mouse sobre os cards (Flutuação Minimalista) */
.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    width: 1px;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 30px;
    color: #6a6a6a;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    color: #2b2b2b;
    transform: scale(1.1);
}

.feature-title {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    min-height: 36px;
    transition: color 0.3s ease;
}

.feature-box:hover .feature-title {
    color: #000000;
}

.feature-text {
    font-size: 14px;
    color: #666666;
    max-width: 290px;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.feature-box:hover .feature-text {
    color: #2b2b2b;
}

/* ==========================================
   RODAPÉ TEXTURA
   ========================================== */
.main-footer {
    width: 100%;
    height: 100px;
    color: #baa495;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: #3b281e;
    background-image: url('textura_rodape.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-logo {
    font-size: 16px;
    border: 1px solid #baa495;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-style: italic;
    background-color: rgba(59, 40, 30, 0.6);
}

.footer-text {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* ==========================================
   IMAGENS INDIVIDUAIS POR PÁGINA
   ========================================== */
.home-bg { background-image: url('bkg_casa.jpg'); }
.experiences-bg { background-image: url('bkg_experiencias.jpg'); background-position: center bottom; }
.jornal-bg { background-image: url('bkg_jornal.jpg'); }
.contato-bg { background-image: url('bkg_contato.jpg'); }

/* Estilo do bloco de contato */
.contact-info-list { margin: 25px 0 35px 0; display: flex; flex-direction: column; gap: 15px; }
.contact-info-item { display: flex; align-items: center; gap: 15px; font-family: 'Segoe UI', sans-serif; font-size: 14px; color: #2b2b2b; }
.contact-info-item i { font-size: 16px; color: #4a4a4a; width: 20px; text-align: center; }

/* ==========================================
   RESPONSIVIDADE MOBILE
   ========================================== */
@media (max-width: 1024px) {
    .hero-overlay-content { grid-template-columns: 1fr; background: rgba(246, 241, 235, 0.7); }
    .hero-text-block, .hero-sidebar-block { transform: none; padding: 40px; }
    .main-title { font-size: 60px; }
    .features-section { grid-template-columns: 1fr; padding: 60px 40px; }
    .feature-box { padding: 40px 0; }
    .feature-box:hover { transform: none; }
    .feature-box:not(:last-child)::after { right: 10%; top: auto; bottom: 0; width: 80%; height: 1px; }
}

@media (max-width: 768px) {
    .main-header { padding: 0 30px; }
    .btn-acesso { display: none; }
    .hamburger-btn { display: block; }
    .nav-menu { position: fixed; top: 0; right: -100%; width: 75%; height: 100vh; background-color: #f6f1eb; flex-direction: column; justify-content: center; align-items: center; gap: 30px; transition: right 0.4s ease; box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1); z-index: 1050; }
    .nav-menu.open { right: 0; }
    .btn-acesso-mobile { display: flex; border: 1px solid #c5b6a7; padding: 12px 24px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; color: #2b2b2b; font-family: 'Segoe UI', sans-serif; align-items: center; gap: 10px; }
}
