@charset "UTF-8";

/* TRABALHANDO COM A BODY -------------------------------------------------------------------------------------------------------------------------------------*/
body {
            background-image: linear-gradient(180deg, #172341, #020617);
            font-family: 'Inter', sans-serif;
            color : #E5E7EB;
            margin: 0;
            padding-top: 40px;
}
/* TRABALHANDO COM A HEADER -------------------------------------------------------------------------------------------------------------------------------------*/
header h1 span {
  color: #38BDF8;
}

header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}
.hero-text {
    max-width: 700px;
    padding-top: 8px;
}
.hero-text h1 {
  font-weight: 700;
}
.hero-text h2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px; 
    line-height: 1.2;
}
.meta {
    margin: 10px 0;
}
.actions {
    margin: 14px 0;
}
header a {
  transition: opacity 0.2s;
}
header a:hover {
  opacity: 0.8;
  text-decoration: none;
}
@media (max-width: 700px) {
  header {
    text-align: center;
  }
  .hero-text h2{
    justify-content: center;
  }
  .hero {
    flex-direction: column;
  }

  .hero-text {
    max-width: 100%;
  }
}
header::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 20px auto;
    background-color: #38BDF8;
    border-radius: 3px;
}
.email:hover {
    text-decoration: none;
}
.opentowork::before {
  content: "●";
  margin-right: 6px;
  color: #16A34A;
}
.opentowork {
    background:#22C55E;
    color:#0F172A;
    padding:4px 10px;
    border-radius:999px;
    font-size:0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 0;
    white-space: nowrap;
}
header a:hover {
  text-decoration: none;
  opacity: 0.85;
}
/* TRABALHANDO COM OS LINKS -------------------------------------------------------------------------------------------------------------------------------------*/
a {
    color: #38BDF8;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    color: #22C55E;
}
/* TRABALHANDO COM A MAIN -------------------------------------------------------------------------------------------------------------------------------------*/
main {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}
section {
    position: relative;
    padding-top: 30px;
    border-radius: 20px;
    transition: background-color 0.2s ease;
    margin-bottom: 28px;
}
section > h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background-color: #22C55E;
    border-radius: 4px;
}
section > h2 {
    position: relative;
    padding-left: 14px;
}
section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #38BDF8;
}
section:hover {
    background-color: #1E293B;
    padding: 10px;
}
/* TRABALHANDO COM AS PARTES DA MAIN -------------------------------------------------------------------------------------------------------------------------------------*/
#about {
    text-align: left;
}
#principal{
    color: #22C55E;
}
/* TRABALHANDO COM AS IMAGENS -------------------------------------------------------------------------------------------------------------------------------------*/
img {
    margin:auto;
    display: block;
    border-radius: 16px;
}
/* TRABALHANDO COM PARÁGRAFOS E LISTAS -------------------------------------------------------------------------------------------------------------------------------------*/
ul {
  list-style: none;
  padding-left: 20px;
}
li {
  position: relative;
  padding-left: 18px;
  margin: 7px 0px;
}
li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #38BDF8;
}
/* TRABALHANDO COM A FOOTER -------------------------------------------------------------------------------------------------------------------------------------*/
footer {
    background-color: #020617;
    color: #E5E7EB;
    padding: 16px;
    margin-top: 50px; 
}
#fim {
    text-align: center;
}
footer > p {
    margin: 0px;
    padding: 0px;
}
