* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f9f9f9;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}

.header-logo img {
  height: 40px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #2a7de1;
  cursor: pointer;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.header-nav ul li a {
  text-decoration: none;
  color: #2a7de1;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.header-nav ul li a:hover {
  color: #174f9c;
}

/* Seção Sobre Profissional */
.sobre-estrutura {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-info {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  /* Removido o fundo branco aqui */
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sobre-info p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  margin-bottom: 1em;
}

.estrutura-bloco {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  background: transparent; /* garantia de fundo limpo */
}

/* Intercalamento automático */
.estrutura-bloco:nth-child(even) {
  direction: rtl;
}

.estrutura-bloco:nth-child(even) .texto {
  direction: ltr;
}

.estrutura-bloco img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: none; /* removendo sombra branca */
  background: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  position: relative;
  z-index: 1;
}


/* Container para criar efeito espelhado */
.estrutura-bloco .image-container {
  position: relative;
  width: 100%;
}

/* Reflexo */
.estrutura-bloco .image-container::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100px; /* altura do reflexo */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Imagem reflexa */
.estrutura-bloco .image-container img.reflected {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100px; /* altura do reflexo */
  object-fit: cover;
  border-radius: 0 0 12px 12px;
  transform: scaleY(-1);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
  filter: blur(1px);
}

/* Hover para efeito de destaque */
.estrutura-bloco img:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.texto h2 {
  font-size: 28px;
  color: #2a7de1;
  margin-bottom: 15px;
}

.texto p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #2a7de1;
  color: #ffffff;
  padding: 60px 20px 40px;
  margin-top: 80px;
  text-align: center;
  width: 100%;
}

.footer-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-title {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.footer-depoimento {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.footer-depoimento a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 25px;
}

.footer-social a {
  font-size: 32px;
  color: #ffffff;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  transform: scale(1.2);
  color: #d0e6ff;
}

.footer-copy {
  font-size: 15px;
  color: #e0e0e0;
  text-align: center;
}

.footer-title {
  font-size: 26px;
}

.footer-depoimento {
  font-size: 16px;
  padding: 0 10px;
}

.footer-social a {
  font-size: 24px;
}

.footer-copy {
  font-size: 13px;
  padding: 0 10px;
}

/* Responsivo */
@media (max-width: 900px) {
  .estrutura-bloco,
  .estrutura-bloco:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .estrutura-bloco img {
    height: 250px;
  }

  .estrutura-bloco .texto {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-nav {
    display: none;
    width: 100%;
    margin-top: 10px;
  }

  .header-nav.active {
    display: block;
    text-align: center;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 12px;
    padding-top: 10px;
  }

  .header-nav ul li {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  .header-nav ul li a {
    text-align: center;
    width: 100%;
  }
}
