* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f7eedf;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO SECTION */
.hero {
  position: relative;
  background: url('fundo.jpg') center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #1e4529;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.logo-text {
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.brand-title .sub-script {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: #ffffff;
  display: block;
  margin-bottom: -15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.brand-title h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1e4529;
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
  line-height: 0.9;
}

.brand-title h1 span {
  color: #e67e22;
}

.tagline {
  margin-top: 30px;
  background: #112d1b;
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  max-width: 650px;
  border-radius: 4px;
}

/* NOTICE CARD */
.notice-card {
  background: #fff;
  border: 2px dashed #e67e22;
  border-radius: 15px;
  padding: 25px;
  max-width: 320px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
}

.notice-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #d35400;
  margin-bottom: 15px;
}

.notice-header i {
  font-size: 1.8rem;
}

.notice-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
}

.notice-card p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.notice-card .highlight {
  color: #d35400;
  font-size: 1rem;
  font-weight: 800;
  display: block;
}

/* TOP CONTACTS */
.top-contacts {
  background: #112d1b;
  padding: 20px 0;
}

.contact-flex {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  min-width: 260px;
}

.font-green {
  background: #1e4529;
  color: #fff;
}

.font-orange {
  background: #d35400;
  color: #fff;
}

.contact-button i {
  font-size: 2rem;
}

.contact-button strong {
  display: block;
  font-size: 1.1rem;
}

.contact-button span {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 50px 20px;
  text-align: center;
}

.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #1e4529;
}

.icon-bg-1, .icon-bg-2, .icon-bg-3, .icon-bg-4 {
  background: #ebd4b3;
}

.feature-item h3 {
  color: #1e4529;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.9rem;
  color: #444;
  font-weight: 600;
}

/* INFO CARDS */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
}

.card {
  border-radius: 15px;
  padding: 30px;
  color: #fff;
}

.card-green {
  background: #1e4529;
}

.card-orange {
  background: #e67e22;
}

.card h2 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.card ul {
  list-style: none;
}

.card li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dotted rgba(255,255,255,0.3);
  font-size: 0.95rem;
  font-weight: 600;
}

.card li:last-child {
  border-bottom: none;
}

.list-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.speed-limit {
  font-weight: 800;
  font-size: 0.85rem;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WELCOME BANNER */
.welcome-banner {
  padding-bottom: 40px;
}

.banner-content {
  background: #ebd4b3;
  border-radius: 15px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.heart-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e67e22;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.banner-text .uppercase {
  font-weight: 800;
  color: #1e4529;
  font-size: 1.1rem;
}

.banner-text .script {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  color: #d35400;
  margin-top: -5px;
}

/* FOOTER */
footer {
  background: #112d1b;
  color: #fff;
  padding-top: 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-info i {
  color: #e67e22;
  font-size: 1.5rem;
}

.footer-info strong {
  font-size: 0.95rem;
}

.footer-info small {
  color: #ccc;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #aaa;
}

.footer-bottom i {
  color: #27ae60;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-cards {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .brand {
    flex-direction: column;
    text-align: center;
  }
  .brand-title h1 {
    font-size: 2.5rem;
  }
  .contact-flex {
    flex-direction: column;
    align-items: center;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .banner-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}