/* ======================================= */
/* 1. VARIÁVEIS & RESET BÁSICO             */
/* ======================================= */
:root {
    --color-primary: #b88940; /* Destaque, como texto e bordas (Cor Ambar/Dourada) */
    --color-secondary: #037197; /* Cor do botão/link (Cor Azul/Ciano) */
    --color-text-light: #f5f5f5;
    --color-text-dark: #333;
    --color-bg-dark: #1a1a1a;
    --color-bg-light: #f0f0f0;
    --header-height: 80px; /* Altura aproximada do cabeçalho */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    color: var(--color-text-dark);
    line-height: 1.6;
}

/* Regra para centralizar o conteúdo em todas as seções */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

/* ======================================= */
/* 2. ESTILOS DO HEADER & NAVEGAÇÃO        */
/* ======================================= */

.main-header {
    /* Removido position: absolute para que o Hero comece abaixo dele */
    height: 100px;
    width: 100%;
    /* Se quiser fixar no topo enquanto rola, use: position: fixed; top: 0; z-index: 1000; */
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position:absolute;
    top: 0;
    backdrop-filter: blur(15px);
}

.header-content {
    /* Centraliza e aplica Flexbox no container do header */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Garante que o conteúdo do header ocupe a altura total */
    padding: 0 60px; /* Padding ajustado para lateral */
}

.logo img {
    /* Ajuste o tamanho do seu logo aqui */
    max-width: 150px;
    height: auto;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.85em;
}

.main-nav a:hover {
    color: var(--color-primary); /* Hover: #b88940 */
}

/* Estilos de ícones não utilizados na estrutura inicial, mas mantidos */
.header-icons i {
    color: var(--color-text-dark); /* Cor ajustada para fundo claro do header */
    margin-left: 15px;
    cursor: pointer;
    transition: color 0.3s;
}

.header-icons i:hover {
    color: var(--color-secondary); /* Destaque para o hover */
}


.btn-book {
    font-family: "Montserrat",sans-serif;
    justify-self: flex-end;
    background-color: var(--color-bg-light);
    color: var(--color-secondary);
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-book:hover {
    background-color:var(--color-secondary);
    color: #fff;
}
/* ======================================= */
/* 3. ESTILOS DO HERO SECTION (Conteúdo Principal) */
/* ======================================= */

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../assets/pexels-samforson-243138.jpg);
    background-size: cover ; 
    background-position: center right;
    background-repeat: no-repeat;
    /* **Para usar uma imagem de fundo real, descomente e ajuste:** */
    /* background: url('sua-imagem-de-fundo.jpg') no-repeat center center/cover; */
    color: var(--color-text-light);
    /* Ajusta a altura mínima para 100% da tela visível menos a altura do header */
    min-height: 900px; 
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

.hero-section > .header-content {
    /* Renomeei este para 'hero-wrapper' ou 'hero-container' para evitar confusão com o header principal, mas vou manter para consistência temporária. */
    flex-grow: 1;
    padding-bottom: 50px;
    padding-top: 20px; /* Padding interno para o conteúdo, ajustado */
    /* Ajustes para alinhar o conteúdo principal do hero */
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

.top-bar-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
}

.btn-waitlist-nav {
    background-color: transparent;
    border: 1px solid var(--color-primary); 
    color: var(--color-primary);
    padding: 8px 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-waitlist-nav:hover {
    background-color: rgba(184, 137, 64, 0.1);
}

.hero-text-and-form {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-grow: 1;
    align-items: center;
    
   
}

.hero-main-content {
    max-width: 800px;
    
    
}

h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.reserve-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}



.btn-waitlist-main {
    background-color: var(--color-secondary); 
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-waitlist-main:hover {
    background-color: #0492c2; 
}

.feature-pills {
    display: flex;
    gap: 20px;
}

.pill {
    padding-right: 20px; 
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 150px;
}

.pill:last-child {
    border-right: none;
}

.pill strong {
    color: var(--color-primary); 
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.pill p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.hero-image-placeholder {
    width: 350px; 
    height: 350px;
    position: relative; 
    /* Adicione sua imagem de fundo aqui */
}

.scroll-down {
    text-align: center;
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    margin-top: 30px;
}

.scroll-down .arrow {
    display: block;
    font-size: 1.5rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}


/* ======================================= */
/* 4. ESTILOS DA SEÇÃO DE TERCEIRO ESPAÇO  */
/* ======================================= */

.third-space-section {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 100px 5%;
    height: 700px;
    
}

.content-wrapper {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.left-content {
    flex: 1;
}

.left-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 500;
    max-width: 400px;
}

.left-content h2 strong {
    font-weight: 800; 
}

.right-content {
    flex: 2;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item .icon {
    color: var(--color-secondary); 
    font-size: 1.5rem;
    font-weight: 800;
    margin-right: 5px;
    display: inline-block;
    transform: translateY(3px);
}

.feature-item strong {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: inline;
}

.feature-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.team-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background-color: #F4F2E8;
  color: #037197;
  padding: 80px 10%;
  gap: 40px;
  font-family: 'Poppins', sans-serif;
}

.content .tagline {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.7;
}

.content h2 {
  font-size: 38px;
  margin: 20px 0 10px;
  line-height: 1.2;
}

.content p {
  color: #037197;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 400px;
}

.btn {
  background-color: #037197;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #f2f2f2;
}

/* --- Imagem e cartões --- */
.image-area {
  position: relative;
  display: flex;
  justify-content: center;
}

.main-img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  object-fit: cover;
}

/* Cartões sobre a imagem */
.card {
  position: absolute;
  left: 30%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #037197;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  width: 220px;
  text-align: left;
  font-size: 14px;
}

.card.small { top: 20%; }
.card.medium { top: 45%; }
.card.large { top: 70%; }

.card p {
  margin: 0;
  font-weight: 500;
}
 

.main-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  background-color: #037197;
  color: #fff;
  padding: 40px 60px;
}

/* Cada coluna */
.footer-coluna {
  flex: 1;
  min-width: 220px;
}

/* Logo e texto */
.logo-footer img {
  width: 120px;
  margin-bottom: 15px;
}

.logo-footer p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ccc;
}

/* Títulos das colunas */
.footer-coluna h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  border-left: 4px solid #b88940;
  padding-left: 10px;
}

/* Lista de links */
.footer-coluna ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-coluna ul li {
  margin-bottom: 8px;
}

.footer-coluna ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-coluna ul li a:hover {
  color: #fff;
}

/* Contatos com ícones */
.contatos i {
  margin-right: 8px;
  color: #b88940;
}

/* Linha inferior */
.footer-bottom {
  background-color: #037197;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}