[hidden] {
  display: none !important;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  list-style: none;
  text-decoration: none;
  cursor: default;
  box-sizing: border-box;
}

.splash-screen {
  background: white;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sumir 5s ease-out forwards;
  perspective: 1000px;
}

.splash-screen img {
  width: 50%;
  animation: flip 3s linear forwards;
  transform-style: preserve-3d;
  transform: rotateY(-180deg);
}

@keyframes sumir {
  0%, 50% {
    opacity: 1;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes flip {
  to {
    transform: rotateY(0);
  }
}

.button {
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
}

section .button {
  background: #a81b1b;
  color: white;
}

.button.chat {
  background: #a81b1b;
  font-size: 20px;
  border-radius: 0.9375rem;
  padding: 0.625rem;
  position: fixed;
  right: 0.625rem;
  bottom: 0.9375rem;
  z-index: 2;
}

body {
  background: #f0f1f5;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

body.loaded {
  opacity: 1;
}

body.no-scroll {
  overflow: hidden;
}

footer {
  background: white;
  padding: 0.625rem;
}

footer .logo {
  width: 30px;
}

.footer-info {
  text-align: center;
}

.developer-paragraph {
  font-size: 0.8rem;
  margin-top: 5px;
}

.developer-paragraph a {
  text-decoration: underline 1px #777;
  cursor: pointer;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/background.webp');
  background-size: auto;
  opacity: 0.4;
  /* controle total da opacidade */
  z-index: -1;
}

.header {
  background: white;
  color: #a81b1b;
  box-shadow: 0 2px 0.3125rem rgba(0, 0, 0, 0.1);
  padding: 0.625rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.header-wrapper {
  display: flex;
  align-items: center;
}

.left {
  margin-right: auto;
}

.right {
  margin-left: auto;
}

.logo-link {
  display: contents;
}

.logo {
  width: 60px;
  height: auto;
}

.site-name {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  margin-left: 0.3125rem;
}

.site-subname {
  color: #3b3b3b;
  font-size: 0.9375rem;
}

.menu-nav {
  margin: 0 15px;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.menu-nav a,
.menu-nav button {
  padding: 0.625rem;
}

.menu-nav .selected {
  border: 1px solid black;
  border-radius: 0.3125rem;
}

.button.get-in-touch {
  background: #333;
  color: white;
  font-size: 0.9rem;
  padding: 0.625rem 20px;
  transform: skew(-20deg);
}

.button.get-in-touch span {
  display: inline-block;
  transform: skew(20deg);
  cursor: pointer;
}

.status-wrapper {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  margin-top: 0.3125rem;
}

.open-status-circle {
  background: lawngreen;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
}

.open-status-txt {
  color: #000;
  font-size: 0.625rem;
}

.button.ask-quote {
  padding: 0.625rem;
  border-radius: 0.9375rem;
  font-size: 1rem;
  margin: 30px 0;
}

.review-box {
  background: white;
  border: 1px solid #d9d9d9;
  border-radius: 0.625rem;
  width: 280px;
  padding: 20px 0.625rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.reviews img {
  max-width: 40px;
}

.stars {
  color: orange;
  display: flex;
  justify-content: center;
  margin-top: 0.625rem;
}

.promo-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.promo-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 0.625rem;
  object-fit: cover;
  box-shadow: 0 4px 0.75rem rgba(0, 0, 0, 0.1);
}

.promo-content h1 {
  background: white;
  border: 1px solid #d9d9d9;
  font-size: 2rem;
  border-radius: 0.9375rem;
  padding: 20px;
  text-align: center;
}

.reviews {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.review-box {
  background: white;
  border-radius: 8px;
  padding: 0.75rem 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.review-box * {
  cursor: pointer;
}

.review-box img {
  width: 40px;
  height: auto;
}

.review-box p {
  font-size: 18px;
  margin: 0;
}

.review-box span {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .promo-container {
    flex-direction: column;
    text-align: center;
  }

  .promo-content {
    text-align: center;
  }

  .reviews {
    align-items: center;
  }
}

.logos {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.logo-box {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box:nth-child(2) {
  height: 60px;
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

section {
  text-align: center;
  padding: 20px;
  border-bottom: 0.3125rem solid rgba(0, 0, 0, 0.05);
  flex: 1;
}

.section-title {
  display: inline-block;
  background: white;
  font-size: 28px;
  border: 1px solid #d9d9d9;
  border-radius: 0.3125rem;
  padding: 0.625rem;
  margin-bottom: 30px;
}

.container-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  font-weight: bold;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 300px;
  height: fit-content;
  padding: 0.9375rem;
  box-shadow: 0 2px 0.3125rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.card img {
  background: #ccc;
  width: 100%;
  object-fit: cover;
  margin-bottom: 0.625rem;
}

.card h3 {
  font-size: 1rem;
}

.card p {
  font-size: 0.9rem;
  font-weight: normal;
  text-align: center;
}

.card .button {
  font-size: 0.8rem;
  padding: 8px 0.75rem;
  border-radius: 0.75rem;
  width: fit-content;
  align-self: center;
  margin: 0.625rem 0;
}

.bbb-accreditation-rating-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  margin-top: 40px;
}

.bbb-accreditation-rating-container h4 {
  background: #f2f8fa;
  padding: 10px;
}

.bbb-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.bbb.card {
  background: #f2f8fa;
}

.bbb.card img {
  background: none;
}

.bbb-card-footer {
  font-weight: 600;
  border-top: 1px solid #c8c9c7;
  padding-top: 10px;
  text-align: start;
  display: flex;
  gap: 10px;
}

.bbb-card-footer a {
  color: #002f6c;
  font-size: 0.83rem;
  cursor: pointer;
}

.bbb-card-footer img {
  width: 24px;
  height: 24px;
}

#rating-text {
  color: #005f86;
  font-size: 2.5rem;
}

#bbb-standards-for-trust {
  color: #002f6c;
  text-decoration: underline;
  cursor: pointer;
}

.button.view-more {
  background: black;
  color: white;
  padding: 0.625rem 20px;
  border-radius: 0.9375rem;
  margin-top: 30px;
}

.highlights {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reasons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.reason {
  background: white;
  border: 1px solid #d9d9d9;
  border-radius: 0.9375rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 150px;
  /* Limita o tamanho do bloco */
  padding: 0.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.reason p {
  margin-top: 0.625rem;
}

.reason img {
  width: 40px;
}

.text-reasons-container {
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.text-reason p {
  margin-top: 15px;
}

.testimonials .container-cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 30px;
}

.testimonials .card {
  align-items: center;
  flex: 0 0 auto;
}

.testimonials .card img {
  background: none;
  width: 15%;
  margin: 0;
}

.testimonials .card p {
  font-weight: 500;
}

.testimonials .card h4 {
  color: #111;
}

.testimonials .card .stars {
  margin: 0;
}

.button.google-reviews {
  background: #361c1c;
}

.button.bbb-reviews {
  background: #19212b;
}

.testimonials .button {
  font-size: 0.8rem;
  border-radius: 6px;
  padding: 6px;
}


/* RESPONSIVIDADE */
/* @media (max-width: 890px) {
  .top-section {
    flex-direction: column;
  }

  .top-section-content h1 {
    font-size: 3rem;
    text-align: center;
  }

  .top-section-content button {
    width: 50%;
  }
} */

.button.get-in-touch:hover {
  background: #444;
}

section .button:hover {
  transform: scale(1.05);
}

.button.chat:hover {
  transform: scale(1.05);
}



.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: auto;
  padding: 1rem 0;
}

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

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  text-align: center;
}

.carousel-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  /* ou 16/9 se preferir panorâmico */
  object-fit: contain;
  /* background: #f5f5f5; */
  border-radius: 0.9375rem;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.15); */
}

.carousel-item p {
  font-weight: bold;
  margin-top: 0.625rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  padding: 0.625rem;
  cursor: pointer;
  z-index: 1;
  border-radius: 0.5rem;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

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

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


section .text-content {
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px;
  padding-bottom: 20px;
}

.text-group p {
  margin-top: 5px;
}



.more-menu {
  position: relative;
}

.more-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  padding: 5px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.more-dropdown {
  display: none;
}

.more-dropdown a {
  padding: 8px 16px;
  white-space: nowrap;
}

.more-menu:hover .more-dropdown {
  display: flex;
}

@media (min-width: 897px) {
  .more-menu {
    display: none;
  }
}

/* Esconde Gallery e Blog abaixo de 897px */
@media (max-width: 897px) {
  .more-menu {
    display: block;
  }

  .menu-nav #menu-4th,
  .menu-nav #menu-5th {
    display: none;
  }
}

@media (max-width: 838px) {
  .menu-nav #menu-3rd {
    display: none;
  }
}

@media (max-width: 425px) {
  .splash-screen img {
    width: 70%;
  }
}

.expand-width {
  animation: expandWidth 1s linear forwards;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}