:root {
    --vermelho-primario: #8B0000;
    --vermelho-escuro: #5C0000;
    --vermelho-medio: #C41E3A;
    --vermelho-claro: #DC143C;
    --vermelho-suave: #FFE4E1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.banner-home{
    height: 550px;
    background-image: url('../img/banner-main-primeiro.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 66px;
}
.div-btn-inscrever{
    height: 550px;
    width: 100%;
    position: relative;
}
.div-btn-inscrever .btn-padrao{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 1px 2px 5px #057a85;
}
.btn-padrao{
    text-transform: uppercase;
    background: var(--verde-agua-color);
    color: var(--branco-color);
    font-size: 24px;
    padding: 8px 22px;
    border-radius: 4px;
}
.btn-padrao:hover{
    text-decoration: none;
    color: var(--branco-color);
}

.section-title {
    color: var(--vermelho-primario);
    font-weight: bold;
    margin: 40px 0 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--vermelho-medio);
}

.container {
    margin-top: 50px;
}
.video-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(139, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(139, 0, 0, 0.2);
}

.video-card .ratio {
    background: #f5f5f5;
}

.video-card-body {
    padding: 20px;
}

.video-card-body h5 {
    color: var(--vermelho-primario);
    font-weight: bold;
    margin-bottom: 10px;
}

.relato-card {
    background: var(--vermelho-suave);
    border-left: 4px solid var(--vermelho-medio);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.relato-card:hover {
    background: white;
    box-shadow: 0 4px 8px rgba(139, 0, 0, 0.15);
    border-left-color: var(--vermelho-claro);
}

.relato-card h6 {
    color: var(--vermelho-escuro);
    font-weight: bold;
    margin-bottom: 10px;
}

.relato-card .autor {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 15px;
}

.documento-link {
    display: block;
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}

.documento-link:hover {
    border-color: var(--vermelho-medio);
    background: var(--vermelho-suave);
    color: var(--vermelho-escuro);
    transform: translateX(10px);
}

.documento-link i {
    color: var(--vermelho-medio);
    margin-right: 15px;
    font-size: 1.5rem;
}

.stats-box {
    background: linear-gradient(135deg, var(--vermelho-escuro) 0%, var(--vermelho-medio) 50%, var(--vermelho-claro) 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 6px 12px rgba(139, 0, 0, 0.3);
}

.stats-box h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stats-box p {
    font-size: 1.1rem;
    margin: 0;
}

.galeria-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.galeria-img:hover {
    transform: scale(1.05);
    border-color: var(--vermelho-medio);
}

.header-demo {
    background: var(--vermelho-primario);
    color: white;
    padding: 15px 0;
    text-align: center;
}

.footer-demo {
    background: #333;
    color: white;
    padding: 30px 0;
    margin-top: 60px;
    text-align: center;
}