@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200;300;400;500;600;700&family=Kanit:wght@400;500;600;700;800&family=Cookie&family=Signika:wght@300..700&display=swap");

:root {
  --primary-yellow: #ffd700;
  --primary-blue: #1e3a8a;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --border-light: #e5e7eb;
  --bg-light: #f9fafb;
    --font-oswald: "Oswald", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-lilita: "Signika", sans-serif;
  --font-cookie: "Cookie", cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease
}

body {
  font-family: Poppins, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fff
}

a {
  text-decoration: none
}
h1, h2, h3 {
  font-family: var(--font-oswald)!important;
}
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
  transition: all .3s ease;
  position: relative;
  z-index: 1000
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: slideDown 0.3s ease;
  z-index: 1001;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%)
  }

  to {
    transform: translateY(0)
  }
}

.navbar-brand .logo {
  height: 75px;
  width: auto
}

.set-sub-title-min {
  font-size: 24px;
  color: #000
}

.item blockquote p:before {
  content: "\f10d";
  font-family: Fontawesome;
  margin-right: 10px;
  color: var(--primary-yellow)
}

.item blockquote p:after {
  content: "\f10e";
  font-family: Fontawesome;
  margin-right: 10px;
  color: var(--primary-yellow)
}

.mobile-header-icons {
  display: flex;
  align-items: center;
  gap: 10px
}

.mobile-icon-btn {
  background: 0 0;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: 6px;
  transition: all .3s ease
}

.mobile-icon-btn:hover {
  border-color: var(--primary-yellow);
  color: var(--primary-yellow);
  transform: scale(1.05)
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0
}

.scroll-top:hover {
  background: #ffc732;
  color: #fff
}

.scroll-top.active {
  visibility: visible;
  opacity: 1
}

.navbar-toggler {
  border: 1px solid var(--border-light);
  padding: 6px 10px;
  border-radius: 6px;
  background: 0 0
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 215, 0, .25)
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: transform .3s ease
}

.desktop-nav {
  display: none !important
}

@media (min-width:992px) {
  .desktop-nav {
    display: flex !important
  }

  .mobile-header-icons {
    display: none !important
  }

  .navbar-collapse {
    display: none !important
  }
}

@media (max-width:991px) {
  .desktop-nav {
    display: none !important
  }

  .mobile-header-icons {
    display: flex !important
  }

  .navbar-collapse {
    display: block !important
  }
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  margin: 0 15px;
  transition: color .3s ease
}

.navbar-nav .nav-link:hover {
  color: var(--primary-yellow) !important
}

.country-dropdown {
  position: relative
}

.country-dropdown .dropdown-toggle {
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s ease
}

.country-dropdown .dropdown-toggle:focus,
.country-dropdown .dropdown-toggle:hover {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 .2rem rgba(255, 215, 0, .25)
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 160px;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: .875rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .375rem;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .175);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .3s ease, transform .3s ease
}

.dropdown-menu.show {
  display: block !important;
  opacity: 1;
  transform: translateY(0)
}

.country-dropdown .dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  transform: translateY(-10px) !important;
  width: auto !important;
  min-width: 200px;
  margin-top: 8px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: none;
  z-index: 1050;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease
}

.country-dropdown .dropdown-menu.show {
  display: block !important;
  opacity: 1;
  transform: translateY(0) !important
}

.navbar-collapse {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  margin-top: 10px;
  padding: 0;
  display: none;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity .3s ease, transform .3s ease;
  max-height: 0;
  overflow: hidden
}

.navbar-collapse.show {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
  transition: opacity .3s ease, transform .3s ease, max-height .3s ease
}

.mobile-menu-content {
  padding: 20px;
  background: #fff;
  border-top: 1px solid var(--border-light)
}

.mobile-menu-content .navbar-nav {
  margin-bottom: 20px
}

.mobile-menu-content .nav-link {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  margin: 0;
  font-size: 16px
}

.mobile-menu-content .nav-link:last-child {
  border-bottom: none
}

.mobile-country-dropdown .dropdown-toggle {
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 16px
}

.image-gallery {
  position: relative
}

.main-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem
}

.main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  cursor: pointer;
  transition: opacity .3s ease
}

.main-image img:hover {
  opacity: .9
}

.gallery-layout {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 12px;
  padding: 0
}

.main-image-container {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden
}

.main-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
  transition: opacity .3s ease;
  border-radius: 12px 0 0 12px
}

.gallery-button {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px)
}

.product-info {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  position: sticky;
  top: 120px
}

.rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem
}

.stars {
  color: var(--primary-yellow);
  font-size: 1.2rem
}

.rating-text {
  color: var(--text-light);
  font-size: .9rem
}

.product-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
  line-height: 1.3
}

.product-subtitle {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem
}

.features {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0
}

.feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  cursor: pointer;
  transition: background-color .3s ease
}

.feature:hover {
  background-color: var(--bg-light);
  border-radius: 6px;
  padding-left: .5rem;
  padding-right: .5rem
}

.feature i {
  margin-right: .5rem
}

.price-option {
  padding: 15px 20px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s ease;
  background: #fff;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.price-option:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.price-option.active {
  border-color: var(--primary-yellow);
  background: rgba(255, 215, 0, .1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, .2)
}

.duration {
  font-weight: 600;
  color: var(--text-dark)
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue)
}

.content-section {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  margin-bottom: 2rem
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem
}

.content-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 25px 0 15px 0
}

.included-list,
.not-included-list {
  list-style: none;
  padding: 0
}

.included-item,
.not-included-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-light)
}

.included-item:last-child,
.not-included-item:last-child {
  border-bottom: none
}

.included-item i {
  margin-top: .25rem;
  font-size: 1rem
}

.not-included-item i {
  margin-top: .25rem;
  font-size: 1rem
}

.accordion {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.accordion-item {
  border: none;
  border-bottom: 1px solid var(--border-light)
}

.accordion-item:last-child {
  border-bottom: none
}

.accordion-header {
  margin: 0
}

.accordion-button {
  background: #fff;
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.1rem;
  transition: all .3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.accordion-button.collapsed {
  background: #fff;
  color: var(--text-dark)
}

.accordion-button:not(.collapsed) {
  background: var(--primary-yellow);
  color: var(--text-dark);
  box-shadow: none
}

.accordion-button:focus {
  outline: 2px solid var(--primary-yellow) !important;
  outline-offset: 2px
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform .3s ease
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg)
}

.accordion-arrow {
  transition: transform .3s ease;
  color: var(--text-dark);
  font-size: 1rem;
  margin-left: auto
}

.accordion-button:not(.collapsed) .accordion-arrow {
  transform: rotate(180deg)
}

.accordion-collapse {
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .3s ease, max-height .3s ease
}

.accordion-collapse.show {
  display: block !important;
  opacity: 1;
  max-height: 1000px;
  transition: opacity .3s ease, max-height .3s ease
}

.accordion-body {
  padding: 1.5rem;
  background: #fff;
  color: var(--text-dark);
  line-height: 1.6
}

.accordion-arrow.fa-chevron-up:before {
  content: none
}

.download-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: .75rem;
  background: #fff;
  transition: all .3s ease
}

.download-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  transform: translateY(-1px)
}

.download-item:last-child {
  margin-bottom: 0
}

.download-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.download-icon i {
  font-size: 1.2rem;
  color: #fff
}

.download-item:first-child .download-icon {
  background: #14b8a6
}

.download-item:not(:first-child) .download-icon {
  background: #6b7280
}

.download-text {
  flex: 1;
  font-weight: 500;
  color: var(--text-dark)
}

.download-link-icon {
  color: #6b7280;
  font-size: 1rem;
  transition: color .3s ease
}

.download-item:hover .download-link-icon {
  color: var(--primary-yellow)
}

.reviews-section {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05)
}

.reviews-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem
}

.rating-summary {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light)
}

.rating-score {
  text-align: center
}

.score {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: block
}

.score-s {
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary-blue);
  display: block
}

.rating-score .stars {
  font-size: 1.5rem;
  color: var(--primary-yellow);
  margin: .5rem 0
}

.review-count {
  color: var(--text-light);
  font-size: .9rem
}

.rating-bars {
  flex: 1
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .5rem
}

.rating-bar span:first-child {
  width: 20px;
  text-align: center;
  font-weight: 600
}

.bar {
  flex: 1;
  height: 8px;
  background-color: var(--border-light);
  border-radius: 4px;
  overflow: hidden
}

.fill {
  height: 100%;
  background-color: var(--primary-yellow);
  transition: width .3s ease
}

.rating-bar span:last-child {
  width: 40px;
  text-align: right;
  color: var(--text-light);
  font-size: .9rem
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.review-item {
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background-color: var(--bg-light)
}

.review-header {
  margin-bottom: 1rem
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover
}

.reviewer-info h5 {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark)
}

.review-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .25rem
}

.review-meta .stars {
  color: var(--primary-yellow);
  font-size: 1rem
}

.review-date {
  color: var(--text-light);
  font-size: .8rem
}

.review-text {
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0
}

.tram-hero-section {
  background: linear-gradient(135deg, var(--primary-blue) 0, #1e3a8a 100%);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 20px;
  margin: 2rem 0;
  position: relative;
  overflow: hidden
}

.tram-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/placeholder.svg?height=600&width=1200) center/cover;
  opacity: .1;
  z-index: 0
}

.hero-content {
  position: relative;
  z-index: 1
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary-yellow);
  color: var(--text-dark);
  padding: .5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 1rem
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .3)
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: .9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}

.title {
  background: var(--primary-yellow);
  padding: 4rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  margin: 3rem 0;
  color: #212529
}

.welcome-section {
  background: #fff;
  padding: 4rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  margin: 3rem 0
}

.welcome-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem
}

.welcome-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem
}

.welcome-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap
}

.feature-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255, 215, 0, .1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-yellow)
}

.feature-item i {
  color: var(--primary-yellow);
  font-size: 1.2rem
}

.feature-item span {
  font-weight: 600;
  color: var(--text-dark)
}

.famous-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, .1) 0, rgba(255, 215, 0, .05) 100%);
  padding: 4rem 2rem;
  border-radius: 16px;
  margin: 3rem 0
}

.famous-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center
}

.route-section {
  background: #fff;
  padding: 4rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  margin: 3rem 0
}

.route-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center
}

.route-details h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem
}

.route-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 215, 0, .05);
  border-radius: 12px;
  border-left: 4px solid var(--primary-yellow)
}

.info-item i {
  color: var(--primary-yellow);
  font-size: 1.5rem;
  margin-top: .25rem
}

.info-item div strong {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .25rem
}

.info-item div span {
  color: var(--text-light)
}

.route-map {
  text-align: center
}

.route-map img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.highlights-section {
  background: linear-gradient(135deg, rgba(30, 58, 138, .05) 0, rgba(30, 64, 175, .1) 100%);
  padding: 4rem 2rem;
  border-radius: 16px;
  margin: 3rem 0
}

.highlights-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem
}

.highlight-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  transition: transform .3s ease, box-shadow .3s ease
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15)
}

.highlight-image {
  width: 100%;
  height: 200px;
  object-fit: cover
}

.highlight-content {
  padding: 1.5rem
}

.highlight-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem
}

.highlight-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem
}

.highlight-features {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap
}

.alfama-section {
  background: #fff;
  padding: 4rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  margin: 3rem 0
}

.alfama-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem
}

.alfama-features {
  margin-top: 2rem
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 215, 0, .05);
  border-radius: 12px;
  border-left: 4px solid var(--primary-yellow)
}

.feature-row i {
  color: var(--primary-yellow);
  font-size: 1.5rem;
  margin-top: .25rem
}

.feature-row div h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem
}

.feature-row div p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0
}

.alfama-gallery {
  text-align: center
}

.alfama-gallery img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.sao-bento-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, .1) 0, rgba(255, 215, 0, .05) 100%);
  padding: 4rem 2rem;
  border-radius: 16px;
  margin: 3rem 0
}

.sao-bento-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center
}

.neighborhood-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem
}

.route-highlights h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem
}

.stops-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.stop-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  border-left: 4px solid var(--primary-yellow)
}

.stop-number {
  background: var(--primary-yellow);
  color: var(--text-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0
}

.stop-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem
}

.stop-info p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0
}

.neighborhood-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
}

.neighborhood-card img {
  width: 100%;
  height: 200px;
  object-fit: cover
}

.card-content {
  padding: 1.5rem
}

.card-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem
}

.card-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0
}

.boarding-section {
  background: #fff;
  padding: 4rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  margin: 3rem 0
}

.boarding-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center
}

.boarding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem
}

.boarding-card {
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  transition: all .3s ease;
  position: relative
}

.boarding-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
  border-color: var(--primary-yellow)
}

.boarding-card.recommended {
  border-color: var(--primary-yellow);
  background: linear-gradient(135deg, rgba(255, 215, 0, .05) 0, rgba(255, 215, 0, .1) 100%);
  transform: translateY(-10px)
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem
}

.card-header i {
  color: var(--primary-yellow);
  font-size: 1.5rem
}

.badge {
  background: var(--primary-yellow);
  color: var(--text-dark);
  padding: .25rem .75rem;
  border-radius: 15px;
  font-size: .8rem;
  font-weight: 700
}

.boarding-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem
}

.boarding-features {
  margin-bottom: 1.5rem
}

.boarding-features .feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  padding: .5rem;
  background: rgba(255, 215, 0, .05);
  border-radius: 8px;
  justify-content: start
}

.boarding-features .feature i {
  color: var(--primary-yellow);
  font-size: 1rem
}

.boarding-features .feature span {
  color: var(--text-dark);
  font-size: .9rem
}

.best-time {
  background: rgba(30, 58, 138, .1);
  padding: .75rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue)
}

.best-time strong {
  color: var(--primary-blue)
}

.all-stops-section {
  background: linear-gradient(135deg, rgba(30, 58, 138, .05) 0, rgba(30, 64, 175, .1) 100%);
  padding: 4rem 2rem;
  border-radius: 16px;
  margin: 3rem 0
}

.all-stops-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center
}

/* .stops-container {
  margin-top: 2rem
} */

.route-direction h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.route-direction i {
  color: var(--primary-yellow)
}

.stops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem
}

.stop-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  border-left: 4px solid var(--primary-yellow);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all .3s ease
}

.stop-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.stop-card .stop-number {
  background: var(--primary-yellow);
  color: var(--text-dark);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0
}

.stop-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .25rem
}

.stop-details p {
  color: var(--text-light);
  font-size: .9rem;
  margin-bottom: .5rem;
  line-height: 1.4
}

.stop-type {
  background: rgba(30, 58, 138, .1);
  color: var(--primary-blue);
  padding: .2rem .5rem;
  border-radius: 10px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase
}

.stop-type.popular {
  background: rgba(255, 215, 0, .2);
  color: var(--text-dark)
}

.stop-type.attraction {
  background: rgba(34, 197, 94, .1);
  color: #059669
}

.stop-type.viewpoint {
  background: rgba(168, 85, 247, .1);
  color: #7c3aed
}

.tickets-section {
  background: #fff;
  padding: 4rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  margin: 3rem 0
}

.tickets-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem
}

.ticket-card {
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all .3s ease;
  position: relative
}

.ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
  border-color: var(--primary-yellow)
}

.ticket-card.popular {
  border-color: var(--primary-yellow);
  background: linear-gradient(135deg, rgba(255, 215, 0, .05) 0, rgba(255, 215, 0, .1) 100%);
  transform: translateY(-10px)
}

.ticket-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-yellow);
  color: var(--text-dark);
  padding: .5rem 1rem;
  border-radius: 15px;
  font-size: .8rem;
  font-weight: 700
}

.ticket-header {
  margin-bottom: 2rem
}

.ticket-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem
}

.ticket-header .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  display: block
}

.ticket-features {
  text-align: left;
  margin-bottom: 2rem
}

.ticket-features .feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  padding: .5rem;
  background: rgba(255, 215, 0, .05);
  border-radius: 8px
}

.ticket-features .feature i {
  color: var(--primary-yellow);
  font-size: 1rem
}

.ticket-features .feature span {
  color: var(--text-dark);
  font-size: .9rem
}

.ticket-tips {
  margin-top: 3rem
}

.ticket-tips h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem
}

.tip-card {
  background: rgba(255, 215, 0, .05);
  border: 1px solid rgba(255, 215, 0, .2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center
}

.tip-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem
}

.tip-icon i {
  color: var(--text-dark);
  font-size: 1.5rem
}

.tip-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem
}

.tip-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0
}

.seven-hills-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, .1) 0, rgba(255, 215, 0, .05) 100%);
  padding: 4rem 2rem;
  border-radius: 16px;
  margin: 3rem 0
}

.seven-hills-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem
}

.tour-features {
  margin: 2rem 0
}

.tour-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  border-left: 4px solid var(--primary-yellow)
}

.tour-features .feature-item i {
  color: var(--primary-yellow);
  font-size: 1.2rem
}

.tour-features .feature-item span {
  color: var(--text-dark);
  font-weight: 600
}

.price-info {
  text-align: center
}

.price-info .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
  display: block
}

.price-label {
  color: var(--text-light);
  font-size: .9rem
}

.tips-section {
  background: #fff;
  padding: 4rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  margin: 3rem 0
}

.tips-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center
}

.tips-section .tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem
}

.tips-section .tip-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, .05) 0, rgba(255, 215, 0, .1) 100%);
  border: 2px solid rgba(255, 215, 0, .2);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  transition: all .3s ease
}

.tips-section .tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
  border-color: var(--primary-yellow)
}

.tips-section .tip-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem
}

.tips-section .tip-icon i {
  color: var(--text-dark);
  font-size: 1.5rem
}

.tips-section .tip-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem
}

.tips-section .tip-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem
}

.tip-highlight {
  background: #fff;
  padding: .75rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-yellow)
}

.tip-highlight strong {
  color: var(--primary-blue)
}

.map-section {
  background: linear-gradient(135deg, rgba(30, 58, 138, .05) 0, rgba(30, 64, 175, .1) 100%);
  padding: 4rem 2rem;
  border-radius: 16px;
  margin: 3rem 0
}

.map-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center
}

.map-container {
  margin-top: 2rem
}

.map-placeholder {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.map-placeholder img {
  width: 100%;
  height: auto
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center
}

.map-features {
  margin-top: 3rem
}

.map-feature {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  border-top: 4px solid var(--primary-yellow)
}

.map-feature i {
  font-size: 2rem;
  color: var(--primary-yellow);
  margin-bottom: 1rem
}

.map-feature h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem
}

.map-feature p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem
}

.other-attractions-section {
  background: #fff;
  padding: 4rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  margin: 3rem 0
}

.other-attractions-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem
}

.attraction-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  transition: all .3s ease;
  border: 2px solid transparent
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
  border-color: var(--primary-yellow)
}

.attraction-image {
  width: 100%;
  height: 200px;
  object-fit: cover
}

.attraction-content {
  padding: 1.5rem
}

.attraction-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem
}

.attraction-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem
}

.attraction-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light)
}

.attraction-info .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-blue)
}

.attraction-info .duration {
  color: var(--text-light);
  font-size: .9rem
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0
}

.gallery-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15)
}

.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .9);
  z-index: 9999;
  align-items: center;
  justify-content: center
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%
}

.modal-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 215, 0, .9);
  border: none;
  color: var(--text-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 10001
}

.slider-btn:hover {
  background: var(--primary-yellow);
  transform: translateY(-50%) scale(1.1)
}

.prev-btn {
  left: 20px
}

.next-btn {
  right: 20px
}

.btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, .9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10001
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .9)
}

.modal-dialog {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: 2rem auto;
  height: calc(100vh - 4rem);
  display: flex;
  align-items: center;
  justify-content: center
}

.modal-content {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  max-height: 90vh
}

.modal-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end
}

.btn-close {
  background: 0 0;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  padding: .5rem
}

.btn-close:hover {
  color: var(--text-dark)
}

.modal-body {
  position: relative
}

.image-slider {
  position: relative
}

.slider-container {
  text-align: center
}

.slider-container img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 215, 0, .9);
  color: var(--text-dark);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 10
}

.slider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1)
}

.prev-btn {
  left: 20px
}

.next-btn {
  right: 20px
}

.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10
}

.modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden
}

.modal-header {
  border-bottom: none;
  padding: 1rem;
  background: rgba(0, 0, 0, .8)
}

.btn-close {
  background: #fff;
  border-radius: 50%;
  opacity: 1;
  width: 40px;
  height: 40px
}

.image-slider {
  position: relative;
  background: #000
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px
}

.slider-container img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 10
}

.slider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1)
}

.prev-btn {
  left: 20px
}

.next-btn {
  right: 20px
}

.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10
}

.footer {
  background: var(--primary-blue);
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem
}

.footer h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff
}

.footer-links {
  list-style: none;
  padding: 0
}

.footer-links li {
  margin-bottom: .5rem
}

.footer-links a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: color .3s ease
}

.footer-links a:hover {
  color: var(--primary-yellow)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: 2rem;
  margin-top: 2rem
}

.app-downloads {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap
}

.app-downloads span {
  color: rgba(255, 255, 255, .8);
  font-weight: 600
}

.app-link img {
  height: 40px;
  border-radius: 8px;
  transition: transform .3s ease
}

.app-link img:hover {
  transform: scale(1.05)
}

.social-links {
  display: flex;
  gap: 1rem
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all .3s ease
}

.social-links a:hover {
  background: var(--primary-yellow);
  color: var(--text-dark);
  transform: translateY(-2px)
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .2)
}

.copyright p {
  color: rgba(255, 255, 255, .6);
  margin: 0
}

.btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 24px;
  transition: all .3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center
}

.btn-primary {
  background: var(--primary-blue);
  color: #fff
}

.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-2px)
}

.btn-warning {
  background: var(--primary-yellow);
  color: var(--text-dark);
  border: 2px solid var(--primary-yellow)
}

.btn-warning:hover {
  background: 0 0;
  transform: translateY(-2px)
}

.btn-outline-warning {
  background: 0 0;
  color: var(--primary-yellow);
  border: 2px solid var(--primary-yellow)
}

.btn-outline-warning:hover {
  background: var(--primary-yellow);
  color: var(--text-dark);
  transform: translateY(-2px)
}

.btn-outline-secondary {
  background: 0 0;
  color: var(--text-dark);
  border: 2px solid var(--border-light)
}

.btn-outline-secondary:hover {
  background: var(--primary-yellow);
  color: var(--text-dark);
  border-color: var(--primary-yellow)
}

@media (max-width:1200px) {
  .hero-title {
    font-size: 3rem
  }
}

@media (max-width:992px) {
  .desktop-nav {
    display: none !important
  }

  .mobile-header-icons {
    display: flex !important
  }

  .navbar-collapse {
    display: block !important
  }

  .hero-title {
    font-size: 2.5rem
  }

  .hero-subtitle {
    font-size: 1.1rem
  }
}

@media (max-width:768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px
  }

  .header {
    padding: .5rem 0
  }

  .navbar-brand .logo {
    height: 35px
  }

  .mobile-header-icons {
    gap: 8px
  }

  .mobile-icon-btn {
    padding: 6px 10px;
    font-size: 14px
  }

  .tram-hero-section {
    padding: 3rem 1rem
  }

  .hero-title {
    font-size: 2rem
  }

  .hero-subtitle {
    font-size: 1rem
  }

  .alfama-section,
  .all-stops-section,
  .boarding-section,
  .famous-section,
  .highlights-section,
  .map-section,
  .other-attractions-section,
  .route-section,
  .sao-bento-section,
  .seven-hills-section,
  .tickets-section,
  .tips-section,
  .welcome-section {
    padding: 2rem 1rem;
    margin: 2rem 0
  }

  .alfama-section h2,
  .all-stops-section h2,
  .boarding-section h2,
  .famous-section h2,
  .highlights-section h2,
  .map-section h2,
  .other-attractions-section h2,
  .route-section h2,
  .sao-bento-section h2,
  .seven-hills-section h2,
  .tickets-section h2,
  .tips-section h2,
  .welcome-section h2 {
    font-size: 2rem
  }

  .attractions-grid,
  .boarding-grid,
  .highlights-grid,
  .stops-grid,
  .tickets-grid,
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 1rem
  }

  .boarding-card.recommended,
  .ticket-card.popular {
    transform: none
  }

  .boarding-card.recommended:hover,
  .ticket-card.popular:hover {
    transform: translateY(-5px)
  }

  .main-image img {
    height: 250px
  }

  .product-info {
    position: static;
    margin-top: 2rem
  }

  .rating-summary {
    flex-direction: column;
    text-align: center;
    gap: 1rem
  }

  .app-downloads {
    justify-content: center
  }

  .content-section,
  .reviews-section {
    padding: 1.5rem
  }

  .route-info-grid {
    grid-template-columns: 1fr
  }

  .welcome-features {
    justify-content: center
  }

  .alfama-features .feature-row {
    flex-direction: column;
    text-align: center;
    gap: .5rem
  }

  .alfama-features .feature-row i {
    margin-top: 0
  }
}

@media (max-width:576px) {
  .hero-title {
    font-size: 1.8rem
  }

  .hero-subtitle {
    font-size: .9rem
  }

  .alfama-section h2,
  .all-stops-section h2,
  .boarding-section h2,
  .famous-section h2,
  .highlights-section h2,
  .map-section h2,
  .other-attractions-section h2,
  .route-section h2,
  .sao-bento-section h2,
  .seven-hills-section h2,
  .tickets-section h2,
  .tips-section h2,
  .welcome-section h2 {
    font-size: 1.5rem
  }

  .ticket-header .price {
    font-size: 2rem
  }

  .modal-dialog {
    margin: 1rem;
    height: calc(100vh - 2rem)
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem
  }

  .prev-btn {
    left: 10px
  }

  .next-btn {
    right: 10px
  }

  .tip-icon {
    width: 50px;
    height: 50px
  }

  .tip-icon i {
    font-size: 1.2rem
  }
}

@media (max-width:768px) {
  .gallery-layout {
    flex-direction: column;
    gap: 10px
  }

  .main-image-container {
    height: 70%
  }

  .gallery-button {
    bottom: 10px;
    right: 10px;
    padding: 6px 12px;
    font-size: 12px
  }
}

@keyframes spin {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}


html {
  scroll-padding-top: 100px
}

.accordion-button:focus,
.btn:focus,
.dropdown-toggle:focus {
  outline: 2px solid var(--primary-yellow) !important;
  outline-offset: 2px
}

.modal {
  transition: opacity .3s ease
}

.modal.show {
  opacity: 1
}

.image-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.slider-container {
  max-width: 100%;
  max-height: 80vh;
  overflow: hidden
}

.slider-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: opacity .3s ease
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .7);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 10
}

.slider-btn:hover {
  background: rgba(0, 0, 0, .9);
  transform: translateY(-50%) scale(1.1)
}

.prev-btn {
  left: 20px
}

.next-btn {
  right: 20px
}

.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10
}

.main-image img {
  transition: opacity .3s ease;
  cursor: pointer
}

.main-image img:hover {
  opacity: .9
}

.price-option {
  padding: 15px 20px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s ease;
  background: #fff;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.price-option:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.price-option.active {
  border-color: var(--primary-yellow);
  background: rgba(255, 215, 0, .1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, .2)
}

.btn {
  transition: all .3s ease
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.btn-warning {
  background: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--text-dark);
  font-weight: 600
}

.btn-warning:hover {
  background: #e6c200;
  border-color: #e6c200;
  color: var(--text-dark)
}

.btn-outline-warning {
  border-color: var(--primary-yellow);
  color: var(--primary-yellow)
}

.btn-outline-warning:hover {
  background: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--text-dark)
}

.mobile-icon-btn {
  background: 0 0;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: 6px;
  transition: all .3s ease
}

.mobile-icon-btn:hover {
  border-color: var(--primary-yellow);
  color: var(--primary-yellow);
  transform: scale(1.05)
}

.flag-img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform .2s ease
}

.dropdown-item:hover .flag-img {
  transform: scale(1.1)
}

.dropdown-item {
  padding: 10px 16px;
  transition: all .3s ease;
  border-radius: 4px;
  margin: 2px 8px
}

.dropdown-item:hover {
  background: rgba(255, 215, 0, .1);
  color: var(--text-dark);
  transform: translateX(4px)
}

section {
  transition: opacity .6s ease, transform .6s ease
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0)
  }

  25% {
    transform: translateX(-5px)
  }

  75% {
    transform: translateX(5px)
  }
}

.alert {
  animation: slideInRight .3s ease
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

.card,
.content-section,
.product-info {
  transition: all .3s ease
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15)
}

.nav-link {
  position: relative;
  overflow: hidden
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-yellow);
  transition: width .3s ease
}

.nav-link:hover::before {
  width: 100%
}

.breadcrumb-item a {
  transition: color .3s ease
}

.breadcrumb-item a:hover {
  color: var(--primary-yellow)
}

@media (max-width:768px) {
  .slider-btn {
    width: 40px;
    height: 40px
  }

  .prev-btn {
    left: 10px
  }

  .next-btn {
    right: 10px
  }

  .price-option {
    padding: 12px 16px
  }
}

.buy-tickets-section {
  background: linear-gradient(135deg, #fff 0, #f8fafc 100%);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
  position: sticky;
  top: 120px;
  border: 1px solid rgba(255, 215, 0, .2);
  overflow: hidden
}

.buy-tickets-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-yellow), var(--primary-blue))
}

.tickets-header {
  text-align: center;
  margin-bottom: 2rem
}

.tickets-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-yellow), #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px rgba(255, 215, 0, .3)
}

.tickets-icon i {
  font-size: 1.5rem;
  color: #fff
}

.tickets-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem
}

.tickets-subtitle {
  color: var(--text-light);
  font-size: 1rem
}

.ticket-options {
  margin-bottom: 2rem
}

.ticket-option {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 2px solid transparent;
  transition: all .3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden
}

.ticket-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
  border-color: var(--primary-yellow)
}

.ticket-option.featured {
  border-color: var(--primary-yellow);
  background: linear-gradient(135deg, #fffbeb 0, #fff 100%);
  transform: scale(1.02)
}

.ticket-option.featured:hover {
  transform: translateY(-4px) scale(1.02)
}

.ticket-badge {
  position: absolute;
  top: -1px;
  right: 1rem;
  background: var(--primary-yellow);
  color: var(--text-dark);
  padding: .3rem 1rem;
  border-radius: 0 0 12px 12px;
  font-size: .8rem;
  font-weight: 600
}

.ticket-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem
}

.ticket-description {
  color: var(--text-light);
  font-size: .9rem;
  margin-bottom: 1rem
}

.ticket-price {
  margin-bottom: 1rem
}

.ticket-features {
  list-style: none;
  padding: 0;
  margin: 0
}

.ticket-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
  font-size: .9rem;
  color: var(--text-dark)
}

.ticket-features i {
  color: #10b981;
  font-size: .8rem
}

.ticket-features span {
  color: var(--text-dark);
  font-size: .9rem
}

.purchase-actions {
  margin-bottom: 2rem
}

.btn-buy-now {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-blue), #1e40af);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden
}

.btn-buy-now::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .5s ease
}

.btn-buy-now:hover::before {
  left: 100%
}

.btn-buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, .4)
}

.btn-buy-now i {
  transition: transform .3s ease
}

.btn-buy-now:hover i {
  transform: translateX(4px)
}

.purchase-benefits {
  margin-bottom: 2rem
}

.purchase-benefits {
  display: flex;
  justify-content: space-between;
  gap: 1rem
}

.benefit {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text-light)
}

.benefit i {
  color: #10b981
}

.rating-display {
  text-align: center;
  margin-bottom: 1rem
}

.rating-display .stars {
  color: var(--primary-yellow);
  font-size: 1.2rem;
  margin-bottom: .5rem;
  display: block
}

.rating-text {
  color: var(--text-light);
  font-size: .9rem
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.2);
    opacity: .7
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

@media (max-width:768px) {
  .buy-tickets-section {
    position: static;
    margin-top: 2rem
  }

  .purchase-benefits {
    flex-direction: column;
    gap: .5rem
  }

  .benefit {
    justify-content: center
  }
}

.mobile-buy-button {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  display: none
}

.mobile-buy-button.show {
  opacity: 1;
  visibility: visible
}

.btn-mobile-buy {
  background: linear-gradient(135deg, var(--primary-yellow), #fbbf24);
  color: var(--text-dark);
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(255, 215, 0, .4);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .3s ease;
  cursor: pointer;
  min-width: 160px;
  justify-content: center
}

.btn-mobile-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, .5)
}

@media (max-width:768px) {
  .mobile-buy-button {
    display: block
  }
}

.product-info .dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  transform: translateY(-10px) !important;
  width: 100% !important;
  margin-top: 8px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: none;
  z-index: 1050;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease
}

.product-info .dropdown-menu.show {
  display: block !important;
  opacity: 1;
  transform: translateY(0) !important
}

.buy-tickets-section {
  padding: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.section-header {
  text-align: center;
  margin-bottom: 2rem
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem
}

.section-title i {
  color: var(--primary-yellow)
}

/* .section-subtitle {
  color: var(--text-light);
  font-size: 1rem
} */

.ticket-options {
  margin-bottom: 2rem
}

.ticket-option {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 2px solid transparent;
  transition: all .3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.ticket-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
  border-color: var(--primary-yellow)
}

.ticket-info {
  display: flex;
  flex-direction: column;
  gap: .25rem
}

.duration {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark)
}

.features {
  font-size: .9rem;
  color: var(--text-light)
}

.ticket-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue)
}

.buy-now-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-blue), #1e40af);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  position: relative;
  overflow: hidden
}

.buy-now-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .5s ease
}

.buy-now-btn:hover::before {
  left: 100%
}

.buy-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, .4)
}

.buy-now-btn i {
  transition: transform .3s ease
}

.buy-now-btn:hover i {
  transform: translateX(4px)
}

.download-section {
  padding: 1.5rem 2rem 2rem
}

.download-map-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-yellow), #fbbf24);
  color: var(--text-dark);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  position: relative;
  overflow: hidden
}

.download-map-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transition: left .5s ease
}

.download-map-btn:hover::before {
  left: 100%
}

.download-map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, .4)
}

.download-map-btn i {
  transition: transform .3s ease
}

.download-map-btn:hover i {
  transform: scale(1.1)
}

@media (max-width:768px) {

  .buy-tickets-section,
  .download-section {
    padding: 1.5rem
  }

  .ticket-option {
    padding: 1rem
  }

  .section-title {
    font-size: 1.5rem
  }
}

.buy-tickets-dropdown {
  background: linear-gradient(135deg, #fff 0, #f8fafc 100%);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, .2);
  margin-bottom: 1.5rem;
  height: 300px;
  display: flex;
  flex-direction: column
}

.dropdown-header {
  background: linear-gradient(135deg, var(--primary-yellow), #fbbf24);
  padding: 1.5rem;
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
  overflow: hidden
}

.dropdown-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .5s ease
}

.dropdown-header:hover::before {
  left: 100%
}

.dropdown-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, .3)
}

.header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1
}

.ticket-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px)
}

.ticket-icon i {
  font-size: 1.5rem;
  color: var(--text-dark)
}

.header-text {
  flex: 1
}

.header-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 .25rem 0
}

.header-text p {
  font-size: .9rem;
  color: rgba(0, 0, 0, .7);
  margin: 0
}

.dropdown-arrow {
  transition: transform .3s ease
}

.dropdown-arrow i {
  font-size: 1.2rem;
  color: var(--text-dark)
}

.dropdown-content {
  flex: 1;
  padding: 1.5rem;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease
}

.dropdown-content.show {
  max-height: 250px;
  padding: 1.5rem
}

.ticket-options {
  margin-bottom: 1.5rem
}

.ticket-option {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: .75rem;
  border: 2px solid transparent;
  transition: all .3s ease;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.ticket-option:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
  border-color: var(--primary-yellow)
}

.option-info {
  display: flex;
  flex-direction: column;
  gap: .25rem
}

.duration {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark)
}

.features {
  font-size: .8rem;
  color: var(--text-light)
}

.price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-blue)
}

.buy-now-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-blue), #1e40af);
  color: #fff;
  border: none;
  padding: .75rem 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  position: relative;
  overflow: hidden
}

.buy-now-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .5s ease
}

.buy-now-btn::hover::before {
  left: 100%
}

.buy-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, .4)
}

.buy-now-btn i {
  transition: transform .3s ease
}

.buy-now-btn:hover i {
  transform: translateX(4px)
}

.mobile-buy-button {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  display: none
}

.mobile-buy-button.show {
  opacity: 1;
  visibility: visible
}

.btn-mobile-buy {
  background: linear-gradient(135deg, var(--primary-yellow), #fbbf24);
  color: var(--text-dark);
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(255, 215, 0, .4);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .3s ease;
  cursor: pointer;
  min-width: 160px;
  justify-content: center
}

.btn-mobile-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, .5)
}

@media (max-width:768px) {
  .mobile-buy-button {
    display: block
  }
}

.product-info .dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  transform: translateY(-10px) !important;
  width: 100% !important;
  margin-top: 8px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: none;
  z-index: 1050;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease
}

.product-info .dropdown-menu.show {
  display: block !important;
  opacity: 1;
  transform: translateY(0) !important
}

.ticket-duration-selector {
  margin-bottom: 2rem
}

.duration-option {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative
}

.duration-option:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .1)
}

.duration-option.featured {
  border-color: var(--primary-yellow);
  background: linear-gradient(135deg, #fffbeb 0, #fff 100%);
  transform: scale(1.02)
}

.popular-badge {
  position: absolute;
  top: -8px;
  left: 1rem;
  background: var(--primary-yellow);
  color: var(--text-dark);
  padding: .25rem .75rem;
  border-radius: 12px;
  font-size: .75rem;
  font-weight: 600
}

.duration-info {
  display: flex;
  flex-direction: column
}

.duration-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .25rem
}

.duration-desc {
  font-size: .85rem;
  color: var(--text-light)
}

.duration-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue)
}

.purchase-section {
  margin-bottom: 2rem
}

.btn-purchase-now {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-blue), #1e40af);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1rem
}

.btn-purchase-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, .3)
}

.purchase-benefits {
  display: flex;
  justify-content: space-between;
  gap: 1rem
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-light)
}

.benefit-item i {
  color: #10b981;
  font-size: .9rem
}

.download-section {
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem
}

.download-map-btn {
  width: 100%;
  background: #fff;
  border: 2px solid var(--primary-yellow);
  color: var(--text-dark);
  border-radius: 12px;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem
}

.download-map-btn:hover {
  background: var(--primary-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, .3)
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 215, 0, .9);
  border: none;
  color: var(--text-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 10001
}

.slider-btn:hover {
  background: var(--primary-yellow);
  transform: translateY(-50%) scale(1.1)
}

.prev-btn {
  left: 2rem
}

.next-btn {
  right: 2rem
}

.info-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05)
}

.slider-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10001
}

.new-buy-tickets-section {
  background: linear-gradient(135deg, #fff 0, #f8fafc 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
  border: 2px solid rgba(255, 215, 0, .2);
  position: sticky;
  top: 120px
}

.new-buy-tickets-section .tickets-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 215, 0, .2)
}

.new-buy-tickets-section .tickets-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem
}

.new-buy-tickets-section .tickets-header p {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0
}

.ticket-duration-selector {
  margin-bottom: 2rem
}

.duration-option {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative
}

.duration-option:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .1)
}

.duration-option.featured {
  border-color: var(--primary-yellow);
  background: linear-gradient(135deg, #fffbeb 0, #fff 100%);
  transform: scale(1.02)
}

.popular-badge {
  position: absolute;
  top: -8px;
  left: 1rem;
  background: var(--primary-yellow);
  color: var(--text-dark);
  padding: .25rem .75rem;
  border-radius: 12px;
  font-size: .75rem;
  font-weight: 600
}

.duration-info {
  display: flex;
  flex-direction: column
}

.duration-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .25rem
}

.duration-desc {
  font-size: .85rem;
  color: var(--text-light)
}

.duration-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue)
}

.purchase-section {
  margin-bottom: 2rem
}

.btn-purchase-now {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-blue), #1e40af);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1rem
}

.btn-purchase-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, .3)
}

.purchase-benefits {
  display: flex;
  justify-content: space-between;
  gap: 1rem
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-light)
}

.benefit-item i {
  color: #10b981;
  font-size: .9rem
}

.download-section {
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem
}

.download-map-btn {
  width: 50%;
  background: #fff;
  border: 2px solid var(--primary-yellow);
  color: var(--text-dark);
  border-radius: 12px;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem
}

.download-map-btn:hover {
  background: var(--primary-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, .3)
}

.mobile-country-dropdown {
  position: relative;
  width: 100%
}

.mobile-country-dropdown .dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 175px !important;
  margin-top: .5rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  z-index: 1050;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .3s ease, transform .3s ease
}

.mobile-country-dropdown .dropdown-menu.show {
  display: block !important;
  opacity: 1;
  transform: translateY(0) !important
}

.mobile-country-dropdown .dropdown-item {
  padding: .75rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color .2s ease
}

.mobile-country-dropdown .dropdown-item:last-child {
  border-bottom: none
}

.mobile-country-dropdown .dropdown-item:hover {
  background-color: #f9fafb
}

@media (max-width:991.98px) {
  .new-buy-tickets-section {
    margin-top: 2rem;
    position: static
  }

  .purchase-benefits {
    flex-direction: column;
    gap: .5rem
  }

  .slider-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem
  }

  .prev-btn {
    left: 1rem
  }

  .next-btn {
    right: 1rem
  }
}

@media (max-width:576px) {
  .duration-option {
    flex-direction: column;
    text-align: center;
    gap: .5rem
  }

  .duration-info {
    align-items: center
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem
  }

  .prev-btn {
    left: .5rem
  }

  .next-btn {
    right: .5rem
  }
}

.main-content {
  padding: 2rem 0
}

.product-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap
}

.rating {
  display: flex;
  align-items: center;
  gap: .5rem
}

.stars {
  color: var(--primary-yellow)
}

.welcome-section .welcome-card {
  background: linear-gradient(135deg, #f8f9fa 0, #e9ecef 100%);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color)
}

.highlight-text {
  color: var(--primary-color);
  font-weight: 600;
  font-style: italic
}

.history-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #6c757d;
  margin: 1rem 0
}

.history-card h4 {
  color: #495057;
  margin-bottom: 1rem
}

.route-info .neighborhood-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  margin-bottom: 1rem;
  text-align: center;
  transition: transform .3s ease
}

.route-info .neighborhood-card:hover {
  transform: translateY(-2px)
}

.route-info .neighborhood-card i {
  font-size: 2rem;
  margin-bottom: 1rem
}

.highlights-section .highlight-group {
  margin-bottom: 2rem
}

.highlights-section .highlight-group h4 {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: .5rem;
  margin-bottom: 1rem
}

.highlight-list {
  list-style: none;
  padding: 0
}

.highlight-list li {
  padding: .5rem 0;
  border-bottom: 1px solid #eee
}

.highlight-list li:last-child {
  border-bottom: none
}

.route-description .route-image {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin: 1rem 0
}

.tip-card {
  display: flex;
  align-items: flex-start;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0
}

.tip-avatar {
  margin-right: 1rem;
  color: var(--primary-color);
  font-size: 2rem
}

.tip-content {
  flex: 1
}

.info-card {
  background: #d1ecf1;
  border: 1px solid #bee5eb;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem
}

.info-card i {
  font-size: 1.5rem
}

.stops-grid .stops-list {
  list-style: none;
  padding: 0;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem
}

.stops-grid .stops-list li {
  padding: .25rem 0;
  border-bottom: 1px solid #dee2e6
}

.stops-grid .stops-list li:last-child {
  border-bottom: none
}

.ticket-options .ticket-option {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all .3s ease
}

.ticket-options .ticket-option:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.ticket-options .ticket-option.recommended {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #fff9e6 0, #fff 100%)
}

.ticket-number {
  background: var(--primary-color);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 1rem;
  flex-shrink: 0
}

.ticket-content h4 {
  margin-bottom: .5rem;
  color: #333
}

.alternative-tour {
  background: #e7f3ff;
  border: 1px solid #b3d9ff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem
}

.alternative-features .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem
}

.alternative-features .feature-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: .25rem
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem
}

.tip-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.tip-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: .25rem
}

.map-download {
  text-align: center;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px
}

.map-image {
  width: 100%;
  max-width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem
}

.map-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

.attractions-grid .attraction-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  transition: transform .3s ease;
  margin-bottom: 1rem
}

.attractions-grid .attraction-card:hover {
  transform: translateY(-4px)
}

.attraction-image {
  width: 100%;
  height: 200px;
  object-fit: cover
}

.attraction-content {
  padding: 1rem
}

.attraction-content h5 {
  margin-bottom: .5rem;
  color: #333
}

.attraction-content p {
  color: #666;
  font-size: .9rem;
  margin-bottom: 1rem
}

.tram28-section {
  margin-top: 4rem;
  padding: 2rem 0
}

.tram28-hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, #fff9e6 0, #fff 100%);
  border-radius: 20px;
  border-left: 5px solid gold
}

.tram28-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem
}

.tram28-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6
}

.hero-content {
  flex: 1
}

.hero-image {
  flex: 1
}

.welcome-section {
  margin: 3rem 0
}

.welcome-card {
  background: linear-gradient(135deg, gold 0, orange 100%);
  color: #fff;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.welcome-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%
}

.welcome-icon {
  font-size: 3rem;
  margin-bottom: 1rem
}

.welcome-card h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem
}

.welcome-card p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6
}

.highlight-text {
  font-weight: 600;
  font-size: 1.2rem !important
}

.btn-yellow {
  background: gold;
  color: #2c3e50;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all .3s ease
}

.btn-yellow:hover {
  background: orange;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, .4)
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, gold, orange);
  border-radius: 2px
}

.famous-section {
  margin: 4rem 0
}

.famous-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem
}

.famous-text {
  flex: 2
}

.famous-image {
  flex: 1
}

.history-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid gold
}

.history-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem
}

.history-header i {
  color: gold;
  font-size: 1.5rem
}

.neighborhoods-grid {
  margin: 3rem 0
}

.neighborhood-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  transition: all .3s ease;
  margin-bottom: 2rem;
  border-top: 4px solid gold
}

.neighborhood-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, .2)
}

.neighborhood-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, gold, orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem
}

.neighborhood-icon i {
  color: #fff;
  font-size: 1.5rem
}

.highlights-container {
  display: grid;
  gap: 2rem;
  margin: 2rem 0
}

.highlight-group {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1)
}

.highlight-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid gold
}

.highlight-header i {
  color: gold;
  font-size: 1.5rem
}

.highlight-list {
  list-style: none;
  padding: 0
}

.highlight-list li {
  padding: .5rem 0;
  padding-left: 2rem;
  position: relative
}

.highlight-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: gold;
  font-weight: 700
}

.alfama-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin: 2rem 0
}

.alfama-image {
  flex: 1
}

.alfama-text {
  flex: 2
}

.tip-card {
  background: linear-gradient(135deg, #e3f2fd 0, #bbdefb 100%);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  border-left: 4px solid gold
}

.tip-icon {
  width: 50px;
  height: 50px;
  background: gold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.tip-icon i {
  color: #fff;
  font-size: 1.2rem
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0
}

.info-card {
  background: linear-gradient(135deg, #fff9e6 0, #fff 100%);
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 4px solid gold
}

.info-card i {
  color: gold;
  font-size: 2rem
}

.stops-grid {
  margin: 2rem 0
}

.stops-list {
  list-style: none;
  padding: 0
}

.stops-list li {
  padding: .8rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 2rem
}

.stops-list li::before {
  content: '🚋';
  position: absolute;
  left: 0
}

.stops-list li:last-child {
  border-bottom: none
}

.ticket-options {
  display: grid;
  gap: 2rem;
  margin: 3rem 0
}

.ticket-option {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  transition: all .3s ease
}

.ticket-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15)
}

.ticket-option.recommended {
  border: 2px solid gold;
  background: linear-gradient(135deg, #fff9e6 0, #fff 100%)
}

.ticket-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: gold;
  color: #2c3e50;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: .9rem;
  font-weight: 600
}

.ticket-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, gold, orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0
}

.ticket-content h4 {
  color: #2c3e50;
  margin-bottom: 1rem
}

.features-grid {
  margin: 2rem 0
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
  margin-bottom: 1rem;
  transition: all .3s ease
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, .2)
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, gold, orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.feature-icon i {
  color: #fff;
  font-size: 1.2rem
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0
}

.tip-item {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  text-align: center;
  transition: all .3s ease
}

.tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, .2)
}

.tip-item .tip-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, gold, orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem
}

.tip-item .tip-icon.warning {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52)
}

.tip-item .tip-icon i {
  color: #fff;
  font-size: 1.5rem
}

.map-container {
  text-align: center;
  margin: 3rem 0
}

.map-image {
  width: 100%;
  height: auto;
  border-radius: 15px
}

.map-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap
}

.attractions-grid {
  margin: 3rem 0
}

.attraction-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  transition: all .3s ease;
  margin-bottom: 2rem
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15)
}

.attraction-image {
  height: 200px;
  overflow: hidden
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease
}

.attraction-card:hover .attraction-image img {
  transform: scale(1.05)
}

.attraction-content {
  padding: 1.5rem;
  text-align: center
}

.attraction-content h5 {
  color: #2c3e50;
  margin-bottom: 1rem
}

@media (max-width:768px) {
  .tram28-hero {
    flex-direction: column;
    text-align: center
  }

  .tram28-title {
    font-size: 2rem
  }

  .alfama-content,
  .famous-content {
    flex-direction: column
  }

  .ticket-option {
    flex-direction: column;
    text-align: center
  }

  .tips-grid {
    grid-template-columns: 1fr
  }

  .map-actions {
    flex-direction: column;
    align-items: center
  }
}

.tram28-section {
  margin-top: 4rem;
  padding: 2rem 0
}

.tram28-hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, #fff9e6 0, #fff 100%);
  border-radius: 20px;
  border-left: 5px solid gold
}

.tram28-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem
}

.tram28-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6
}

.hero-content {
  flex: 1
}

.hero-image {
  flex: 1
}

.welcome-section {
  margin: 3rem 0
}

.welcome-card {
  background: linear-gradient(135deg, gold 0, orange 100%);
  color: #fff;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.welcome-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%
}

.welcome-icon {
  font-size: 3rem;
  margin-bottom: 1rem
}

.welcome-card h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem
}

.welcome-card p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6
}

.highlight-text {
  font-weight: 600;
  font-size: 1.2rem !important
}

.btn-yellow {
  background: gold;
  color: #2c3e50;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all .3s ease
}

.btn-yellow:hover {
  background: orange;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, .4)
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, gold, orange);
  border-radius: 2px
}

.famous-section {
  margin: 4rem 0
}

.famous-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem
}

.famous-text {
  flex: 2
}

.famous-image {
  flex: 1
}

.history-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid gold
}

.history-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem
}

.history-header i {
  color: gold;
  font-size: 1.5rem
}

.neighborhoods-grid {
  margin: 3rem 0
}

.neighborhood-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  transition: all .3s ease;
  margin-bottom: 2rem;
  border-top: 4px solid gold
}

.neighborhood-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, .2)
}

.neighborhood-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, gold, orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem
}

.neighborhood-icon i {
  color: #fff;
  font-size: 1.5rem
}

.highlights-container {
  display: grid;
  gap: 2rem;
  margin: 2rem 0
}

.highlight-group {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1)
}

.highlight-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid gold
}

.highlight-header i {
  color: gold;
  font-size: 1.5rem
}

.highlight-list {
  list-style: none;
  padding: 0
}

.highlight-list li {
  padding: .5rem 0;
  padding-left: 2rem;
  position: relative
}

.highlight-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: gold;
  font-weight: 700
}

.alfama-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin: 2rem 0
}

.alfama-image {
  flex: 1
}

.alfama-text {
  flex: 2
}

.tip-card {
  background: linear-gradient(135deg, #e3f2fd 0, #bbdefb 100%);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  border-left: 4px solid gold
}

.tip-icon {
  width: 50px;
  height: 50px;
  background: gold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.tip-icon i {
  color: #fff;
  font-size: 1.2rem
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0
}

.info-card {
  background: linear-gradient(135deg, #fff9e6 0, #fff 100%);
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 4px solid gold
}

.info-card i {
  color: gold;
  font-size: 2rem
}

.stops-grid {
  margin: 2rem 0
}

.stops-list {
  list-style: none;
  padding: 0
}

.stops-list li {
  padding: .8rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 2rem
}

.stops-list li::before {
  content: '🚋';
  position: absolute;
  left: 0
}

.stops-list li:last-child {
  border-bottom: none
}

.ticket-options {
  display: grid;
  gap: 2rem;
  margin: 3rem 0
}

.ticket-option {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  transition: all .3s ease
}

.ticket-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15)
}

.ticket-option.recommended {
  border: 2px solid gold;
  background: linear-gradient(135deg, #fff9e6 0, #fff 100%)
}

.ticket-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: gold;
  color: #2c3e50;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: .9rem;
  font-weight: 600
}

.ticket-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, gold, orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0
}

.ticket-content h4 {
  color: #2c3e50;
  margin-bottom: 1rem
}

.features-grid {
  margin: 2rem 0
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
  margin-bottom: 1rem;
  transition: all .3s ease
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, .2)
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, gold, orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.feature-icon i {
  color: #fff;
  font-size: 1.2rem
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0
}

.tip-item {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  text-align: center;
  transition: all .3s ease
}

.tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, .2)
}

.tip-item .tip-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, gold, orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem
}

.tip-item .tip-icon.warning {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52)
}

.tip-item .tip-icon i {
  color: #fff;
  font-size: 1.5rem
}

.map-container {
  text-align: center;
  margin: 3rem 0
}

.map-image {
  width: 100%;
  height: auto;
  border-radius: 15px
}

.map-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap
}

.attractions-grid {
  margin: 3rem 0
}

.attraction-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  transition: all .3s ease;
  margin-bottom: 2rem
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15)
}

.attraction-image {
  height: 200px;
  overflow: hidden
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease
}

.attraction-card:hover .attraction-image img {
  transform: scale(1.05)
}

.attraction-content {
  padding: 1.5rem;
  text-align: center
}

.attraction-content h5 {
  color: #2c3e50;
  margin-bottom: 1rem
}

@media (max-width:768px) {
  .tram28-hero {
    flex-direction: column;
    text-align: center
  }

  .tram28-title {
    font-size: 2rem
  }

  .alfama-content,
  .famous-content {
    flex-direction: column
  }

  .ticket-option {
    flex-direction: column;
    text-align: center
  }

  .tips-grid {
    grid-template-columns: 1fr
  }

  .map-actions {
    flex-direction: column;
    align-items: center
  }
}

.tram28-section {
  margin-top: 4rem;
  padding: 2rem 0
}

.tram28-hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, #fff9e6 0, #fff 100%);
  border-radius: 20px;
  border-left: 5px solid gold
}

.tram28-footer {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, #fff9e6 0, #fff 100%);
  border-radius: 20px;
  border-right: 5px solid gold
}

.tram28-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem
}

.tram28-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6
}

.hero-content {
  flex: 1
}

.hero-image {
  flex: 1
}

.welcome-section {
  margin: 3rem 0
}

.welcome-card {
  background: linear-gradient(135deg, gold 0, orange 100%);
  color: #fff;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.welcome-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%
}

.welcome-icon {
  font-size: 3rem;
  margin-bottom: 1rem
}

.welcome-card h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem
}

.welcome-card p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6
}

.highlight-text {
  font-weight: 600;
  font-size: 1.2rem !important
}

.btn-yellow {
  background: gold;
  color: #2c3e50;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all .3s ease
}

.btn-yellow:hover {
  background: orange;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, .4)
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, gold, orange);
  border-radius: 2px
}

.famous-section {
  margin: 4rem 0
}

.famous-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem
}

.famous-text {
  flex: 2
}

.famous-image {
  flex: 1
}

.history-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid gold
}

.history-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem
}

.history-header i {
  color: gold;
  font-size: 1.5rem
}

.neighborhoods-grid {
  margin: 3rem 0
}

.neighborhood-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  transition: all .3s ease;
  margin-bottom: 2rem;
  border-top: 4px solid gold
}

.neighborhood-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, .2)
}

.neighborhood-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, gold, orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem
}

.neighborhood-icon i {
  color: #fff;
  font-size: 1.5rem
}

.highlights-container {
  display: grid;
  gap: 2rem;
  margin: 2rem 0
}

.highlight-group {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1)
}

.highlight-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid gold
}

.highlight-header i {
  color: gold;
  font-size: 1.5rem
}

.highlight-list {
  list-style: none;
  padding: 0
}

.highlight-list li {
  padding: .5rem 0;
  padding-left: 2rem;
  position: relative
}

.highlight-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: gold;
  font-weight: 700
}

.alfama-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin: 2rem 0
}

.alfama-image {
  flex: 1
}

.alfama-text {
  flex: 2
}

.tip-card {
  background: linear-gradient(135deg, #e3f2fd 0, #bbdefb 100%);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  border-left: 4px solid gold
}

.tip-icon {
  width: 50px;
  height: 50px;
  background: gold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.tip-icon i {
  color: #fff;
  font-size: 1.2rem
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0
}

.info-card {
  background: linear-gradient(135deg, #fff9e6 0, #fff 100%);
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 4px solid gold
}

.info-card i {
  color: gold;
  font-size: 2rem
}

.stops-grid {
  margin: 2rem 0
}

.stops-list {
  list-style: none;
  padding: 0
}

.stops-list li {
  padding: .8rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 2rem
}

.stops-list li::before {
  content: '🚋';
  position: absolute;
  left: 0
}

.stops-list li:last-child {
  border-bottom: none
}

.ticket-options {
  display: grid;
  gap: 2rem;
  margin: 3rem 0
}

.ticket-option {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  transition: all .3s ease
}

.ticket-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15)
}

.ticket-option.recommended {
  border: 2px solid gold;
  background: linear-gradient(135deg, #fff9e6 0, #fff 100%)
}

.ticket-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: gold;
  color: #2c3e50;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: .9rem;
  font-weight: 600
}

.ticket-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, gold, orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0
}

.ticket-content h4 {
  color: #2c3e50;
  margin-bottom: 1rem
}

.features-grid {
  margin: 2rem 0
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
  margin-bottom: 1rem;
  transition: all .3s ease
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, .2)
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, gold, orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.feature-icon i {
  color: #fff;
  font-size: 1.2rem
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0
}

.tip-item {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  text-align: center;
  transition: all .3s ease
}

.tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, .2)
}

.tip-item .tip-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, gold, orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem
}

.tip-item .tip-icon.warning {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52)
}

.tip-item .tip-icon i {
  color: #fff;
  font-size: 1.5rem
}

.map-container {
  text-align: center;
  margin: 3rem 0
}

.map-image {
  width: 100%;
  height: auto;
  border-radius: 15px
}

.map-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap
}

.attractions-grid {
  margin: 3rem 0
}

.attraction-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  transition: all .3s ease;
  margin-bottom: 2rem
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15)
}

.attraction-image {
  height: 200px;
  overflow: hidden
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease
}

.attraction-card:hover .attraction-image img {
  transform: scale(1.05)
}

.attraction-content {
  padding: 1.5rem;
  text-align: center
}

.attraction-content h5 {
  color: #2c3e50;
  margin-bottom: 1rem
}

@media (max-width:768px) {
  .tram28-hero {
    flex-direction: column;
    text-align: center
  }

  .tram28-footer {
    flex-direction: column;
    text-align: center
  }

  .tram28-title {
    font-size: 2rem
  }

  .alfama-content,
  .famous-content {
    flex-direction: column
  }

  .ticket-option {
    flex-direction: column;
    text-align: center
  }

  .tips-grid {
    grid-template-columns: 1fr
  }

  .map-actions {
    flex-direction: column;
    align-items: center
  }

  .download-map-btn {
    width: 100%
  }
  .alternative-tour{
    flex-direction: column;
  }
}

/* Other Info */

              .hero-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
            color: white;
            padding: 4rem 0;
        }
        
        .partnership-card {
            background: var(--light-blue);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary-blue);
        }
        
        .website-card {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .website-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            border-left-color: var(--primary-blue);
        }
        
        .website-category {
            background: var(--primary-blue);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .website-title {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .website-url {
            color: var(--text-gray);
            font-size: 0.9rem;
            text-decoration: none;
        }
        
        .website-url:hover {
            color: var(--primary-blue);
        }
        
        .stats-section {
            background: #f8f9fa;
            padding: 3rem 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-blue);
        }
        
        .filter-btn {
            background: white;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            margin: 0.25rem;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-blue);
            color: white;
        }