/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Estilos do header */

header {
    background-color: #d3d3d3; /* cinza claro */
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

header .logo {
    height: 60px; /* Altura ajustada */
    width: 100%; /* Largura ajustada */
    max-width: 200px; /* Largura máxima */
    display: flex;
    align-items: center;
}

header .logo img {
    height: 100%; /* Preenche toda a altura */
    width: 100%; /* Preenche toda a largura */
    object-fit: contain; /* Mantém proporções */
}

header .menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header .menu li {
    margin: 0 10px;
}

header .menu li a {
    color: #333;
    text-decoration: none;
}

header .menu li a:hover {
    text-decoration: underline;
}

/* Estilos do conteúdo principal */

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.card {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr; /* Um card por linha */
    gap: 20px;
}

.video-card {
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.video-card h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.video-card iframe {
    width: 100%;
    height: 550px !important; /* Altura ajustada */
    border: none;
    border-radius: 10px;
}

.video-card .description {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
    white-space: pre-line; /* Preserva quebras de linha */
}

.subscribe-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.subscribe-button:hover {
    background-color: #cc0000;
}

.subscribe-button.pulse {
    animation: pulse 1s infinite;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Estilos do footer */

footer {
    background-color: #d3d3d3; /* cinza claro */
    color: black;
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    width: calc(33.33% - 10px);
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
}

.footer-links a i {
    margin-right: 10px;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Estilos específicos para ícones */

.fa-youtube {
    color: #ff0000;
}

.fa-globe {
    color: #00aaff;
}

.fa-instagram {
    color: #e4405f;
}

.fa-facebook {
    color: #1877f2;
}

.fa-tiktok {
    color: #000000;
}

.fa-twitter {
    color: #1da1f2;
}

.fa-link {
    color: #333;
}

/* Estilos do header */

header {
    background-color: #d3d3d3; /* cinza claro */
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
}

header .logo {
    height: 60px; /* Altura ajustada */
    width: 100%; /* Largura ajustada */
    max-width: 200px; /* Largura máxima */
    display: flex;
    align-items: center;
}

header .logo img {
    height: 100%; /* Preenche toda a altura */
    width: 100%; /* Preenche toda a largura */
    object-fit: contain; /* Mantém proporções */
}

header .menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header .menu li {
    margin: 0 10px;
}

header .menu li a {
    color: #333;
    text-decoration: none;
}

header .menu li a:hover {
    text-decoration: underline;
}

/* Estilos para o menu responsivo */
header .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    header .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #d3d3d3; /* cinza claro */
        z-index: 1000;
    }

    header .menu.show {
        display: flex;
    }

    header .menu-toggle {
        display: block;
    }
}
