.elementor-618 .elementor-element.elementor-element-8f0ea63{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-618 .elementor-element.elementor-element-b296863 > .elementor-widget-container{margin:75px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-618 .elementor-element.elementor-element-4e01a8c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-618 .elementor-element.elementor-element-eba62d2 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-618 .elementor-element.elementor-element-4db97f1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-618 .elementor-element.elementor-element-de12ba9{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-618 .elementor-element.elementor-element-5fafa1d{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-618 .elementor-element.elementor-element-68bfb2c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-618 .elementor-element.elementor-element-2a8add1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-618 .elementor-element.elementor-element-8f0ea63{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-b296863 *//* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #000000;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #f9f9f9; /* fundo neutro e elegante */
  border-bottom: 1px solid #e2e2e2;
  z-index: 1000;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* LOGO */
.logo img {
  height: 80px;
  object-fit: contain;
}

.logo {
  margin-right: 24px;
}

/* Menu alinhado */
.menu-bloco {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

/* Hover com vermelho institucional */
.nav-links a:hover {
  color: #C8102E; /* vermelho refinado */
}

/* ÍCONES REDES SOCIAIS */
.social-icons {
  display: flex;
  gap: 12px;
}

.icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.icon.whatsapp {
  background-color: #25D366;
  color: #fff;
}

.icon.instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}

/* HAMBURGUER MENU */
.hamburger {
  display: none;
  color: #000000;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .menu-bloco {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: #ffffff;
    padding: 20px 0;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .menu-bloco.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .social-icons {
    justify-content: center;
  }

  .logo {
    margin-right: 0;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-eba62d2 *//* ===== HERO COM FUNDO VERMELHO TEXTURIZADO ===== */
.hero {
  position: relative;
  background: url('https://aaa.adv.br/wp-content/uploads/2025/05/asdasdasdasda.png') center center / cover no-repeat;
  padding: 140px 20px 100px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

/* HEADLINE — Montserrat Medium */
.hero .headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 500; /* Medium */
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

/* SUBHEADLINE — Montserrat Light */
.hero .subheadline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 300; /* Light */
  color: #f1f1f1;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* BOTÃO WHATSAPP */
.btn-cta.whatsapp-hero {
  background-color: #25D366;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  transition: all 0.3s ease;
  animation: pulseScale 1.5s infinite ease-in-out;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
}

.btn-cta.whatsapp-hero i {
  font-size: 1.3rem;
  color: #ffffff;
}

.btn-cta.whatsapp-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.8);
}

/* ANIMAÇÃO */
@keyframes pulseScale {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 15px 5px rgba(37, 211, 102, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .hero .headline {
    font-size: 2rem;
  }

  .hero .subheadline {
    font-size: 1rem;
  }

  .btn-cta.whatsapp-hero {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4796e04 *//* ===== ÁREAS DE ATUAÇÃO - ELEGANTE ===== */
.areas-atuacao {
  background-color: #ffffff;
  padding: 120px 20px;
  text-align: center;
}

.container-areas {
  max-width: 1200px;
  margin: 0 auto;
}

.titulo-areas {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #C8102E;
  margin-bottom: 10px;
}

.descricao-areas {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #444;
  margin-bottom: 50px;
}

/* GRID */
.grid-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.area-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-color: #C8102E;
}

/* ÍCONES */
.area-card i {
  font-size: 2rem;
  color: #C8102E;
  margin-bottom: 15px;
}

/* TÍTULO */
.area-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

/* TEXTO */
.area-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #333;
  font-weight: 300;
  line-height: 1.5;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ec6ebbc *//* ===== QUEM SOMOS - SEÇÃO ÚNICA ===== */
.quem-somos-unico {
  background-color: #ffffff;
  padding: 120px 20px;
}

.container-quem-unico {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.bloco-socio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.bloco-socio.invertido {
  flex-direction: row-reverse;
}

.coluna-imagem {
  flex: 1 1 300px;
  text-align: center;
}

.coluna-imagem img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.coluna-texto {
  flex: 2 1 500px;
}

.nome {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #C8102E;
  margin-bottom: 8px;
}

.titulo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.descricao {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #222;
  line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .bloco-socio,
  .bloco-socio.invertido {
    flex-direction: column;
    text-align: center;
  }

  .coluna-texto {
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2f697e5 *//* ===== CONTATO ===== */
.contato {
  background-color: #ffffff;
  padding: 120px 20px;
  border-top: 1px solid #eee;
}

.container-contato {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contato-titulo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: #C8102E;
  margin-bottom: 10px;
}

.contato-descricao {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #444;
  margin-bottom: 50px;
}

.blocos-contato {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.bloco-endereco {
  background-color: #f9f9f9;
  border-left: 4px solid #C8102E;
  padding: 30px 25px;
  border-radius: 8px;
  max-width: 400px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.bloco-endereco h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.bloco-endereco p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 10px;
}

.bloco-endereco i {
  margin-right: 8px;
  color: #C8102E;
}

/* MAPA */
.mapa-box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}

.mapa {
  width: 100%;
  height: 400px;
  border: 0;
  filter: grayscale(30%) contrast(110%);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .blocos-contato {
    flex-direction: column;
    align-items: center;
  }

  .bloco-endereco {
    width: 100%;
    max-width: 100%;
  }

  .mapa {
    height: 300px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8bbc7f5 *//* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  animation: pulse-whatsapp 1.6s infinite;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-45a051c *//* ===== FOOTER ===== */
.footer {
  background-color: #f4f4f4;
  padding: 60px 20px 40px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.container-footer {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.footer-logo img {
  max-height: 60px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #C8102E;
}

.footer-copy {
  font-size: 0.85rem;
  font-weight: 300;
  color: #888;
}/* End custom CSS */