.elementor-1300 .elementor-element.elementor-element-0fe986c{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-1300 .elementor-element.elementor-element-12ff174{width:var( --container-widget-width, 107.395% );max-width:107.395%;--container-widget-width:107.395%;--container-widget-flex-grow:0;}.elementor-1300 .elementor-element.elementor-element-12ff174.elementor-element{--flex-grow:0;--flex-shrink:0;}@media(min-width:2400px){.elementor-1300 .elementor-element.elementor-element-12ff174{width:var( --container-widget-width, 1972px );max-width:1972px;--container-widget-width:1972px;--container-widget-flex-grow:0;}}@media(max-width:1366px){.elementor-1300 .elementor-element.elementor-element-0fe986c{--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}}/* Start custom CSS for html, class: .elementor-element-12ff174 *//* ====== RESET E BASE ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====== CABEÇALHO ====== */
.header {
  background: linear-gradient(90deg, #002b45 0%, #003d70 60%, #004f9a 100%);
  color: #fff;
  padding: 25px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff7b00;
  letter-spacing: 1px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ff7b00;
  transition: width 0.3s ease;
}

.menu a:hover {
  color: #ffb84d;
}

.menu a:hover::after {
  width: 100%;
}

/* ====== QUEM SOMOS ====== */
.quem-somos {
  background: linear-gradient(135deg, #fefefe 0%, #e9f4ff 100%);
  padding: 90px 20px;
  text-align: center;
}

.quem-somos h2 {
  font-size: 2.4rem;
  color: #002b45;
  margin-bottom: 20px;
  position: relative;
}

.quem-somos h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ff7b00;
  margin: 12px auto 0;
  border-radius: 2px;
}

.quem-somos p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #444;
  line-height: 1.7;
}

/* ====== NOSSO TIME ====== */
.nosso-time {
  background: linear-gradient(135deg, #002b45 0%, #004c8c 100%);
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}

.nosso-time h2 {
  font-size: 2.4rem;
  color: #ffb84d;
  margin-bottom: 40px;
  font-weight: 700;
}

.membro {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 40px 30px;
  max-width: 800px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membro:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.membro img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
  border: 5px solid #ff7b00;
}

.membro h3 {
  font-size: 1.4rem;
  color: #002b45;
  margin-bottom: 15px;
  font-weight: 600;
}

.membro p {
  color: #444;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 10px;
  text-align: justify;
}

.membro p strong {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-weight: 700;
  color: #ff7b00;
}

/* ====== CONTATO ====== */
.contato {
  background: linear-gradient(90deg, #002b45 0%, #004477 80%);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.contato::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 123, 0, 0.15), transparent 70%);
  z-index: 0;
}

.contato h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.contato p {
  margin-bottom: 10px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* ====== RODAPÉ ====== */
.footer {
  background: #001a2b;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  border-top: 3px solid #ff7b00;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

  .membro {
    padding: 30px 20px;
  }

  .membro img {
    width: 160px;
    height: 160px;
  }

  .membro p {
    font-size: 0.95rem;
  }
}/* End custom CSS */