* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sora', sans-serif;
    
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #B48A00;
    --secondary: #C8B165;
    --dark: #0d0901;
    --darker: #0a0f1c;
    --clear: #e2e8f0;
    --glass: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--dark);
    color: var(--clear);
    margin-bottom: 100px;
}

.navigation {
    position: fixed;
    background:rgba(0, 0, 0, 0.4);
    width: 100%;
    z-index: 100;
    top: 0;
    padding: 1.5rem;
}

.menu{
    display: flex;
    list-style: none;
    gap: 3rem;
    justify-content: center;
}

.menu-link {
    text-decoration: none;
    color: var(--clear);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.menu-link::after {
    content: '';
    height: 2px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.5s ease;
}

.menu-link:hover::after {
    width: 100%;
}

.header {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 2rem;
}

.profile-photo {
    width: 300px;
    height: 300px;
    box-shadow: 0 0 20px rgba(200, 177, 101, 0.3);
    border-radius: 50%;
    border: 4px solid var(--glass);
    transition: transform 0.1s linear;
    will-change: transform;
    transform-style: preserve-3d;
    
}

h1 {
    font-size: 3.5rem;
    color: var(--primary);
    font-weight: bold;
    margin: 20px;
}

.caption {
    font-size: 1.5rem;
    color: var(--clear);
}

.about {
    padding: 6rem 2rem;
}

.about-title {
    font-size: 3rem;
    color: var(--clear);
    text-align: center;
    margin-bottom: 40px;
}

.about-box {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    border: 1px solid var(--glass);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.about-paragraph {
    text-align: center;
    font-size: 1rem; 
}

.founders {
    padding: 6rem 2rem;
}

.founders-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.founders-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 10rem;
    max-width: 1200px;
    margin: 0 auto;
}

.founders-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass);
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.founders-card:hover {
    box-shadow: 0 10px 20px rgba(213, 166, 12, 0.585);
    transform: translateY(-10px) scale(1.03);
}


.founders-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.info-founders {
    margin-bottom: 8px;
}

.paragraph-founders {
    color: rgba(226, 232, 240, 0.8);
    line-height: 1rem;

}

.box-titles-founders{
    padding: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
}

.contact {
    padding: 6rem 2rem;
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.form-contact {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border: 1px solid var(--glass);
    border-radius: 16px;
}

.form {
    transition: all 0.5s ease;
    margin-bottom: 1.5rem;
}

.form:hover {
    transform: translateY(-10px) scale(1.03);
    
}

input:-webkit-autofill {
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.05) inset !important;
    -webkit-text-fill-color: var(--clear) !important;
    border: 1px solid var(--glass) !important;
    border-radius: 8px;
    transition: background-color 5000s ease-in-out 0s;
}

.camp-form {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--clear);
    border: 1px solid var(--glass);
    outline: none;
}

.camp-form:focus {
    border-color: var(--secondary);
}

.btn-submit {
    color: var(--clear);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: all 0.5s ease;
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(200, 177, 101, 0.5);
}

.particulas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background: radial-gradient(circle at 10% 20%, var(--primary) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, var(--secondary) 0%, transparent 20%), var(--darker);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.error {
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05); 
    border-left: 3px solid var(--primary); 
    color: var(--primary);
    font-size: 0.85rem;
    border-radius: 6px;
    display: block;
    animation: shake 0.3s ease;
    box-shadow: 0 0 5px rgba(200, 177, 101, 0.2);
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

.flash-container {
    position: fixed;
    top: 5rem;
    right: 20px;
    z-index: 9999;
}

.toast {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-weight: 500;
    color: var(--dark);
    animation: fadein 0.5s ease, fadeout 0.5s ease 3.5s;
    opacity: 0;
    animation-fill-mode: forwards;
    box-shadow: 0 5px 15px rgba(200, 177, 101, 0.5);
}

/* Estilo por categoria do flash */
.flash-success {
    background-color: var(--primary);
}

.flash-error {
    background-color: #dc3545; /* vermelho */
}

.flash-warning {
    background-color: #ffc107; /* amarelo */
}

@keyframes fadein {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeout {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

/* Responsivo para tablets */
@media (max-width: 992px) {
    .menu {
        flex-direction: column;
        gap: 1rem;
    }

    .founders-box {
        gap: 4rem;
    }

    .form:hover {
        transform: none;
    }
}

/* Responsivo para celulares */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .caption {
        font-size: 1.2rem;
        text-align: center;
    }

    .about-box,
    .form-contact {
        padding: 1.5rem;
    }

    .founders-box {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-photo {
        width: 200px;
        height: 200px;
    }

    .menu {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
    }

    .btn-submit {
        font-size: 1rem;
    }

    .form {
        margin-bottom: 1rem;
    }
}

/* Botão de menu */
.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--clear);
    cursor: pointer;
    position: absolute;
    top: -0.49rem;
    left: 1rem;
    z-index: 101;
}

/* Mobile & Tablet Responsividade */
@media (max-width: 1024px) {
    .menu {
        display: none;
        flex-direction: column;
        gap: 2rem;
        position: fixed;
        top: 0;
        left: 0;
        background: var(--dark);
        width: 45%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        z-index: 100;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(200, 177, 101, 0.5);
    }

    .menu.active {
        display: flex;
    }

    #menu-toggle {
        display: block;
    }

    nav.navigation {
        padding: 1rem;
    }
}