* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
}

/* ONDA CINZA — camada de trás */
.main::before {
    content: '';
    position: absolute;
    bottom: 30px;            /* ***SOBE A ONDA CINZA*** */
    left: 0;
    width: 100%;
    height: 200px;           /* mais alta para aparecer atrás */
    /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 200' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 120 C220 180 520 175 740 130 C1000 75 1250 105 1440 150 V200 H0 Z' fill='%23cccccc'/%3E%3C/svg%3E"); */
    background-size: cover;
    background-position: bottom;
    z-index: 1; /* fica atrás */
}

/* ONDA BRANCA — camada da frente */
.main::after {
    content: '';
    position: absolute;
    bottom: 0;               /* branca sempre colada na base */
    left: 0;
    width: 100%;
    height: 160px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 160' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 80 C200 140 500 140 720 90 C950 40 1200 60 1440 110 V160 H0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
     z-index: 2; /*fica à frente */
}


.home-nav {
    padding: 1rem 2rem;
}

.home {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.label-aprovar {
    display: flex;
    align-items: center;
    gap: 5px;
}
.label-aprovar label {
    margin-bottom: 0px !important;
}
.svg-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nome-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.titulo-link {
    text-decoration: none;
    color: #2c3e75;
    font-size: 1.5rem;
}

.nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.main {
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* background: linear-gradient(to bottom,
        var(--cor-preto-padrao) 0%,
        var(--cor-preto-padrao) 20%,
        var(--cor-azul-padrao) 100%); */
    position: relative;
    padding-bottom: 120px;
    overflow: hidden;
}
#c {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-color: transparent;
}
.main-busca {
    display: grid;
    align-items: center;
    justify-content: center;
    min-height: 74vh;
    width: 100vw;
    background: linear-gradient();
    background: linear-gradient(180deg,#000812,#004985);
    position: relative;
    overflow: hidden;
}

.titulo-principal,
.subtitulo-principal {
    color: white;
    animation: fadeInUp 1s ease-out;
}
.subtitulo-principal{
    margin-top: 1rem;
    color: #445ebf;
}

.titulo-principal {
    font-size: 48px;
    text-align: center;
    font-weight: 700;
}

.organiza-titulos {
    margin: 1rem;
}

.subtitulo-principal {
    font-size: 24px;
    text-align: center;
    animation-delay: 1.3s;
    animation-fill-mode: both;
}

.organiza-pagina-inicial {
    width: 55vw;
    height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 10;
    position: relative;
}

.section-busca {
    display: grid;
    justify-content: center;
}

.search-form {
    display: flex;
    flex-direction: row;
    align-self: start;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #2c3e75;
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 62, 117, 0.1);
}

.search-button {
    padding: 10px 10px;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

/* .search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 62, 117, 0.3);
} */

.barra-de-pesquisa {
    height: 4rem;
    display: flex;
    align-items: center;
    border-radius: 50px !important;
}
.relative.w-full.dv-busca.mb-4 {
    margin-bottom: 0 !important;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-label.regular {
    margin: 0;
}

.peer:placeholder-shown.barra-de-pesquisa~.form-label {
    top: 25px !important;
}

@media (max-width: 768px) {
    .titulo-principal {
        font-size: 32px;
    }

    .subtitulo-principal {
        font-size: 18px;
    }

    .organiza-pagina-inicial {
        width: 90vw;
    }

    .container-busca {
        width: 85vw;
        padding: 1.5rem;
    }
    .main-busca{
        min-height: 78vh;
    }
}
