/*========================================
= GLOBAL
=========================================*/

* {
    cursor: url("img/cursor.png"), auto;
    box-sizing: border-box;
}

body {
    background-image: url("img/bg.png");
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

main {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background-color: rgba(49, 49, 49, 0.3);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/*========================================
= HEADER
=========================================*/

header {
    padding: 20px 0;
}

.header-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-images img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 12px;
}

header a img:hover {
    transition: 0.3s;
    transform: scale(1.05);
    cursor: url("img/cursor_point.png"), auto;
}

/*========================================
= NAV BAR
=========================================*/

nav {
    margin: 20px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #333;
    border-radius: 12px;
    overflow: hidden;
}

nav li {
    flex: 1;
    min-width: 120px;
}

nav li a {
    display: block;
    padding: 14px 20px;
    text-align: center;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

nav li a:hover {
    background-color: #111;
    cursor: url("img/cursor_point.png"), auto;
}

/*========================================
= ÁREA PRINCIPAL DO SITE
=========================================*/

.main-content-full {
    background: rgba(255, 255, 200, 0.35); 
    border-radius: 12px;

    /* Borda dupla estilo retrô */
    border: 4px solid #000;
    outline: 4px solid #755c3b;

    /* Sombra das caixas do index */
    box-shadow:
        inset 0 0 0 2px #00000066,
        0 0 8px #00000055,
        0 0 14px #00000033;

    padding: 25px 30px;
    margin: 25px 0;
}

.main-content-full h1 {
    font-family: "Press Start 2P", monospace;
    color: #2e1f0f;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow:
        -2px -2px 0 #fff,
         2px -2px 0 #fff,
        -2px  2px 0 #fff,
         2px  2px 0 #fff,
         0  0   8px #00000055;
    margin-bottom: 20px;
}

.main-content-full p {
    color: #000;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    font-family: Arial, sans-serif;
}

strong {
    color: #2a5c8b;
}

/*========================================
= IMAGEM DA FEIRA
=========================================*/

.feira-image {
    display: block;
    margin: 30px auto;
    max-width: 80%;
    height: auto;
    border-radius: 12px;
}

/*========================================
= INSTAGRAM
=========================================*/

.social-box {
    background-color: #333;
    padding: 10px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
}

.social-box a.insta {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 14px 20px;
    border-radius: 12px;
    background-color: #333;
    display: inline-block;
    transition: background 0.3s;
}

.social-box a.insta:hover {
    background-color: #111;
    cursor: url("img/cursor_point.png"), auto;
}

/*========================================
= RESPONSIVIDADE
=========================================*/

@media (max-width: 1024px) {
    main {
        width: 90%;
        padding: 15px;
    }

    nav li a {
        padding: 12px;
    }
}

@media (max-width: 768px) {
    main {
        width: 95%;
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }

    nav li {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-images img {
        width: 100px;
        height: 100px;
    }

    .main-content-full h1 {
        font-size: 1.3rem;
    }
}
