/* Fonte Montserrat */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  color: #0a2c56;
}

li{
  list-style: none !important;
}

i {
  color: #fff;
}
/* Cores do logo */
:root {
  --primary-blue: #1e3a8a;
  --secondary-orange: #f97316;
  --light-gray: #f8fafc;
  --text-gray: #64748b;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.navbar {
  background-color: #012860;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  width: 50px;
  height: auto;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  margin: 0 15px;
}

.book-now-button {
  background-color: #fec84d;
  color: #012860;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.book-now-button:hover {
  background-color: #ffe5a8;
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  background: #ffe099;
  background: linear-gradient(90deg,rgba(255, 234, 189, 1) 0%, rgba(255, 242, 217, 1) 13%, rgba(239, 238, 233, 1) 42%);
  padding: 80px 0;
  text-align: center;
}

.hero-logo {
  padding: 120px 0px;
}

.hero-logo img {
  width: 60%;
  height: auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-orange);
  margin-bottom: 1rem;
  letter-spacing: -2px;
}

.hero-detail img {
  width: 300px;
  opacity: 0.5;
  position: absolute;
  right: 0;
  bottom: 0;
}

.location-text {
  color: var(--secondary-orange);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.date-text {
  color: var(--secondary-orange);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.hero-description {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.btn-primary-custom {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.btn-secondary-custom {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 13px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

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

.about-section {
  padding: 80px 0;
  background-color: #fff;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 3rem;
}

.about-description {
  color: var(--text-gray);
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.topic-description {
  font-size: 1.2rem;
  text-align: center;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--secondary-orange);
  margin-bottom: 25px;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.feature-description {
  color: var(--text-gray);
  line-height: 1.7;
}

.footer {
  background-color: #012860;
  color: white;
  padding: 25px 0px;
}

.footer-logo {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  width: 150px;
  height: 80px;
}

.footer-description {
  color: #cbd5e1;
  margin-bottom: 30px;
  line-height: 1.7;
}

.footer-links h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: white;
}

.social-icons a {
  color: #cbd5e1;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #012860;
  padding-top: 20px;
  margin-top: 20px;
  color: #94a3b8;
  font-size: 0.9rem;
}

p.copyright {
  margin-bottom: 0 !important;
  color: #fff;
  display: inline;
}

.contact {
  text-align: center;
}

footer a {
  color: white;
  text-decoration: none;
}

.social_networks {
  text-align: right;
}

.topics-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 2rem auto 2rem auto;
  max-width: 700px;
}
.topics-list li {
  position: relative;
  padding-left: 2.2em;
  margin-bottom: 1.1em;
  font-size: 1.15rem;
  color: var(--text-gray);
  font-weight: 500;
  text-align: left;
  width: 100%;
}
.topics-list li::before {
  content: '\2713'; /* Unicode check mark */
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--secondary-orange);
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1;
}

.about-section h4{
  font-size: 1.4rem;
  color: #ce5924;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-title, .hero-subtitle {
      font-size: 2.5rem;
  }
  .date-text {
      font-size: 2rem;
  }
  .section-title {
      font-size: 2.5rem;
  }
  .hero-logo img {
    width: 90%;
  }
  .hero-detail img {
    width: 175px;
  }
}