/* =========================================
   1. VARIABLES & SETUP
   ========================================= */
:root {
  /* Paleta Nova */
  --primary-dark: #1c1b55;   /* Primária 1 */
  --primary-mid: #2d5dab;    /* Primária 2 */
  --primary-light: #addede;  /* Primária 3 */
  --secondary-cyan: #86c8d2; /* Secundária 1/2 */

  /* Neutros */
  --bg-body: #f4f6f8;
  --bg-white: #ffffff;
  --text-main: #333333;
  --text-muted: #666666;

  /* Utilities */
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* =========================================
   2. LAYOUT UTILITIES
   ========================================= */
.container {
  margin: 0 auto;
  padding: 0 20px;
}

.container.hero-container {
  padding: 0;
  max-width: 100%;
}

section {
	margin: 2em 0;
}

.section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}

.section-title {
  color: var(--primary-dark);
  margin-bottom: 30px;
  font-size: 2rem;
  /* Merged style from alternative definition */
  border-left: 5px solid var(--primary-mid);
  padding-left: 15px;
}

.page-title {
  text-align: center;
  padding: 40px 0 20px;
  color: var(--primary-dark);
}

.divisor {
  margin: 3em 25vw;
}

.mt-1 { 
	margin-top: .25rem;
}

/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
/* Top Bar (Faixa Azul) */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--primary-light);
  padding: 16px 0;
  font-size: 1rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.top-bar a:hover {
  color: var(--bg-white);
  text-decoration: underline;
}

/* Main Header (Branco Sticky) */
.main-header {
  background-color: var(--bg-white);
  padding: 20px 0 0 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
	display: flex;
}

.logo img {
  max-height: 50px;
  margin-right: 16px;
  width: auto;
}

/* Header Search Bar */
.header-search {
  position: relative;
  width: 300px;
}

.header-search input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  outline: none;
  transition: var(--transition);
}

.header-search input:focus {
  border-color: var(--primary-mid);
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(45, 93, 171, 0.1);
}

.header-search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--primary-mid);
  font-size: 1.1rem;
}

/* Navigation Links */
.header-bottom-row {
  border-top: 1px solid #f0f0f0;
  padding: 15px 0;
  width: 100%;
}

.main-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 500;
  color: var(--text-main);
  justify-content: flex-start;
}

.main-nav-links button {
  position: relative;
  color: var(--primary-dark);
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 600;
  background: unset;
  border: unset;
  display: flex;
  align-items: center;
}

.main-nav-links button:hover {
  color: var(--primary-mid);
}

.main-nav-links button::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary-cyan);
  transition: width 0.3s;
}

.main-nav-links button:hover::after {
  width: 100%;
}

/* Social Icons */
.social, .social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icons svg {
  width: 24px;
  color: var(--primary-dark);
}

.social-links a:hover {
  color: var(--secondary-cyan);
  transform: scale(1.1);
}

/* Alternate Dark Header Styles */
header.dark-header {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.intranet-link {
  font-weight: 600;
  color: var(--bg-white);
}
.intranet-link:hover {
  text-decoration: underline;
}

.dropdown {
	position: relative;
}

.dropdown-menu {
  /* Position logic */
  position: absolute;
  top: calc(100% + 5px); /* Gap below the button */
  left: 0;
  
  /* Initial State (Invisible) */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
  pointer-events: none; /* Prevents clicking menu while it's hidden */
  
  width: max-content;
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border-radius: .25rem;
  border: unset;
  box-shadow: 0px 5px 12px 4px #00000017;
}

/* This class is added by JavaScript */
.dropdown.active > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto; /* Re-enable clicks */
}

.dropdown-menu > a {
	display: flex;
	align-items: center;
	color: var(--primary-mid);
	padding: .6rem 1.4rem;
	border-radius: .25rem;
}

.dropdown-menu > a:hover {
	color: var(--bg-white);
	background: var(--secondary-cyan);
}

.top-bar-content span.material-icons,
.dropdown-menu > a > span.material-icons {
	font-size: 20px;
	margin-left: 1px;
}

/* =========================================
   4. COMPONENT STYLES
   ========================================= */

/* --- Forms & Filters --- */

.filters-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.filter-group {
  display: flex;
  flex-direction: column;
  min-width: 200px;
  flex: 1;
}

.filter-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 5px;
  font-weight: 600;
}

.form-control {
  padding: 12px 15px;
  border-radius: var(--border-radius);
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  font-family: inherit;
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-mid);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(45, 93, 171, 0.1);
}

/* --- Buttons --- */
.btn-search {
  background-color: var(--primary-mid);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  align-self: flex-end;
  height: 48px;
  transition: var(--transition);
}

.btn-search:hover {
  background-color: var(--primary-dark);
}

.btn-reserve {
  display: inline-block;
  background-color: var(--primary-mid);
  color: var(--bg-white);
  padding: 16px 45px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 15px rgba(45, 93, 171, 0.3);
  width: 100%;
  text-align: center;
}

.btn-reserve:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 93, 171, 0.4);
}

.btn-agenda {
  background-color: transparent;
  color: var(--primary-mid);
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: bold;
  border: 2px solid var(--primary-mid);
  transition: var(--transition);
}

.btn-agenda:hover {
  background-color: var(--primary-mid);
  color: var(--bg-white);
}

.btn-more {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  border: 2px solid;
  background: transparent;
}

/* --- Partner Cards --- */
.partners-section {
  padding-bottom: 80px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.partner-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-cyan);
}

.card-image {
  height: 200px;
  width: 100%;
  background-color: #eee;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.partner-card:hover .card-image img {
  transform: scale(1.05);
}

.partner-category {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(28, 27, 85, 0.9);
  color: var(--primary-light);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.card-content {
  padding: 12px 15px;
  border-top: 4px solid var(--secondary-cyan);
  background: white;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.partner-name {
  font-size: 1rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.2;
}

.partner-benefit {
  font-size: 0.85rem;
  color: var(--primary-mid);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.partner-address {
  font-size: 0.75rem;
  color: #718096;
  margin-top: 5px;
  line-height: 1.2;
}

/* --- Service Buttons (Grid) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.service-btn {
  color: var(--primary-mid);
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  color: #444;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.service-btn.green  {
	color: #3aa32d;
}

.service-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background-color: #fff;
  border-color: var(--primary-mid);
  color: var(--primary-mid);
}

.service-btn.green:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px #3aa32ddd;
  background-color: #fff;
  border-color: #3aa32d;
  color: #3aa32d;
}

.service-btn .material-icons {
  font-size: 48px;
}

.service-btn span.label {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
}

.service-btn.servicos-adicionais {
	display: none;
}

.service-btn.servicos-adicionais.visivel {
	display: inherit;
}

/* =========================================
   5. SPECIFIC SECTIONS
   ========================================= */

/* --- Hero Collage --- */
.hero-collage {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 300px 300px;
  gap: 0;
  margin-top: 0;
}

.collage-item {
  background-color: #ddd;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collage-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, opacity 0.5s ease;
}

.collage-item:hover img {
  transform: scale(1.05);
}

.item-small-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.item-small-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
.item-large { grid-column: 2 / 3; grid-row: 1 / 3; }

.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
  color: var(--primary-light);
  font-weight: bold;
  height: 100%;
  text-align: center;
  padding: 10px;
  letter-spacing: 1px;
}

.item-small-1 .placeholder-img { background: var(--primary-dark); }
.item-small-2 .placeholder-img { background: var(--primary-mid); }
.item-large .placeholder-img {
  background: radial-gradient(circle at center, var(--primary-mid) 0%, var(--primary-dark) 100%);
}

.hero-nav {
  margin: 1em 0;
  display: flex;
  justify-content: center;
  gap: .5em;
}

.hero-nav .btn-more {
  display: flex;
  align-items: center;
  font-size: 1em;
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.hero-nav .btn-more span {
  padding-right: .5em;
}

.hero-nav .btn-more:hover {
  border-color: var(--primary-mid);
  color: var(--bg-white);
  background: var(--primary-mid);
}

/* --- Main Info Section --- */
.info-section {
  background-color: var(--bg-white);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.regulamento-container {
  display: flex;
  justify-content: center;
}

.main-title {
  font-size: 2.8rem;
  color: var(--primary-dark);
  margin-bottom: 25px;
  line-height: 1.2;
}

.description {
  margin-bottom: 40px;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.coffee-block {
  background-color: rgba(173, 222, 222, 0.2);
  padding: 25px;
  border-left: 4px solid var(--secondary-cyan);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.coffee-block h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--primary-mid);
}

.coffee-block p {
  color: var(--text-main);
  font-size: 0.95rem;
}

.info-list-block h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary-light);
  display: inline-block;
  padding-bottom: 5px;
}

.info-list {
  padding-left: 0;
  margin-bottom: 40px;
}

.info-list li {
  margin-bottom: 12px;
  color: var(--text-main);
  display: flex;
  align-items: center;
}

.info-list li::before {
  content: "•";
  color: var(--secondary-cyan);
  font-weight: bold;
  font-size: 1.5em;
  margin-right: 10px;
  line-height: 0.5;
}

/* --- Events Section --- */
.events-section {
  background-color: #f4f6f8;
  padding-bottom: 100px;
}

.events-title {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 40px;
  text-align: left;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.event-card {
  background-color: var(--bg-white);
  border: 1px solid #eee;
  border-top: 4px solid var(--secondary-cyan);
  height: 220px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
}

.event-card h3 {
  color: var(--primary-mid);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.event-card p {
  color: var(--text-muted);
  font-weight: 500;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-top-color: var(--primary-mid);
}

.btn-agenda-container {
  text-align: right;
}

/* --- Auxilio (Benefits) Hero --- */
.auxilio-hero {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-left: 6px solid transparent;
  transition: transform 0.3s ease;
}

.auxilio-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.hero-content {
  display: flex;
  align-items: center;
  padding: 40px;
  gap: 40px;
}

.hero-info {
  flex: 2;
}

.hero-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-info h2 svg {
  width: 32px; height: 32px;
}

.info-block {
  margin-bottom: 20px;
}

.info-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 5px;
}

.info-text {
  font-size: 1.1rem;
  color: var(--text-main);
}

.hero-action {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-left: 1px solid #eee;
  padding-left: 40px;
}

/* Auxilio Types */
.hero-alimentacao { border-left-color: #e67e22; }
.hero-alimentacao h2 { color: #d35400; }
.hero-alimentacao .btn-more { border-color: #d35400; color: #d35400; }
.hero-alimentacao .btn-more:hover { background-color: #d35400; color: white; }

.hero-refeicao { border-left-color: var(--primary-mid); }
.hero-refeicao h2 { color: var(--primary-dark); }
.hero-refeicao .btn-more { border-color: var(--primary-mid); color: var(--primary-mid); }
.hero-refeicao .btn-more:hover { background-color: var(--primary-mid); color: white; }

.hero-saude { border-left-color: #27ae60; }
.hero-saude h2 { color: #27ae60; }
.hero-saude .btn-more { border-color: #27ae60; color: #27ae60; }
.hero-saude .btn-more:hover { background-color: #27ae60; color: white; }

/* --- App / Sidebar / Map --- */
.app-container {
  height: calc(100vh - 180px);
  display: flex;
  overflow: hidden;
}

.sidebar {
  width: 400px;
  overflow-y: auto;
  padding: .5rem;
}

#map {
  flex: 1;
  z-index: 1;
}

/* --- Blog Posts --- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.post-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  border: 1px solid #eee;
}

.post-card:hover {
  transform: scale(1.02);
}

.post-image {
  height: 180px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
}

.post-content {
  padding: 20px;
}

.post-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
  display: block;
  font-family: 'Rubik', sans-serif;
}

.post-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin: 0 0 10px 0;
  color: #222;
}

.post-excerpt {
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-mid);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-row {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.hero-row .desc > div {
	display: flex;
	flex-direction: column;
}

.hero-row .imagem img {
	max-width: 100%;
}

.hero-row .button {
	text-transform: uppercase;
	padding: .6rem 1rem;
	font-weight: 600;
	color: var(--primary-mid);
	border-radius: .5rem;
	display: inline-flex;
	align-items: center;
	align-self: end;
}

.hero-row:hover .button {
	color: var(--primary-mid);
	background-color: #eee;
}

.hero-row .button:hover {
	color: var(--primary-dark);
	background-color: var(--primary-light);
}

/* --- Locations List --- */
.locations-container {
  background-color: #f0f4f8;
  padding: 30px;
  border-radius: 12px;
}

.locations-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.location-item {
  display: flex;
  gap: 15px;
}

.location-icon {
  color: #d32f2f;
}

.location-details h4 {
  margin: 0 0 5px 0;
  color: #333;
}

.location-details p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  font-family: 'Rubik', sans-serif;
}

/* Estilos específicos para a página de Equipe */
.team-section {
	margin-bottom: 50px;
}

.team-section h2 {
	font-family: 'Poppins', sans-serif;
	color: var(--primary-dark);
	border-bottom: 3px solid var(--primary-mid);
	padding-bottom: 10px;
	text-transform: uppercase;
	font-size: 1.5rem;
}

.team-mail a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
    color: var(--primary-mid);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 30px;
	margin-top: 30px;
}

.team-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	text-align: center;
	transition: transform 0.3s ease;
}

.team-card:hover {
	transform: translateY(-5px);
}

.team-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	background-color: #f4f4f4;
}

.team-info {
	padding: 15px;
}

.team-info h3 {
	font-size: 1.1rem;
	margin: 0;
	color: #222;
	font-weight: 700;
}

.team-info p {
	font-size: 0.9rem;
	color: #666;
	margin-top: 5px;
}

.team-card hr {
	margin: 8px 0;
	border-top-color: #efefef;
}

.card {
	display: flex;
	align-items: center;
	gap: 5px;
}

.mission-values {
	display: flex;
	gap: 5px;
}

/* =========================================
   6. FOOTER
   ========================================= */
footer {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
  margin-top: auto;
}

footer a {
  color: var(--primary-light);
  text-decoration: underline;
}

/* =========================================
   7. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 768px) {
  /* Header & Navigation */
  .header-top-row,
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
  .header-search,
  .search-box input {
    width: 100%;
  }
  .search-box input:focus {
    width: 100%;
  }
  .main-nav-links {
    gap: 15px;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 5px;
    width: 100%;
    justify-content: flex-start;
  }
  .top-bar-content {
    display: none;
  }
  .nav-group {
    flex-direction: column;
    width: 100%;
  }

  /* Filters */
  .filters-container {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-search {
    width: 100%;
  }

  /* Hero Collage */
  .hero-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .item-small-1, .item-small-2, .item-large {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 250px;
  }

  /* Info & Layouts */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .main-title {
    font-size: 2rem;
  }
  .btn-reserve, .btn-more {
    width: 100%;
  }
  .btn-agenda-container {
    text-align: center;
  }

  /* Auxilio Hero */
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
  }
  .hero-action {
    width: 100%;
    border-left: none;
    padding-left: 0;
    justify-content: flex-start;
    margin-top: 10px;
  }

  /* App Container / Sidebar */
  .app-container {
    flex-direction: column;
    height: auto;
  }
  .sidebar {
    width: 100%;
    height: 50vh;
  }
  #map {
    height: 40vh;
    flex: none;
  }
}

@media (min-width: 768px) {
	
	.hero-row {
		flex-direction: row;
	}
	
	.hero-row .desc {
		width: 66%;
	}
	
	.hero-row .imagem {
		width: 33%;
	}
}

@media (min-width: 900px) {
	.container {
		width: 800px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1200px;
	}
}