/* --- Variables and Basic Reset --- */
:root {
    --color-background: #F4F2E8; /* Light beige/off-white background */
    --color-primary-text: #037197; /* Dark text */
    --color-secondary-text: #b88940; /* Lighter grey text */
    --color-accent-green: #b88940; /* Dark green accent from the other design (fits well here) */
    --color-light-grey: #E8E7DF; /* Very light grey for separators/backgrounds */
    --font-primary: 'Poppins', sans-serif;
    --max-width: 1300px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-primary-text);
    background-color: var(--color-background);
    font-weight: 400;
}

.site-wrapper {
    margin: 0 auto;
    padding: 0 40px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--color-primary-text);
}

p {
    line-height: 1.6;
    color: var(--color-secondary-text);
}

.section-tag {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary-text);
    margin-bottom: 20px;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s;
}

.explore-link:hover .arrow, .more-link:hover .arrow {
    transform: translateX(5px);
}

/* --- Header & Navigation --- */



.main-header {
    height: 100px;
    width: 100%;
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background-color: rgba(244, 242, 232, 0.9);
    backdrop-filter: blur(15px);
}

/* Usando a classe correta do HTML */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; 
}

.logo img {
    max-width: 150px;
    height: auto;
}

.main-nav a {
    color: var(--color-primary);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 15px;
}

.main-nav a:hover {
    color: var(--color-secondary);
}
.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;
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 50px;
    margin-bottom: 80px;
    padding-top: 200px;
}

.agency-title {
    font-size: 70px;
    letter-spacing: 5px;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Text on left, image on right */
    gap: 20px;
    align-items: end;
}

.hero-text {
    padding-bottom: 20px;
}

.hero-text .subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 250px;
}

.explore-link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-primary-text);
    padding-bottom: 5px;
}

.hero-image-placeholder {
    /* Placeholder style for the large image */
    background-image: url('./assets/skyscrapers-from-low-angle-view.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 350px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --- Service Level Section --- */
.service-section {
    padding-bottom: 80px;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
}

.service-image {
    background-color: var(--color-light-grey);
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 10px;
}

.img-left {
    background-image: url('placeholder-cliffs.jpg'); /* Replace with your image */
    height: 50vh;
}

.img-right {
    background-image: url('placeholder-columns.jpg'); /* Replace with your image */
    height: 50vh;
}

.service-text {
    padding: 40px 20px;
}

.service-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.service-text p {
    margin-bottom: 30px;
}

.more-link {
    font-weight: 500;
}

/* --- Why Choose Us Section --- */
.choose-us-section {
    padding-bottom: 80px;
}

.choose-us-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
}

.features-row {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
}

.feature-item {
    flex-basis: 300px;
    padding-right: 50px;
    position: relative;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-item .icon-placeholder {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--color-accent-green);
    opacity: 0.1;
}

/* --- What We Offer Section (Tours) --- */
.offer-section {
    padding-bottom: 100px;
}

.offer-heading {
    max-width: 550px;
    margin-bottom: 50px;
}

.offer-heading h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.offer-content-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr; /* Tabs on left, content on right */
    gap: 50px;
    border: 1px solid var(--color-light-grey);
    border-radius: 10px;
    padding: 30px;
}

/* Offer Menu Tabs */
.offer-menu-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
}

.tab-button {
    text-align: left;
    background-color: transparent;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
}

.tab-button.active {
    background-color: var(--color-light-grey);
    color: var(--color-accent-green);
    font-weight: 600;
}

/* Offer Details */
.offer-details {
    padding: 20px 0;
}

.details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.details-text .tag {
    font-size: 12px;
    color: var(--color-secondary-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.details-text h4 {
    font-size: 24px;
    margin: 10px 0 20px 0;
    font-weight: 700;
}

.details-text p {
    margin-bottom: 30px;
}

.details-image {
    /* Placeholder style for the van image */
    background-image: url('./assets/modern-office-with-no-people-luxury-chair-generated-by-ai.jpg'); /* Replace with your image */
    background-color: var(--color-light-grey);
    background-size: cover;
    background-position: center;
    height: 350px;
    border-radius: 5px;
}

/* Footer Note */
.footer-note {
    text-align: center;
    font-size: 12px;
    color: var(--color-secondary-text);
    padding: 20px 0;
}

.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);
}
