* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #000000;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* HEADER */

.header {
  background: #ffffff;
  width: 100%;
  border-top: 1px solid #ddd;
}

.header-inner {
  max-width: 1230px;
  margin: 0 auto;
  height: 165px;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 170px 1fr 210px;
  align-items: center;
  gap: 25px;
}

.logo img {
  width: 125px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.menu a {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  padding: 12px 0;
  position: relative;
}

.menu a.active {
  color: #f4a01c;
}

.menu a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: #f4a01c;
}

.whatsapp-btn {
  background: #3a220e;
  color: #ffffff;
  padding: 12px 23px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  justify-self: end;
}

.whatsapp-btn:hover {
  background: #f4a01c;
  color: #3a220e;
}

.menu-toggle {
  display: none;
}

/* BANNER HOME */

.banner-area {
  border-top: 10px solid #3a220e;
  border-bottom: 10px solid #3a220e;
  width: 100%;
  overflow: hidden;
}

.banner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  line-height: 0;
}

.carousel-slide img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #3a220e;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn.prev {
  left: 35px;
}

.carousel-btn.next {
  right: 35px;
}

.carousel-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 5;
}

.carousel-dots .dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background: #f4a01c;
}

/* HOME - POR QUE ESCOLHER */

.why-section {
  background: #ffffff;
  padding: 75px 20px 105px;
  border-bottom: 10px solid #d6d6d6;
}

.why-inner {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.why-inner h2 {
  font-size: 27px;
  font-weight: 900;
  margin-bottom: 55px;
  color: #000000;
  letter-spacing: 0.5px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.why-card {
  text-align: center;
}

.why-card i {
  font-size: 45px;
  color: #f4a01c;
  margin-bottom: 25px;
}

.why-card h3 {
  font-size: 26px;
  color: #3a220e;
  font-weight: 800;
  margin-bottom: 16px;
}

.why-card p {
  max-width: 340px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.45;
  color: #000000;
}

/* PÁGINAS INTERNAS */

.page-title {
  background: #f4a01c;
  padding: 32px 20px 26px;
  text-align: center;
  border-top: none;
  border-bottom: none;
}

.page-title h1 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-title p {
  display: none;
}

/* SERVIÇOS */

.services-page {
  padding: 75px 20px 95px;
  background: #ffffff;
}

.services-page-inner {
  max-width: 1230px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-box {
  text-align: center;
  padding: 35px 25px;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  transition: 0.2s;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-box i {
  font-size: 44px;
  color: #f4a01c;
  margin-bottom: 22px;
}

.service-box h3 {
  font-size: 23px;
  color: #3a220e;
  margin-bottom: 14px;
  font-weight: 800;
}

.service-box p {
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}

/* QUEM SOMOS */

.about-page {
  padding: 75px 20px 95px;
  background: #ffffff;
}

.about-page-inner {
  max-width: 1230px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 55px;
  align-items: center;
}

.about-text h2 {
  font-size: 34px;
  line-height: 1.2;
  color: #3a220e;
  margin-bottom: 24px;
  font-weight: 700;
}

.about-text p {
  font-size: 17px;
  line-height: 1.65;
  color: #000000;
  margin-bottom: 16px;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.about-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #3a220e;
  font-weight: 600;
}

.about-list i {
  color: #f4a01c;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #3a220e;
  color: #ffffff;
  padding: 13px 24px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
}

.about-btn:hover {
  background: #f4a01c;
  color: #3a220e;
}

.about-box {
  border: 2px solid #3a220e;
  border-radius: 8px;
  padding: 38px 32px;
  text-align: center;
  background: #ffffff;
}

.about-box > i {
  font-size: 52px;
  color: #f4a01c;
  margin-bottom: 20px;
}

.about-box h3 {
  font-size: 26px;
  color: #3a220e;
  margin-bottom: 14px;
  font-weight: 700;
}

.about-box p {
  font-size: 16px;
  line-height: 1.55;
  color: #000000;
  margin-bottom: 28px;
}

.about-box ul {
  list-style: none;
  text-align: left;
}

.about-box li {
  font-size: 15px;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 18px;
}

.about-box li strong {
  color: #3a220e;
}

/* CONTATO */

.contact-page {
  padding: 75px 20px 95px;
  background: #ffffff;
}

.contact-page-inner {
  max-width: 1230px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: stretch;
}

.contact-info h2 {
  font-size: 34px;
  line-height: 1.2;
  color: #3a220e;
  margin-bottom: 18px;
  font-weight: 700;
}

.contact-info > p {
  font-size: 17px;
  line-height: 1.65;
  color: #000000;
  margin-bottom: 30px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  padding: 20px;
  background: #ffffff;
  transition: 0.2s;
}

.contact-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-box i {
  width: 48px;
  height: 48px;
  background: #f4a01c;
  color: #3a220e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-box h3 {
  font-size: 19px;
  color: #3a220e;
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-box span {
  font-size: 15px;
  color: #000000;
  line-height: 1.4;
}

.contact-map {
  min-height: 500px;
  border: 2px solid #3a220e;
  border-radius: 8px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
}

/* POLÍTICA / TERMOS */

.legal-page {
  padding: 70px 20px 90px;
  background: #ffffff;
}

.legal-inner {
  max-width: 950px;
  margin: 0 auto;
}

.legal-inner h2 {
  font-size: 30px;
  color: #3a220e;
  margin-bottom: 22px;
  font-weight: 700;
}

.legal-inner h3 {
  font-size: 20px;
  color: #3a220e;
  margin: 28px 0 10px;
  font-weight: 700;
}

.legal-inner p {
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 12px;
}

/* FOOTER */

.footer {
  background: #d6d6d6;
  padding: 45px 20px 38px;
  color: #3a220e;
}

.footer-inner {
  max-width: 1230px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr 190px;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  width: 125px;
  height: auto;
}

.footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  text-align: center;
}

.footer-menu a {
  color: #3a220e;
  font-size: 14px;
  font-weight: 700;
}

.footer-menu a:hover {
  color: #f4a01c;
}

.footer-whatsapp {
  background: #3a220e;
  color: #ffffff;
  padding: 12px 23px;
  border-radius: 4px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-whatsapp:hover {
  background: #f4a01c;
  color: #3a220e;
}

.footer-line {
  max-width: 1230px;
  height: 1px;
  background: rgba(58, 34, 14, 0.45);
  margin: 38px auto 25px;
}

.copyright {
  text-align: center;
  color: #3a220e;
  font-size: 14px;
}

/* RESPONSIVO */

@media (max-width: 950px) {
  .header-inner {
    height: auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
  }

  .logo img {
    width: 115px;
  }

  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
  }

  .menu a {
    font-size: 13px;
  }

  .menu a.active::after {
    width: 70px;
  }

  .whatsapp-btn {
    font-size: 14px;
    padding: 11px 18px;
  }

  .carousel-slide img {
    height: 300px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .why-card p {
    font-size: 17px;
  }

  .services-page-inner {
    grid-template-columns: 1fr 1fr;
  }

  .about-page-inner {
    grid-template-columns: 1fr;
  }

  .about-text h2,
  .contact-info h2 {
    font-size: 28px;
  }

  .contact-page-inner {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 380px;
  }

  .contact-map iframe {
    min-height: 380px;
  }

  .page-title h1 {
    font-size: 28px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .footer-menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    gap: 18px;
  }

  .logo img {
    width: 105px;
  }

  .menu {
    gap: 15px;
  }

  .menu a {
    font-size: 12px;
  }

  .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }

  .carousel-slide img {
    height: 220px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .carousel-btn.prev {
    left: 12px;
  }

  .carousel-btn.next {
    right: 12px;
  }

  .carousel-dots .dot {
    width: 11px;
    height: 11px;
  }

  .why-section {
    padding: 55px 18px 75px;
  }

  .why-inner h2 {
    font-size: 22px;
    margin-bottom: 45px;
  }

  .why-card i {
    font-size: 40px;
  }

  .why-card h3 {
    font-size: 24px;
  }

  .why-card p {
    font-size: 16px;
  }

  .page-title {
    padding: 26px 18px 22px;
  }

  .page-title h1 {
    font-size: 24px;
  }

  .services-page,
  .about-page,
  .contact-page,
  .legal-page {
    padding: 55px 18px 75px;
  }

  .services-page-inner {
    grid-template-columns: 1fr;
  }

  .service-box {
    padding: 30px 20px;
  }

  .service-box i {
    font-size: 38px;
  }

  .service-box h3 {
    font-size: 21px;
  }

  .service-box p {
    font-size: 15px;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .about-text h2,
  .contact-info h2 {
    font-size: 24px;
  }

  .about-text p,
  .contact-info > p {
    font-size: 16px;
  }

  .about-box {
    padding: 30px 22px;
  }

  .contact-box {
    align-items: flex-start;
    padding: 18px;
  }

  .contact-map {
    min-height: 320px;
  }

  .contact-map iframe {
    min-height: 320px;
  }

  .legal-inner h2 {
    font-size: 24px;
  }

  .legal-inner h3 {
    font-size: 18px;
  }

  .legal-inner p {
    font-size: 15px;
  }

  .footer-logo img {
    width: 105px;
  }

  .footer-menu {
    gap: 16px;
  }

  .footer-menu a {
    font-size: 13px;
  }

  .copyright {
    font-size: 12px;
  }
}