/* Estilos para o Media Kit - I Congresso Internacional de Educação Cristã Clássica */

/* Variáveis de cores baseadas no logo */
:root {
    --gold: #e6c87d;
    --dark-blue: #0a3b4d;
    --medium-blue: #1a5c6f;
    --light-blue: #2a7d90;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --bronze: #cd7f32;
    --silver: #c0c0c0;
    --gold-medal: #ffd700;
}

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-blue);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.content {
    margin-top: 2rem;
}

.alt-bg {
    background-color: var(--light-gray);
}

.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Box uniforme para todos os itens */
.box-uniform {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.box-uniform:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Estilos da capa */
.cover {
    height: 100vh;
    min-height: 600px;
    background-image: url('../fundo.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cover .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 59, 77, 0.85);
    z-index: 1;
}

.cover .container {
    position: relative;
    z-index: 2;
}

.logo {
    max-width: 300px;
    margin-bottom: 2rem;
}

.cover h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.cover h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.event-info {
    max-width: 600px;
    margin: 0 auto;
}

.event-info p {
    margin-bottom: 0.5rem;
}

/* Estilos para o sobre o evento */
.info-box {
    display: flex;
    align-items: flex-start;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-right: 2rem;
    min-width: 60px;
    text-align: center;
}

.info-content {
    flex: 1;
}

/* Estilos para o público-alvo */
.audience-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.audience-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 2rem;
    color: var(--gold);
    margin-right: 1rem;
    min-width: 40px;
    text-align: center;
}

/* Estilos para o perfil dos participantes */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box.highlight {
    background-color: var(--dark-blue);
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.highlight .stat-number {
    color: var(--gold);
}

.stat-label {
    font-size: 1.2rem;
}

.profile-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.profile-item {
    margin-bottom: 2rem;
    position: relative;
}

.profile-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-align: center;
}

.profile-item h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.highlight-text {
    font-size: 1.5rem;
    color: var(--light-blue);
    font-weight: 600;
    text-align: center;
}

.chart-container {
    margin-top: 1rem;
}

.chart-bar {
    height: 40px;
    line-height: 40px;
    color: var(--white);
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    text-align: right;
}

.female {
    background-color: var(--light-blue);
}

.male {
    background-color: var(--dark-blue);
}

.map-container {
    margin-top: 1.5rem;
    border: 1px solid #ddd;
    padding: 1rem;
    background-color: var(--white);
}

.age-chart-container {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    padding: 1rem;
}

/* Estilos para dados de impacto */
.impact-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.impact-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-item:hover {
    transform: translateY(-5px);
}

.impact-item.highlight-impact {
    background-color: var(--dark-blue);
    color: var(--white);
}

.impact-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.highlight-impact .impact-number {
    color: var(--gold);
}

.impact-label {
    font-size: 1.1rem;
}

/* Estilos para nota de dados */
.data-note {
    background-color: rgba(10, 59, 77, 0.1);
    border-left: 4px solid var(--gold);
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.note-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 1rem;
}

.data-note p {
    margin: 0;
    font-style: italic;
    font-size: 0.9rem;
}

/* Estilos para programação */
.schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.day {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.day-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-align: center;
}

.day h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.schedule-item {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.schedule-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.time {
    font-weight: 700;
    color: var(--light-blue);
    min-width: 60px;
}

.activity {
    flex: 1;
}

.highlight-schedule {
    background-color: rgba(230, 200, 125, 0.1);
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid var(--gold);
}

/* Estilos para planos de patrocínio */
.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan:hover {
    transform: translateY(-10px);
}

.plan-header {
    padding: 2rem;
    text-align: center;
}

.bronze .plan-header {
    background-color: rgba(205, 127, 50, 0.2);
}

.silver .plan-header {
    background-color: rgba(192, 192, 192, 0.2);
}

.gold .plan-header {
    background-color: rgba(255, 215, 0, 0.2);
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.bronze-icon {
    color: var(--bronze);
}

.silver-icon {
    color: var(--silver);
}

.gold-icon {
    color: var(--gold-medal);
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.plan-benefits {
    padding: 2rem;
    flex: 1;
}

.plan-benefits p {
    margin-bottom: 1rem;
}

.plan-benefits ul {
    list-style-type: none;
}

.plan-benefits li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.plan-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-blue);
}

/* Estilos para por que apoiar */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
}

.reason-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.reason-item h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* Estilos para formas de contribuição */
.contribution-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contribution-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contribution-item:hover {
    transform: translateY(-5px);
}

.contribution-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.contribution-item h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* Estilos para contato */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-right: 1.5rem;
}

/* Estilos para o footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

/* Media queries para responsividade */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .cover h1 {
        font-size: 2.5rem;
    }
    
    .cover h2 {
        font-size: 1.5rem;
    }
    
    .stat-number, .impact-number {
        font-size: 2rem;
    }
    
    .schedule {
        grid-template-columns: 1fr;
    }
    
    .day {
        margin-bottom: 2rem;
    }
    
    .plans-container {
        grid-template-columns: 1fr;
    }
    
    .plan {
        margin-bottom: 2rem;
    }
    
    .info-box {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .data-note {
        flex-direction: column;
    }
    
    .note-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .cover {
        min-height: 500px;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .cover h1 {
        font-size: 2rem;
    }
    
    .cover h2 {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .audience-item, .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .icon, .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
