@import "./theme.css";

#app {
  padding: var(--section-py) 0 clamp(4rem, 10vw, 7rem);
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* Keyframes em theme.css */

/* Estado inicial */
#app .col-xs-12.col-md-6 {
  opacity: 0;
}

#app .col-xs-12.col-md-6:first-child {
  transform: translate3d(52px, 0, 0);
}

#app .col-xs-12.col-md-6:last-child {
  transform: translate3d(-52px, 0, 0);
}

/* Animações quando visível */
#app.is-visible .col-xs-12.col-md-6:first-child {
  animation: revealFromRight var(--dur-reveal) var(--ease-reveal) forwards;
}

#app.is-visible .col-xs-12.col-md-6:last-child {
  animation: revealFromLeft var(--dur-reveal) var(--ease-reveal) forwards;
}

/* Outros estilos */
#app h2 {
  position: relative;
  color: var(--primary-text);
  text-transform: none;
}

#app h2::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 0;
  background: var(--gradient-brand);
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(52, 152, 219, 0.28);
}

#app p {
  font-family: "Montserrat", Sans-serif;
  font-size: 28px;
}

#app img {
  margin-top: 10px;
  background: var(--white-background);
  border-right: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 31, 45, 0.06);
}

@media (max-width: 768px) {
  #app .about-text {
    margin-top: 10%;
  }
}

.d-flex {
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: row;
  justify-content: center;
}