/* ====== IMPORTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('mediaframes.css');

/* ====== VARIÁVEIS ROOT ====== */
:root {
    --background: #1f1f1f;
    --primary: #22ce00;
    --primary-plus: #969696;
    --secondary: #181818;
    --secondary-plus: #188f00;
    --primary-dark: #333333;
    --primary-light: #6a757967;
    --text-color: rgb(255, 255, 255);
    --text-light: rgba(173, 173, 173, 0.438);
    --links: #c73500;
    --links-hover: #8a2b08;
}

/* ====== RESET E BASE ====== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-color);
    background-color: var(--background);
    line-height: 1.5;
    scroll-behavior: smooth;

}


.container {
    width: 100%;
}

fieldset legend {
    font-size: 1.20rem;
    font-weight: 600;
    color: #333;
    padding: 0 0.5rem;
}

/*Text*/

/* ====== TÍTULOS ====== */
h1,
h2,
h3 {
    color: var(--text-color);
}


/*Media Frames*/
.animate {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.animate.start {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-in-out;
}

.animate.start.visible {
    opacity: 1;
    transform: translateY(0);
}

.fadeIn {
    animation: fadeIn 1s ease-in-out;
}

.fadeInSlow {
    animation: fadeIn 2.5s ease-in-out;
}

button {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    text-shadow: 1px 1px 2px #000;
    transition: all 0.3s ease;
}


/* ====== BOTÕES ====== */
button.open-modal {
    border: none;
    border-radius: 4px;
    padding: 8px 5px;
    font-size: 13px;
    transition: background-color 0.3s;
}

button.open-modal:hover {
    background-color: #005fa3;
}