@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #fff;
}

a {
  text-decoration: none;
}

.site-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}

.top-bar {
  height: 58px;
  padding: 0 9%;
  background: #8b2d0b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
}

.navbar {
  height: 90px;
  padding: 0 9%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo img {
  height: 100px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 46px;
  list-style: none;
}

.nav-menu a {
  color: #1d1d1d;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ffb26b;
}

.btn-client {
  padding: 18px 28px;
  background: #ff6b13;
  border-radius: 40px;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background-color: #682e15;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px auto;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  position: relative;
  height: 115vh;
  min-height: 720px;
  overflow: hidden;
}

.slider,
.slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;

  }

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-one {
  background-image: url("../img/slide1.jpg");
}

.slide-two {
  background-image: url("../img/slide2.jpg");
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(42, 20, 8, 0.9) 0%,
    rgba(42, 20, 8, 0.65) 42%,
    rgba(42, 20, 8, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-left: 8%;
  padding-top: 310px;
}

.tag {
  display: inline-block;
  padding: 13px 24px;
  margin-bottom: 24px;
  color: #ff8a35;
  border: 1px solid rgba(255, 122, 26, 0.7);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
}

.hero-content h1 {
  font-size: clamp(32px, 6vw, 62px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -3px;
  margin-bottom: 22px;
}

.hero-content p {
  max-width: 670px;
  font-size: 15px;
  line-height: 1.7;
  color: #f6eee8;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 10px 20px;
  background: #ff6b13;
  color: #fff;
  border-radius: 45px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(255, 107, 19, 0.32);
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  background: #df5510;
}

.slider-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 5;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s;
}

.slider-arrow:hover {
  background: #ff6b13;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 12px;
}

.dot {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.dot.active {
  background: #ff6b13;
}

@media (max-width: 900px) {
  .top-bar {
    height: auto;
    padding: 12px 5%;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
  }

  .navbar {
    height: 82px;
    padding: 0 5%;
  }

  .menu-toggle {
    display: block;
    z-index: 30;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 340px;
    height: 100vh;
    background: #e8e8e8;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.35s ease;
    box-shadow: -15px 0 30px rgba(0, 0, 0, 0.35);
  }

  .nav-menu.active {
    right: 0;
  }

  .btn-client {
    padding: 15px 24px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding: 255px 6% 0;
  }

  .hero-content h1 {
    letter-spacing: -1px;
  }

  .hero-content p {
    font-size: 17px;
  }
}

@media (max-width: 520px) {
  .logo {
    font-size: 24px;
  }

  .hero-content {
    padding-top: 240px;
  }

  .tag {
    font-size: 13px;
    padding: 10px 18px;
    margin-top: 130px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-btn {
    min-width: 180px;
    padding: 15px 28px;
  }
}
/* Problems Section Styles */
.problems-section {
  padding: 90px 8%;
  background: linear-gradient(135deg, #2b1209, #5a2412);
  color: #fff;
}

.problems-container {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #ff6b1a;
  border-radius: 50px;
  color: #ff6b1a;
  font-weight: 700;
  margin-bottom: 20px;
}

.problems-container h2 {
  font-size: 42px;
  margin-bottom: 45px;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.35);
  border-radius: 22px;
  padding: 28px 20px;
  font-weight: 600;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-8px);
  background: #ff6b1a;
}

.impact-text {
  margin-top: 45px;
  font-size: 30px;
  font-weight: 800;
  color: #ff6b1a;
}

.problem-card.show {
  opacity: 1;
  transform: translateY(0);
}

.problem-card {
  opacity: 0;
  transform: translateY(35px);
}

@media (max-width: 1000px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problems-container h2 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .problems-grid {
    grid-template-columns: 1fr;
  }

  .impact-text {
    font-size: 24px;
  }
}


/* ===== SEÇÃO SOLUÇÃO ===== */

.solution-section {
  padding: 90px 8%;
  background: #fff;
  color: #222;

}

.solution-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.solution-container h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.solution-description {
  font-size: 18px;
  max-width: 750px;
  margin: 10px auto;
  line-height: 1.6;
  color: #555;
}

/* GRID */
.solution-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.solution-card {
 background: linear-gradient(
    90deg,
    rgba(129, 54, 14, 0.9) 0%,
    rgb(92, 35, 5) 42%,
    rgba(42, 20, 8, 0.985) 100%
  );  border-radius: 18px;
  padding: 30px 20px;
  transition: 0.3s ease;
}

.solution-card i {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 15px;
}

.solution-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffb700;
}

.solution-card p {
  font-size: 15px;
  color: #ffffff;
}

/* HOVER */
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* RESPONSIVO */
@media (max-width: 1000px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-container h2 {
    font-size: 30px;
  }
}

/* ===== SLIDER LOGOS ===== */
.logos-slider {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
}

/* fade nas laterais (efeito premium) */
.organs-section {
  padding: 100px 8%;
  background: #ffffff;
  margin-top: -150px;
}

.organs-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.organs-container h2 {
  font-size: 38px;
  margin: 15px 0;
  color: #1d1d1d;
}

.organs-container strong {
  color: #ff6b1a;
}

.organs-container p {
  color: #555;
  margin-bottom: 50px;
}

.aviso {
  font-size: 10px;
  color: #777;
  font-style: italic;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* CAIXA DAS LOGOS */
.logos-slider {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* fade lateral */
.logos-slider::before,
.logos-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.logos-slider::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.logos-slider::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* trilho */
.logos-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: slide 20s linear infinite;
}

/* logos */
.logos-track img {
  height: 60px;
  object-fit: contain;
  opacity: 0.9;
  transition: 0.3s;
}

.logos-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* animação */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* ===== SEÇÃO SERVIÇOS ===== */

.services-section {
  padding: 100px 8%;
 background-color: #2c0f05;
  color: #fff;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-tag {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #ff6b1a;
  border-radius: 50px;
  color: #ff6b1a;
  font-weight: 700;
  margin-bottom: 22px;
}

.services-container h2 {
  font-size: 42px;
  max-width: 850px;
  margin: 0 auto 18px;
}

.services-subtitle {
  max-width: 720px;
  margin: 0 auto 55px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.28);
  border-radius: 22px;
  padding: 34px 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.608), transparent 65%);
  opacity: 0;
  transition: 0.35s ease;
}

.service-card i,
.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 107, 26, 0.14);
  color: #ff6b1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #ff6b1a;
  box-shadow: 0 18px 45px rgba(255, 107, 26, 0.22);
}

.service-card:hover::before {
  opacity: 1;
}

.services-btn {
  display: inline-block;
  margin-top: 55px;
  padding: 18px 42px;
  border-radius: 50px;
  background: #ff6b1a;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(255, 107, 26, 0.35);
}

.services-btn:hover {
  transform: translateY(-4px);
  background: #ff7f32;
  box-shadow: 0 16px 40px rgba(255, 107, 26, 0.45);
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-container h2 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-container h2 {
    font-size: 30px;
  }

  .services-btn {
    width: 100%;
    max-width: 320px;
  }
}
/* ===== SEÇÃO SERVIÇOS PREMIUM ===== */

/* ===== SEÇÃO RESULTADOS ===== */
.results-section {
  padding: 100px 8%;
  background: #fff;
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

/* TEXTO */
.results-content h2 {
  font-size: 38px;
  margin: 15px 0 30px;
  color: #1d1d1d;
}

/* LISTA */
.results-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.results-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 17px;
  color: #444;
}

/* bolinha/ícone */
.results-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6b1a;
  font-weight: bold;
}

/* BOTÃO */
.results-btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 50px;
  background: #ff6b1a;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.results-btn:hover {
  transform: translateY(-3px);
  background: #ff7f32;
}

/* IMAGEM */
.results-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .results-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .results-content {
    order: 2;
  }

  .results-image {
    order: 1;
  }

  .results-content h2 {
    font-size: 30px;
  }

  .results-btn {
    width: 100%;
    max-width: 280px;
  }
}
/* ===== SEÇÃO RESULTADOS ===== */
/* ===== SEÇÃO DIFERENCIAL ===== */

.differential-section {
  padding: 110px 8%;
  background-color: #2c0f05;

  color: #fff;
  text-align: center;
}

.differential-container {
  max-width: 900px;
  margin: 0 auto;
}

/* TÍTULO */
.differential-container h2 {
  font-size: 42px;
  line-height: 1.3;
  margin: 20px 0;
}

.differential-container h2 strong {
  color: #ff6b1a;
}

/* TEXTO */
.differential-text {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 50px;
}

/* CTA BOX */
.cta-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 107, 26, 0.3);
  border-radius: 24px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
}

.cta-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ff6b1a;
}

.cta-box p {
  font-size: 16px;
  margin-bottom: 25px;
  color: rgba(255,255,255,0.8);
}

/* BOTÃO */
.cta-btn {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 50px;
  background: #ff6b1a;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 15px 35px rgba(255, 107, 26, 0.4);
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  background: #ff7f32;
  box-shadow: 0 20px 45px rgba(255, 107, 26, 0.5);
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .differential-container h2 {
    font-size: 30px;
  }

  .cta-box {
    padding: 30px 20px;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== FORMULÁRIO ===== */

.contact-section {
  padding: 100px 8%;
  background-color: #2c0f05;
  margin-top: -120px;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-container h2 {
  font-size: 34px;
  margin: 15px 0 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ff6b1a;
}

/* BOTÃO */
.contact-form button {
  margin-top: 10px;
  padding: 16px;
  border: none;
  border-radius: 50px;
  background: #ff6b1a;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ff7f32;
  transform: translateY(-2px);
}

/*footer*/
/* ===== CONTATOS FINAL ===== */

.footer-contact-section {
  padding: 100px 8%;
  background: #fff;
  color: #222;
}

.footer-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.footer-logo {
  max-width: 230px;
  margin-bottom: 25px;
}

.footer-brand p {
  max-width: 380px;
  font-size: 17px;
  line-height: 1.6;
  color: #444;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ff6b1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s;
}

.social-links a:hover {
  transform: translateY(-4px);
  background: #3a160b;
}

.footer-info h2 {
  font-size: 36px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}

.contact-item span {
  font-size: 20px;
}

.contact-item p {
  font-size: 18px;
  color: #333;
}

/* ===== WHATSAPP FLUTUANTE ===== */

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-button {
  width: 64px;
  height: 64px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 34px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.whatsapp-button:hover {
  transform: scale(1.08);
}

.whatsapp-message {
  position: relative;
  max-width: 310px;
  background: #fff;
  color: #333;
  padding: 16px 38px 16px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  font-size: 15px;
  line-height: 1.4;
  display: none;
}

.whatsapp-message.show {
  display: block;
}

.whatsapp-message button {
  position: absolute;
  top: 6px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 22px;
  color: #999;
  cursor: pointer;
}

/* RESPONSIVO */

@media (max-width: 800px) {
  .footer-contact-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .whatsapp-message {
    max-width: 230px;
    font-size: 14px;
  }
}


/* ===== FOOTER FINAL ===== */

.footer-bottom {
  background: #f5f5f5;
  padding: 20px 8%;
  border-top: 1px solid #ddd;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 14px;
  color: #555;
}

/* destaque no crédito */
.footer-center span {
  color: #28a745;
  font-weight: 600;
  font-size: 10px;
}

.footer-center a {
  color: #28a745;
  font-weight: 400;
    font-size: 10px;

}

/* RESPONSIVO */
@media (max-width: 700px) {
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}


/*animação rolar 1*/
.solution-container,
.solution-card {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.solution-container.show,
.solution-card.show {
  opacity: 1;
  transform: translateY(0);
}


/* animação rolar 2 */
.services-container,
.service-card {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-container.show,
.service-card.show {
  opacity: 1;
  transform: translateY(0);
}
/* animação rolar 2 */

/* animação rolar 3 */
.results-content,
.results-image {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.results-content.show,
.results-image.show {
  opacity: 1;
  transform: translateY(0);
}
/* animação rolar 3 */

/*rolar diferencial*/
.differential-container {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.differential-container.show {
  opacity: 1;
  transform: translateY(0);
}
/*rolar diferencial*/

/* rolar anima forms*/
.contact-container {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-container.show {
  opacity: 1;
  transform: translateY(0);
}
/* rolar anima forms*/

/*are de atuação*/
.areas-atuacao {
  width: 100%;
  padding: 110px 20px;
background-color: #2c0f05;
  color: #fff;
  overflow: hidden;
  margin-top: -120px;
}

.areas-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 106, 31, 0.45);
  border-radius: 999px;
  background: rgba(255, 106, 31, 0.12);
  color: #ff7a2f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.areas-atuacao h2 {
  max-width: 820px;
  margin: 0 auto 20px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 900;
}

.areas-subtitle {
  max-width: 720px;
  margin: 0 auto 60px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.area-card {
  position: relative;
  min-height: 330px;
  padding: 44px 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(80, 34, 12, 0.968), rgba(82, 34, 24, 0.95));
  border: 1px solid rgba(255, 106, 31, 0.841);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 106, 31, 0.822), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.area-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 106, 31, 0.85);
  box-shadow: 0 30px 80px rgba(255, 106, 31, 0.16);
}

.area-card:hover::before {
  opacity: 1;
}

.area-icon {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 106, 31, 0.16);
  color: #ff6a1f;
  font-size: 2rem;
}

.area-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.25;
  font-weight: 900;
}

.area-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .areas-atuacao {
    padding: 80px 18px;
    margin-top: -220px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .area-card {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .areas-atuacao {
    padding: 64px 16px;
  }

  .area-card {
    padding: 34px 24px;
    border-radius: 22px;
  }

  .area-icon {
    width: 68px;
    height: 68px;
    font-size: 1.7rem;
  }
}

.areas-container {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.areas-container.show {
  opacity: 1;
  transform: translateY(0);
}

/*are de atuação*/


/* SPLASH SCREEN MOBILE efeito carregamento mobile */
#mobile-loader {
    display: none;
}

@media (max-width: 768px) {

    #mobile-loader {
        position: fixed;
        inset: 0;
        background: #ffffff;
        z-index: 999999;

        display: flex;
        align-items: center;
        justify-content: center;

        transition: opacity 0.6s ease;
    }

    #mobile-loader img {
        width: 180px;
        animation: zoomLogo 1.2s ease;
    }

    @keyframes zoomLogo {
        from {
            opacity: 0;
            transform: scale(0.8);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }
}
/* SPLASH SCREEN MOBILE efeito carregamento mobile */
