/* ========================================
   NOVO ESTILO JUMAS - v6.0
   - Logo aumentado em 30%
   ========================================
*/

/* Paleta de cores baseada no logo */
:root {
    --jumas-blue: #2e3a59;   /* Azul do texto JUMAS */
    --jumas-green: #00897b;  /* Verde da bandeira */
    --jumas-yellow: #fdd835; /* Amarelo do cálice */
    --jumas-red: #e53935;     /* Vermelho da chama */
    
    --background-white: #ffffff; /* Fundo branco para um visual limpo */
    --background-light-gray: #f5f7fa; /* Cinza claro para seções */
    --text-dark: #333333;       /* Cor de texto principal */
    --text-light: #ffffff;      /* Cor de texto para fundos escuros */
}

/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    background-color: var(--background-white);
    color: var(--text-dark);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--jumas-blue);
}

/* Header e Navegação */
header {
    background-color: var(--background-white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO AUMENTADO EM 30% ===== */
.logo-img {
    max-height: 105px; /* Aumentado de 80px para 105px */
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 30px;
}

header nav a {
    color: var(--jumas-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

header nav a:hover {
    color: var(--jumas-green);
    border-bottom-color: var(--jumas-green);
}

/* ===== ESPAÇAMENTO AJUSTADO PARA O HEADER MAIOR ===== */
main {
    padding-top: 140px; 
}

section {
    padding: 60px 0;
}
section:nth-child(even) {
    background-color: var(--background-light-gray); /* Alterna cor de fundo das seções */
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    font-weight: 900;
}

/* Seção Hero com a FOTO OFICIAL DO GRUPO */
.hero {
    background: linear-gradient(rgba(46, 58, 89, 0.75), rgba(46, 58, 89, 0.75)), url('foto-fundo-grupo.jpg') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 120px 0;
}

.hero h1, .hero p {
    color: var(--text-light);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.6rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Estrutura de Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.evento-card {
    border-top: 5px solid var(--jumas-green);
}
.prog-card {
    border-top: 5px solid var(--jumas-yellow);
}

.card p.data {
    color: var(--jumas-red);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Seção de Contato */
#contato p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.contato-info a {
    color: var(--jumas-green);
    text-decoration: none;
    font-weight: 700;
}

.contato-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--jumas-blue);
    color: var(--text-light);
    text-align: center;
    padding: 40px 0;
}

/* Responsividade para Celulares */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    /* ===== ESPAÇAMENTO AJUSTADO PARA O HEADER MAIOR NO CELULAR ===== */
    main {
        padding-top: 195px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    section h2 {
        font-size: 2.2rem;
    }
}/* ========================================
   NOVO ESTILO JUMAS - v6.0
   - Logo aumentado em 30%
   ========================================
*/

/* Paleta de cores baseada no logo */
:root {
    --jumas-blue: #2e3a59;   /* Azul do texto JUMAS */
    --jumas-green: #00897b;  /* Verde da bandeira */
    --jumas-yellow: #fdd835; /* Amarelo do cálice */
    --jumas-red: #e53935;     /* Vermelho da chama */
    
    --background-white: #ffffff; /* Fundo branco para um visual limpo */
    --background-light-gray: #f5f7fa; /* Cinza claro para seções */
    --text-dark: #333333;       /* Cor de texto principal */
    --text-light: #ffffff;      /* Cor de texto para fundos escuros */
}

/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    background-color: var(--background-white);
    color: var(--text-dark);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--jumas-blue);
}

/* Header e Navegação */
header {
    background-color: var(--background-white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO AUMENTADO EM 30% ===== */
.logo-img {
    max-height: 105px; /* Aumentado de 80px para 105px */
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 30px;
}

header nav a {
    color: var(--jumas-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

header nav a:hover {
    color: var(--jumas-green);
    border-bottom-color: var(--jumas-green);
}

/* ===== ESPAÇAMENTO AJUSTADO PARA O HEADER MAIOR ===== */
main {
    padding-top: 140px; 
}

section {
    padding: 60px 0;
}
section:nth-child(even) {
    background-color: var(--background-light-gray); /* Alterna cor de fundo das seções */
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    font-weight: 900;
}

/* Seção Hero com a FOTO OFICIAL DO GRUPO */
.hero {
    background: linear-gradient(rgba(46, 58, 89, 0.75), rgba(46, 58, 89, 0.75)), url('foto-fundo-grupo.jpg') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 120px 0;
}

.hero h1, .hero p {
    color: var(--text-light);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.6rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Estrutura de Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.evento-card {
    border-top: 5px solid var(--jumas-green);
}
.prog-card {
    border-top: 5px solid var(--jumas-yellow);
}

.card p.data {
    color: var(--jumas-red);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Seção de Contato */
#contato p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.contato-info a {
    color: var(--jumas-green);
    text-decoration: none;
    font-weight: 700;
}

.contato-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--jumas-blue);
    color: var(--text-light);
    text-align: center;
    padding: 40px 0;
}

/* Responsividade para Celulares */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    /* ===== ESPAÇAMENTO AJUSTADO PARA O HEADER MAIOR NO CELULAR ===== */
    main {
        padding-top: 195px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    section h2 {
        font-size: 2.2rem;
    }
}/* ========================================
   NOVO ESTILO JUMAS - v6.0
   - Logo aumentado em 30%
   ========================================
*/

/* Paleta de cores baseada no logo */
:root {
    --jumas-blue: #2e3a59;   /* Azul do texto JUMAS */
    --jumas-green: #00897b;  /* Verde da bandeira */
    --jumas-yellow: #fdd835; /* Amarelo do cálice */
    --jumas-red: #e53935;     /* Vermelho da chama */
    
    --background-white: #ffffff; /* Fundo branco para um visual limpo */
    --background-light-gray: #f5f7fa; /* Cinza claro para seções */
    --text-dark: #333333;       /* Cor de texto principal */
    --text-light: #ffffff;      /* Cor de texto para fundos escuros */
}

/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    background-color: var(--background-white);
    color: var(--text-dark);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--jumas-blue);
}

/* Header e Navegação */
header {
    background-color: var(--background-white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO AUMENTADO EM 30% ===== */
.logo-img {
    max-height: 105px; /* Aumentado de 80px para 105px */
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 30px;
}

header nav a {
    color: var(--jumas-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

header nav a:hover {
    color: var(--jumas-green);
    border-bottom-color: var(--jumas-green);
}

/* ===== ESPAÇAMENTO AJUSTADO PARA O HEADER MAIOR ===== */
main {
    padding-top: 140px; 
}

section {
    padding: 60px 0;
}
section:nth-child(even) {
    background-color: var(--background-light-gray); /* Alterna cor de fundo das seções */
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    font-weight: 900;
}

/* Seção Hero com a FOTO OFICIAL DO GRUPO */
.hero {
    background: linear-gradient(rgba(46, 58, 89, 0.75), rgba(46, 58, 89, 0.75)), url('foto-fundo-grupo.jpg.jpg') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 120px 0;
}

.hero h1, .hero p {
    color: var(--text-light);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.6rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Estrutura de Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.evento-card {
    border-top: 5px solid var(--jumas-green);
}
.prog-card {
    border-top: 5px solid var(--jumas-yellow);
}

.card p.data {
    color: var(--jumas-red);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Seção de Contato */
#contato p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.contato-info a {
    color: var(--jumas-green);
    text-decoration: none;
    font-weight: 700;
}

.contato-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--jumas-blue);
    color: var(--text-light);
    text-align: center;
    padding: 40px 0;
}

/* Responsividade para Celulares */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    /* ===== ESPAÇAMENTO AJUSTADO PARA O HEADER MAIOR NO CELULAR ===== */
    main {
        padding-top: 195px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    section h2 {
        font-size: 2.2rem;
    }
}