/* RESET GERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  padding-top: 0px;
  font-family: 'Inter', sans-serif;
  background-color: #f2f2f2;
  color: #333;
}

/* CONTEÚDO PRINCIPAL */
.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90vh;
  padding: 0px 40px;
  background-color: #ffffff;
  color: #333;
  text-align: left;
  gap: 0px;
  position: relative;
  top:0;
  margin-top: -80px;
  overflow: hidden;
}

.content-left {
  flex: 1;
  padding-top: 120px;
}

.content-right {
  flex: 1;
  height: 105%;
  position: relative;
  overflow: hidden;
}
.antigo-content-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(
    37% 0, 100% 0, 100% 100%, 34% 100%,
    11% 100%, 2% 80%, 2% 79%, 2% 78%,
    27% 9%, 28% 7%, 29% 5%, 30% 4%,
    31% 3%, 32% 2%
  );
}
.content-right img {
  width: 100%;
 
  margin-top:60px;


}

.content h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.content h1 span {
  display: block;
}

.content p {
  font-size: 24px;
  color: #0055aa;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* BOTÕES */
.action-buttons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  background-color: #d0e8ff;
  color: #0055aa;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 85, 170, 0.15);
}

.btn:hover {
  background-color: #b0dbff;
  transform: translateY(-2px);
}

/* CTA Banner */
.cta-banner {
  background-color: #003366;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 20px;
  display: inline-block;
}

.flash {
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  text-align: center;
}
.flash-success {
  color: #065f46;
  background: rgba(25,135,84,.12);
  border: 1px solid rgba(25,135,84,.35);

  animation: fadeIn 0.5s forwards;
}

.flash-error {
  color: #991b1b;
  background: rgba(220,53,69,.12);
  border: 0px solid rgba(220,53,69,.35);

  animation: fadeIn 0.5s forwards;
}

.flash-warning {
  background: rgba(255,193,7,.12);
  border: 0px solid rgba(255,193,7,.35);
}
.flash-info {
  background: rgba(13,110,253,.12);
  border: 0px solid rgba(13,110,253,.35);
}

/* Flash alinhada com os campos SOMENTE no Profile */
.profile-container > .flash{
  width: 100%;
  max-width: 700px;         /* ajuste para bater com os inputs */
  margin: 12px auto 18px;   /* centraliza igual os campos */
  box-sizing: border-box;
}


/* RESPONSIVO */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    height: auto;
  }

  .content-left,
  .content-right {
    flex: none;
    width: 100%;
    padding-top: 90px;
  }

  .content-right {
    height: auto;
    display:none;
  }
}
