
:root {
    --color-primary-green: #4f6f4f; /* Verde Escuro para texto e detalhes */
    --color-secondary-green: #F4F2E8; /* Verde Claro para fundos */
    --color-background-light: #f7fcf6; /* Quase branco, levemente verde */
    --color-white: #F4F2E8;
    --color-text-dark: #222222;
    --color-text-light: #f0f0f0;

    /* Fontes */
    --font-family-primary: 'Poppins', sans-serif;
}

/* Base e Tipografia */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: #F4F2E8; /* Cor de fundo principal */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Classes utilitárias */
.white-bg { background-color: var(--color-white); }
.off-white-bg { background-color: var(--color-background-light); }
.primary-color { color: var(--color-primary-green); }
.secondary-color { color: var(--color-secondary-green); }

h1 { font-size: 5em; font-weight: 900; line-height: 1; }
h2 { font-size: 2.5em; font-weight: 700; }
h4 { font-size: 1.2em; font-weight: 700; }

.section-title {
    padding-bottom: 20px;
    text-transform: uppercase;
}
.large-title {
    font-size: 3.5em;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

/* 1. Menu (Header) - Glassmorphism */
.main-header {
    display: flex;
    height: 100px;
    width: 100%;
    background-color: #F4F2E8;
    /* 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:fixed;
    top: 0;
    z-index: 100;
    /*backdrop-filter: blur(15px);*/
    top: 0;
    left: 0;
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    margin: 0 auto;
    padding: 15px 30px;
    max-width: 1300px;
}


.main-nav a {
    color: #037197;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 15px;
}

.main-nav a:hover {
    color:#b88940;
}

.header-icons i {
    color: var(--color-text-light);
    margin-left: 15px;
    cursor: pointer;
    transition: color 0.3s;
}

.header-icons i:hover {
    color: var(--color-secondary-green);
}

.btn-book {
    justify-self: flex-end;
    background-color: #037197;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 20px;
}

.btn-book:hover {
    background-color:#b88940;
}



/* 2. Banner Principal (Hero Section) */
.hero-banner {
    height: 800px;
    background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('./assets/pexels-megapixel-1481581.jpg'); /* Usar a imagem de fundo */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--color-white);
}

.logo img{
    width: 50px;

}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 100px; 
}

.hero-mini-title {
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color:#fff;
}

.logo img{
    width: 150px;
    height: auto;
}





.hero-text-block h1 {
    color:#fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.glass-box {
    max-width: 500px;
    padding: 30px;
    color: #fff;
    
    /* Efeito de Glassmorphism na caixa de texto */
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 50px;
}

.glass-box h2 {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-actions {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-action {
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8em;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid var(--color-text-light);
    background-color: transparent;
}

.btn-action.primary-bg {
    background-color: #037197;
    border-color: var(--color-primary-green);
    color: var(--color-white);
}

.btn-action:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-action.primary-bg:hover {
    background-color: #b88940;
}

/* 3. Sessão Destaque (Green Paradise) */
.intro-section {
    padding: 80px 0;
    border-radius: 30px 30px 0 0; /* Borda arredondada no topo da seção */
    margin-top: -30px; /* Sobrepor o banner */
    position: relative;
    background-color: var(--color-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.intro-block {
    padding: 0;
}

.intro-block .mini-title {
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    color: #037197;
    margin-bottom: 10px;
}

.intro-block .large-title {
    text-align: left;
    font-size: 3.5em;
    line-height: 1.1;
    margin-bottom: 40px;
    
}


.intro-image-left {
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-block.touch-world {
    text-align: center;
    padding-top: 0;
}

.touch-text {
    font-size: 2.5em;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 100px; /* Ajuste para centralizar visualmente */
    color: white;
    
}

.intro-image-right {
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-top: -150px; /* Sobrepor o texto */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 4. Sessão "Sobre a Empresa" - Detalhe */
.about-detail-section {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.tag {
    display: inline-block;
    background-color: #037197;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-left .main-text {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.4;
    color: #b88940;
}

.about-right .detail-text {
    margin-top: 10px;
    color: #037197;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    color: #037197;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    text-transform: uppercase;
    transition: color 0.3s;
    font-size: 0.9em;
}

.read-more-link i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

/* 5. Sessão de Cards (Services/Features) */
.cards-section {
    padding: 80px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    min-height: 350px;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s;
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: var(--color-text-light); /* Texto claro sobre a imagem */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)); /* Gradiente para legibilidade */
}

.card-title {
    margin-bottom: 5px;
    text-transform: uppercase;
}

.card-description {
    font-size: 0.9em;
    margin-bottom: 10px;
}

.podcast-link {
    color: var(--color-secondary-green);
    font-size: 0.8em;
}

/* 6. Sessão de Destaque Inferior (Inbred Line) */
.bottom-highlight-section {
    padding: 80px 0;
    background-color: var(--color-background-light);
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.highlight-text-block {
    text-align: right;
}

.highlight-text-block .large-title {
    font-size: 4em;
    color: #b88940;
}

.highlight-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: var(--color-white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.image-overlay-text .large-title {
    font-size: 2.5em;
    margin-bottom: 5px;
}

.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: 160px;
  margin-bottom: 15px;
}

.logo-footer p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

/* Títulos das colunas */
.footer-coluna h3 {
  margin-bottom: 15px;
  font-size: 20px;
  border-left: 4px solid #b88940;
  max-width: 50px !important;
}

/* 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 {
    font-family: "Poppins",sans-serif;
    font-size: 17px;
  color: #fff;
  font-weight: 500;
  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);
}

/* Responsivo */
@media (max-width: 768px) {
  .main-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-coluna h3 {
    border-left: none;
    padding-left: 0;
  }
}

/* ** ESTILO RESPONSIVO ** */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        padding: 15px 20px;
    }
    .main-nav {
        margin-top: 10px;
        display: none; /* Esconder a navegação principal no mobile para simplificar */
    }
    .header-icons {
        margin-top: 10px;
    }

    h1 { font-size: 3em; }
    .large-title { font-size: 2.5em; }

    .hero-banner {
        height: 70vh;
    }
    .glass-box {
        max-width: 100%;
        margin-top: 30px;
    }
    .hero-actions {
        justify-content: center;
    }

    .intro-section {
        padding: 40px 0;
    }
    .intro-grid {
        grid-template-columns: 1fr;
    }
    .intro-block .large-title {
        text-align: center;
    }
    .intro-image-left {
        height: 300px;
    }
    .touch-text {
        margin-top: 30px;
        font-size: 2em;
    }
    .intro-image-right {
        margin-top: 30px;
        height: 300px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-left .main-text {
        font-size: 1.2em;
    }
    .about-right {
        margin-top: 20px;
    }

    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .highlight-content {
        grid-template-columns: 1fr;
    }
    .highlight-text-block {
        text-align: left;
    }
    .highlight-text-block .large-title {
        font-size: 3em;
        margin-bottom: 30px;
    }
    .highlight-image {
        height: 300px;
    }
    .image-overlay-text .large-title {
        font-size: 1.8em;
    }
}

@media (max-width: 576px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .btn-action {
        width: 100%;
        text-align: center;
    }
}
