/* 
  CÂNIONS DO SALOBRA - LANDING PAGE CSS
  Design de Referência: Aventra Template
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Lato:wght@300;400;700&family=Marcellus&display=swap');

:root {
  /* Paleta de Cores Premium */
  --color-primary: #123524;
  --color-primary-light: #254d37;
  --color-accent: #85a947;
  --color-accent-hover: #6c8c36;
  --color-secondary: #3e7b27;
  --color-bg-light: #f8f7f4;
  --color-bg-alt: #efe3c2;
  --color-bg-border: #e4e0d8;
  --color-text-dark: #0c0d0e;
  --color-text-muted: #636969;
  --color-text-white: #ffffff;
  --color-warning-bg: #fffcf4;
  --color-warning-border: #f1dfb1;
  
  /* Tipografia */
  --font-title: 'Marcellus', serif;
  --font-subtitle: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;
  
  /* Grid & Spacing */
  --container-width: 1200px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 20px;
  
  /* Sombra & Efeitos */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(18, 53, 36, 0.08);
  --shadow-lg: 0 20px 40px rgba(18, 53, 36, 0.12);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset Geral */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Tipografia Comum */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--color-primary);
  font-weight: 400;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  position: relative;
  margin-bottom: 3.5rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--color-accent);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Containers e Layout */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-text-white);
}

.section-dark h2, .section-dark h3 {
  color: var(--color-text-white);
}

.section-alt {
  background-color: var(--color-bg-alt);
}

/* Badges e Tags */
.section-tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.section-tag.text-center {
  text-align: center;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.section-subtitle-lead {
  font-family: var(--font-subtitle);
  font-size: 1.35rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.4;
  margin-top: -2rem;
}

/* Botões Customizados */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--border-radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-text-white);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(133, 169, 71, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--color-text-white);
  color: var(--color-primary);
}

.btn-white:hover {
  background-color: var(--color-accent);
  color: var(--color-text-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-full {
  width: 100%;
}

/* Animações de Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* HEADER STYLE */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: transparent;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background-color: rgba(18, 53, 36, 0.95);
  height: 80px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 55px;
  width: auto;
  transition: height var(--transition-normal);
}

.header.scrolled .logo-img {
  height: 48px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.5rem 0;
}

.header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link:hover::after {
  width: 80%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-text-white);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-color: #000;
  display: flex;
  align-items: stretch;
  padding-top: 130px;
  padding-bottom: 120px;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-content {
  width: 100%;
  min-height: calc(100vh - 250px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  color: var(--color-text-white);
}

.hero-badge {
  display: inline-block;
  background-color: rgba(133, 169, 71, 0.2);
  border: 1px solid var(--color-accent);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  backdrop-filter: blur(5px);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

/* INTRO SECTION */
.intro-section {
  background-color: var(--color-bg-light);
  padding: 5rem 0 3rem 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.intro-content {
  max-width: 850px;
  margin: 0 auto;
}

.intro-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--color-primary);
  margin-bottom: 2.5rem;
  line-height: 1.25;
  position: relative;
  display: inline-block;
  padding-bottom: 1.5rem;
}

.intro-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--color-accent);
}

.intro-text {
  font-family: var(--font-subtitle);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  color: var(--color-text-muted);
  line-height: 1.65;
  font-style: italic;
  margin-top: 1rem;
}

/* STATS SECTION */
.stats-section {
  background-color: var(--color-bg-light);
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-card {
  background-color: var(--color-text-white);
  border: 1px solid var(--color-bg-border);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.stat-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(133, 169, 71, 0.1);
  color: var(--color-secondary);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.stat-unit {
  font-family: var(--font-subtitle);
  font-size: 1.1rem;
  color: var(--color-accent);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ABOUT SECTION */
.about-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.about-images {
  position: relative;
  display: flex;
}

.image-grid-main {
  width: 85%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img {
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-grid-main:hover .about-img {
  transform: scale(1.05);
}

.image-grid-sub {
  position: absolute;
  width: 45%;
  bottom: -30px;
  right: 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 8px solid var(--color-bg-alt);
  box-shadow: var(--shadow-lg);
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-text-lead {
  font-family: var(--font-subtitle);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
}

.feature-icon {
  font-size: 1.3rem;
  line-height: 1;
}

/* EXPERIENCES / TOURS SECTION */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tour-card {
  background-color: var(--color-text-white);
  border: 1px solid var(--color-bg-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.tour-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.tour-card:hover .tour-img {
  transform: scale(1.08);
}

.tour-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tour-content {
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-bg-border);
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 700;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.tour-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.tour-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.tour-inclusions {
  background-color: var(--color-bg-light);
  border-left: 3px solid var(--color-accent);
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  color: var(--color-text-dark);
}

.tour-inclusions strong {
  color: var(--color-primary);
}

/* INFRASTRUCTURE SECTION */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  margin-top: 2rem;
}

.infra-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.infra-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  background-color: rgba(133, 169, 71, 0.15);
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(133, 169, 71, 0.3);
}

.infra-item h4 {
  color: var(--color-text-white);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.infra-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* GALLERY SECTION */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(18, 53, 36, 0.2), rgba(18, 53, 36, 0.85));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-normal);
}

.gallery-overlay span {
  color: var(--color-text-white);
  font-family: var(--font-title);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 0.3rem;
  transform: translateY(10px);
  transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* LIGHTBOX MODAL */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 13, 14, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--color-text-white);
  font-size: 3rem;
  cursor: pointer;
  z-index: 2010;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-white);
  font-size: 1.8rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2010;
}

.lightbox-nav:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80vh;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 4px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  object-fit: contain;
}

/* SAFETY & TIPS SECTION */
.safety-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.safety-media {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.safety-img {
  width: 100%;
  object-fit: cover;
}

.safety-notes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.safety-card {
  background-color: var(--color-text-white);
  border: 1px solid var(--color-bg-border);
  padding: 1.8rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.safety-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.safety-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.warning-card {
  background-color: var(--color-warning-bg);
  border-color: var(--color-warning-border);
}

.warning-card h5 {
  color: #a05c00;
}

.safety-list {
  margin-top: 1rem;
  padding-left: 1.2rem;
  list-style-type: disc;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.safety-list li {
  margin-bottom: 0.4rem;
}

/* PRESS / MIDIA SECTION */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background-color: var(--color-text-white);
  border: 1px solid var(--color-bg-border);
  border-radius: var(--border-radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.news-source {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.news-title {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.news-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
  flex-grow: 1;
}

.news-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
}

.news-link:hover {
  color: var(--color-accent);
}

/* FAQ SECTION */
.faq-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-text-white);
  border: 1px solid var(--color-bg-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--color-primary);
  text-align: left;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: rgba(133, 169, 71, 0.05);
}

.faq-icon-arrow {
  position: relative;
  width: 18px;
  height: 18px;
  transition: transform var(--transition-normal);
}

.faq-icon-arrow::before, .faq-icon-arrow::after {
  content: '';
  position: absolute;
  background-color: var(--color-primary);
  transition: transform var(--transition-normal);
}

/* Criar um sinal de mais (+) que vira menos (-) */
.faq-icon-arrow::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
}

.faq-icon-arrow::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 18px;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer p {
  padding: 0 2rem 2rem 2rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* PARTNERS SECTION */
.partners-section {
  border-top: 1px solid var(--color-bg-border);
  border-bottom: 1px solid var(--color-bg-border);
  padding: 4rem 0;
}

.partners-title {
  text-align: center;
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.partner-logo-wrapper {
  max-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: all var(--transition-normal);
}

.partner-logo-wrapper:hover .partner-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* CONTACT & RESERVATION SECTION */
.reservation-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-icon {
  font-size: 1.8rem;
  width: 55px;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.contact-link {
  font-size: 1.1rem;
  color: var(--color-text-white);
  font-weight: 400;
}

.contact-link:hover {
  color: var(--color-accent);
}

.reservation-cta-card {
  background-color: var(--color-text-white);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  color: var(--color-text-dark);
  box-shadow: var(--shadow-lg);
}

.reservation-cta-card h4 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.reservation-cta-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.card-note {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

/* FOOTER SECTION */
.footer {
  background-color: #0b2217;
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer h4 {
  color: var(--color-text-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-about {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 60px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-white);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--color-accent);
  color: var(--color-text-white);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.footer-contact-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 0;
  font-size: 0.85rem;
  text-align: center;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* RESPONSIVIDADE (MEDIA QUERIES) */

/* TABLET LAYOUT */
@media (max-width: 992px) {
  .section {
    padding: 4.5rem 0;
  }
  
  .about-container, 
  .safety-container, 
  .reservation-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-images {
    order: 2;
    justify-content: center;
  }
  
  .safety-media {
    order: 2;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* MOBILE NAV HEADER STYLES */
@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 90px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: var(--color-primary);
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem 1.5rem;
    transition: left var(--transition-normal);
    z-index: 999;
  }
  
  .header.scrolled .nav-menu {
    top: 80px;
    height: calc(100vh - 80px);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  
  .nav-link {
    font-size: 1.2rem;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Animação Hamburger do menu */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* PEQUENOS DISPOSITIVOS MOBILE */
@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
  }
  
  .infra-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
