/* 
  Theme: Stargio - Deep Space / "Decole sua carreira" 
  Aesthetic: Modern, Glassmorphism, Neon Accents, Smooth Animations
*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-color: #0b0f19;
    --text-color: #000000;
    --accent-primary: #ff5e00;
    /* Rocket fire orange */
    --accent-secondary: #ff2a5f;
    /* Cosmic pink/red */
    --star-yellow: #36ec08;
    --card-bg: rgba(77, 24, 24, 0.03);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #00000000;
    backdrop-filter: blur(100px);
    background-repeat: repeat-x;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    overflow-x: hidden;
}


header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgb(255, 255, 255);
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #e07f00, var(--star-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo span {
    font-size: 1.5rem;
    -webkit-text-fill-color: initial;
    /* MantĆ©m o emoji em cor normal */
}

nav a {
    color: #000000;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-primary);
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 1rem 4rem;
    position: relative;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    letter-spacing: -2px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: 3rem;
    color: #a0aec0;
}

.card-usuarios {
    display: flex;
    gap: 1.5rem;
}

.btn-usuarios {
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-empresarios {
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cards {
    display: flex;
    justify-content: center;
    height: 300px;
    padding-bottom: 500px;
}

.card-estagiarios {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 5% 6rem;
    flex-wrap: wrap;
    z-index: 10;
    width: 300px;
    height: 400px;
    background-color: #00030a3b;

}

.card-estagiarios p {
    font-size: 15px;
    background-color: hsla(345, 87%, 27%, 0.178);

}

.card-empresarios {
    border-radius: 3px;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 5% 6rem;
    flex-wrap: wrap;
    z-index: 10;
    width: 300px;
    height: 400px;
    background-color: #00030a3b;
}

.card-empresarios p {
    font-size: 15px;
    background-color: hsla(221, 85%, 46%, 0.26);
}

.section-pesquisar {
    background-color: #d30f0f3b;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards-pesquisar {
    display: flex;
    z-index: 10;
    width: 100%;
    height: 400px;
    background-color: #00030a3b;
    align-items: center;
}

.item-pesquisar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100px;

    background-color: #2a5694;
    border-radius: 15%;

    color: white;
    text-align: center;
    cursor: pointer;

    margin: 10px

}

.search-form {
    display: flex;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.section-estagio {
    background-color: #ff01013b;
    width: 300px;
    height: 400px;
    align-items: center;
}

.section-empresas {
    background-color: #d900ec3b;
    width: 300px;
    height: 400px;
    align-items: center;
}

.company-logo {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.5rem;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: #0f6de0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}


footer {
    text-align: center;
    padding: 2.5rem;
    border-top: 1px solid var(--card-border);
    margin-top: auto;
    color: #0065f1;
    background-color: #b32424;
    font-size: 0.95rem;
    height: 100px;

}