@import url('https://fonts.googleapis.com/css2?family=Krona+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #0F1523;
    color: white;
}

.banner {
    height: 60dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(to right, #0097A8, darkblue,  #0097A8);
}

.banner__h2 {
    font-family: "Krona One", sans-serif;
    font-size: 3.5rem;
}

.banner p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    color: lightgray;
}

.catalogo__texto {
    margin: 2.5rem;
    color: white;
    font-family: "Krona One", sans-serif;
    text-align: center;
    font-size: 1.7rem;
    text-align: center;
}

.catalogo__card {
    display: flex;
    padding: 0, 1rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.card {
  background-color: #1a1a2e;
  color: #fff;
  width: 18rem;
  min-height: 24rem;
  margin: 20px;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 50px #0097A8;
}

.card img {
  max-width: 100%;
  max-height: 18rempx;
  object-fit: contain;
  margin-bottom: 1rem;
}

.card h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-family: "Krona One", sans-serif;
}

.card p {
    color: lightgray;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
}

.sobre {
    display: flex;
    background-color: #0097A8;
    padding: 4rem;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.sobre h3{
    font-family: "Krona One", sans-serif;
    font-size: 2rem;
}

.sobre p {
    font-family: "Montsserrat", sans-serif;
    font-size: 1.1rem;
    max-width: 50%;
}

.contato {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

.contato h3 {
    font-family: "Krona One", sans-serif;
    font-size: 2rem;
}

.contato__input {
    width: 20rem;
    min-height: 3rem;
    background-color: #1F2937;
    color: white;
    border-radius: 8px;
    border: red;
    color: red;
}

.contato textarea {
    min-height: 5rem;
}

.contato button {
    padding: 1rem 2.5rem;
    background-color: white;
    font-family: "Krona One", sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5rem;
}

header .OrionStudios {
    font-size: 1.8rem;
    font-family: "krona One", sans-serif;
    font-weight: bold;
    color: #0097A8;
    text-decoration: none;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-family: "Korna One", sans-serif;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #0097A8;
}

footer {
    display: flex;
    background-color: black;
    padding: 1.2rem;
    justify-content: center;
    font-family: "Montsserat", sans-serif;
}

.painel {
    height: 100vh;
    background: linear-gradient(black, #0097A8);
}

.addData {
    display: flex;
}

