.elementor-2452 .elementor-element.elementor-element-8912a3d{--display:flex;}.elementor-2452 .elementor-element.elementor-element-4c73015{--display:flex;}/* Start custom CSS for html, class: .elementor-element-585b509 *//* ===== BASE ===== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* ===== HEADER ===== */
.header {
  text-align: center;
  padding: 20px;
  background: #0c0c0c;
}

.header .logo img {
  max-width: 200px;
  height: auto;
}

/* ===== QUEM SOMOS ===== */
.quem-somos {
  padding: 70px 20px;
  background: linear-gradient(to bottom, #0c0c0c, #1a0000);
}

.quem-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}

.quem-texto h2 {
  font-size: 2.4rem;
  color: #e60000;
  margin-bottom: 20px;
}

.quem-texto p {
  color: #ccc;
  margin-bottom: 15px;
}

.quem-img img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

/* ===== MISSÃO VISÃO VALORES ===== */
.mvv {
  background: #111;
  padding: 60px 20px;
}

.mvv-container {
  display: grid;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.mvv-item {
  background: rgba(255,255,255,0.02);
  padding: 25px;
  border-radius: 14px;
  border: 1px solid rgba(230,0,0,0.3);
  transition: transform 0.3s ease;
}

.mvv-item:hover {
  transform: translateY(-6px);
  border-color: #e60000;
}

.mvv-item h3 {
  color: #e60000;
  margin-bottom: 10px;
}

/* ===== ESPECIALISTAS ===== */
.especialistas {
  background: #000;
  padding: 70px 20px;
  text-align: center;
}

.especialistas-titulo {
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.especialistas-titulo span {
  color: #e60000;
}

.especialistas-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.especialista-card {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.especialista-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(230,0,0,0.5);
}

.card-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.especialista-card:hover .card-img img {
  transform: scale(1.05);
}

.card-info {
  padding: 20px;
  text-align: center;
  background: rgba(0,0,0,0.9);
}

.card-info h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
}

.card-info p {
  margin: 5px 0;
  color: #bbb;
}

.stars {
  color: #ffcc00;
  font-size: 1.1rem;
  margin-top: 6px;
}

/* ===== CTA FINAL ===== */
.cta {
  background: #111;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  margin-bottom: 20px;
  color: #fff;
}

.btn-cta {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: #e60000;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
  background: #ff1a1a;
  transform: scale(1.05);
}

/* ===== RESPONSIVO ===== */
@media (min-width: 768px) {
  .quem-container {
    flex-direction: row;
    text-align: left;
  }
  .quem-texto {
    flex: 1;
  }
  .quem-img {
    flex: 1;
  }

  .mvv-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .especialistas-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-img {
    height: 350px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-550fdfd *//* ===== FOOTER ===== */
.footer {
  background: #000;
  color: #eee;
  padding: 70px 25px 30px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(230,0,0,0.2);
}

/* Glow vermelho no fundo */
.footer::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(230,0,0,0.25);
  filter: blur(150px);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

/* Container */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Colunas */
.footer-col {
  flex: 1;
  min-width: 280px;
  padding: 10px;
  transition: transform 0.3s ease;
}

.footer-col:hover {
  transform: translateY(-6px);
}

.footer-col h3 {
  font-size: 1.3rem;
  color: #e60000;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 0 10px rgba(230,0,0,0.6);
  position: relative;
}

.footer-divider {
  width: 55px;
  height: 2px;
  background: linear-gradient(90deg, #e60000, transparent);
  margin-bottom: 18px;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.footer-col:hover .footer-divider {
  width: 85px;
}

/* Logo + slogan */
.footer-brand {
  text-align: center;
}

.footer-logo {
  width: 170px;
  margin-bottom: 15px;
  animation: fadeIn 1.2s ease forwards;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.slogan {
  font-style: italic;
  font-size: 0.95rem;
  color: #bbb;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

/* Textos */
.footer-col p {
  margin: 8px 0;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.footer-col p i {
  color: #e60000;
  margin-right: 8px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(230,0,0,0.7);
}

/* Redes sociais */
.socials {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  color: #eee;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.socials a:hover {
  color: #fff;
  background: #e60000;
  border-color: #e60000;
  transform: scale(1.15) rotate(5deg);
}

/* Rodapé inferior */
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 18px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  letter-spacing: 0.5px;
}

.footer-bottom a {
  color: #e60000;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
  from { opacity: 0.5; transform: scale(1); }
  to { opacity: 0.8; transform: scale(1.15); }
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h3 {
    justify-content: center;
  }

  .socials {
    justify-content: center;
  }
}/* End custom CSS */