/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #fff;
    color: #111;
}

/*------ 01  NAVBAR --------- */
.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;      /* ajuste conforme o visual */
    width: auto;
    display: block;
}


/* MENU DESKTOP */
.nav-center {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-center a {
    text-decoration: none;
    font-weight: 600;
    color: #333;
    position: relative;
}

.nav-center a::after {
    content: '';
    width: 0;
    height: 2px;
    background-color: #ffc700;
    position: absolute;
    bottom: -6px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-center a:hover::after {
    width: 100%;
}

/* BOTÃO ANUNCIE */

.btn-anuncie {
    padding: 5px 22px;
    background-color: #000;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-anuncie:hover {
    background: linear-gradient(135deg, #f5c400, #ffde59);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 196, 0, 0.4);
}



/* BOTÃO MENU MOBILE */
.menu-toggle {
    display: none;
    margin-left: 14px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

/* MENU MOBILE */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    z-index: 2000;
    padding: 30px;
    transition: right 0.3s ease;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 40px;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}



.mobile-anuncie a{
    background-color: var(--primary-color);
}
/* Botão fechar */
.close-menu {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* Botão anuncie mobile */
.mobile-anuncie {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    background-color: #000;
    color: #fff;
    border-radius: 30px;
}

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.overlay.show {
    opacity: 1;
    pointer-events: all;
}





















/* CONTAINER */
.agenda-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* HEADER */
.agenda-header {
    margin-bottom: 60px;
}

.agenda-day {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.agenda-date {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    color: #666;
}

/* CATEGORIA */
.agenda-category {
    margin-bottom: 50px;
}

.agenda-category h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.agenda-category h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #ffc700;
    position: absolute;
    left: 0;
    bottom: -10px;
}

/* EVENTO */
.agenda-event {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.event-time {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    min-width: 60px;
}

.event-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.event-info p {
    font-size: 0.95rem;
    color: #666;
}

/* BOTÃO */
.event-btn {
    margin-left: auto;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    color: #000;
    border: 2px solid #000;
    transition: 0.3s ease;
}

.event-btn:hover {
    background-color: #000;
    color: #fff;
}


/* 6. Footer - Rodapé ---*/

.footer-serrana {
    background-color: #ffffff;
    border-top: 1px solid #eee;
    padding: 40px 20px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo img {
    max-width: 160px;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #f5c400; /* amarelo Serrana */
}

.footer-copy p {
    font-size: 13px;
    color: #888;
    margin: 4px 0;
}

.footer-dev a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.footer-dev a:hover {
    color: #f5c400;
}





.event-submit-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.event-submit-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.event-submit-header {
    text-align: center;
    margin-bottom: 50px;
}

.event-submit-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.event-submit-header p {
    font-size: 1.05rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Conteúdo */
.event-submit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Imagem */
.event-submit-image img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

/* Formulário */
.event-submit-form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffc700;
}

/* Linha dupla */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Botão */
.btn-submit-event {
    margin-top: 10px;
    padding: 14px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit-event:hover {
    background: linear-gradient(135deg, #ffc700, #ffde59);
    color: #000;
}

/* Observação */
.event-submit-note {
    margin-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsivo */
@media (max-width: 900px) {
    .event-submit-content {
        grid-template-columns: 1fr;
    }

    .event-submit-image img {
        max-height: 300px;
    }
}
























/* RESPONSIVO */
@media (max-width: 900px) {

    /* Navbar */
     /* Esconde menu desktop */
     .nav-center {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
    .btn-anuncie{
        display: none;
    }


    .news-section {
    margin: 0 auto;      /* centraliza */
    padding: 0 10px;
    }     /* espaço nas laterais */

    .news-content {
        grid-template-columns: 1fr;
    }

    .news-gallery {
        column-count: 3;
    }
}







/* RESPONSIVO */
@media (max-width: 768px) {
    .agenda-day {
        font-size: 3rem;
    }

    .agenda-event {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .event-btn {
        margin-left: 0;
        margin-top: 10px;
    }
      .nav-center {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
    .btn-anuncie{
        display: none;
    }
    .news-section {
        margin: 0 auto;      /* centraliza */
        padding: 0 10px;     /* espaço nas laterais */
    }
}


