/* =========================
   IMPORTS
========================= */
@import url(cssConponentes/publicHero.css);
@import url(cssConponentes/publicServises.css);
@import url(cssConponentes/publicProfisionais.css);
@import url(cssConponentes/publicComentarios.css);
@import url(cssConponentes/footer.css);

/* =========================
   VARIÁVEIS GLOBAIS
========================= */
:root {
    --primary-green: #00ce11;
    --primary-blue: #00aeff;
    --text-light: #fff;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --border-radius: 10px;

    --shadow-btn-green: 
        inset 0 0 0px 2px var(--primary-green),
        inset 0 0 3px 4px #013f06,
        inset 0 0 5px 5px #046b0d, 
        inset 3px 3px 7px 5px #b5ffc1,
        inset -3px -3px 7px 5px #03460e,
        0 0 5px 3px black,
        0 0 7px var(--primary-green);

    --shadow-btn-blue: 
        inset 0 0 0px 2px var(--primary-blue),
        inset 0 0 5px 5px #094561, 
        inset 0 0 5px 5px #0371a0, 
        inset 3px 3px 7px 5px #b8e9ff,
        inset -3px -3px 7px 5px #04425f,
        0 0 5px 3px black,
        0 0 7px var(--primary-blue);
}

/* =========================
   RESET E PADRÕES
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
    margin: 0;
    background-color: #1a1a2e;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

main, section, article {
    width: 100%;
    max-width: 100vw;
}

section {
    text-align: center;
}

article {
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

/* =========================
   COMPONENTES GENÉRICOS
========================= */
.btn-admin {
    width: 100%;
    background-color: var(--primary-blue);
    color: #fff;
    box-shadow: var(--shadow-btn-blue);
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 3px black;
}

.btn-admin:hover {
    background-color: #555;
}

.evnt {
    height: 100% !important;
    font-size: 1.5em;
    background-color: rgba(0, 0, 0, 0.418);
}

/* =========================
   MEDIA QUERIES GERAIS
========================= */

/* Tablet (601px a 900px) */
@media (min-width: 601px) and (max-width: 900px) {
    body, html {
        font-size: 15px;
    }

    main {
        padding: 15px;
    }

    article {
        min-height: 600px;
    }
}

/* Desktop (acima de 900px) */
@media (min-width: 901px) {
    body, html {
        font-size: 16px;
    }

    main {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    main > section {
        max-width: 1400px;
    }

    article {
        min-height: 700px;
    }
}