/* Estilos Gerais */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Cabeçalho */
.header {
    background-color: #0073e6;
    color: white;
    padding: 20px 0;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
.logo h1 {
    margin: 0;
}
.logo img {
    max-height: 75px; /* Ajuste conforme necessário */
    width: auto; /* Mantém a proporção da imagem */
}
nav .btn-home {
    background-color: white;
    color: #0073e6;
    padding: 8px 15px;
    font-size: 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
nav .btn-home:hover {
    background-color: #e6f0ff;
}


/* Introdução */
.intro {
    text-align: center;
    padding: 50px 20px;
    background-color: #0073e6;
    color: white;
}
.intro h2 {
    font-size: 2.5rem;
}
.intro p {
    font-size: 1.2rem;
}


/* Categorias */
.content-categories {
    padding: 50px 20px;
    text-align: center;
    font-size: 23px;
}
.content-categories h3 {
font-size: 35px;
}
.channels h3 {
    font-size: 35px;
}
.category-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 22px;
}
.category-card {
    width: 30%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.category-card img {
    width: 90%;
    border-radius: 10px;
}
.category-card h4 {
    color: #0073e6;
}


/* Canais */
.channels {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
}
.channel-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 20px;
}
.channel-card {
    width: 28%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.channel-card img {
    width: 80%;
    border-radius: 10px;
}
.channel-card h4 {
    color: #0073e6;
}


/* Planos de Assinatura */
.subscribe {
    padding: 50px 20px;
    text-align: center;
    background-color: #0073e6;
    color: white;
}
.subscription-plans {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.plan-card {
    width: 30%;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.plan-header h4 {
    font-size: 2rem;
    color: #0073e6;
}
.plan-header .plan-type {
    color: #ff6600;
    font-size: 1.2rem;
    margin-top: 5px;
    font-weight: bold;
}
.plan-description {
    font-size: 1rem;
    color: #333;
    margin: 20px 0;
}
.plan-price .price {
    font-size: 2rem;
    font-weight: bold;
    color: #0073e6;
}
.subscribe h3{
    font-size: 28px;

}
.btn-subscribe {
    background-color: #0073e6;
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}
.btn-subscribe:hover {
    background-color: #005bb5;
}


/* Rodapé */
.footer {
    text-align: center;
    background-color: #0073e6;
    color: white;
    padding: 20px 0;
}



@media screen and (max-width: 768px) {
    .logo img {
        max-height: 65px; /* Ajuste conforme necessário */
        width: auto; /* Mantém a proporção da imagem */
        margin-left: -20px;
    }


    /* Categorias */
.content-categories {
    font-size: 18px;
}
.content-categories h3 {
font-size: 28px;
}
.channels h3 {
    font-size: 30px;
}
.category-card {
    width: 40%;
    padding: 8px;
}
.category-card img {
    width: 100%;

}


/* Canais */
.channel-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 25px;
}
.channel-card {
    width: 100%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.channel-card img {
    width: 90%;
    border-radius: 10px;
}
.channel-card h4 {
    color: #0073e6;
}


/* Planos de Assinatura */

.plan-card {
    width: 100%;
}
.plan-header .plan-type {
    font-size: 1.4rem;

}
.plan-description {
    font-size: 1.2rem;

}
.btn-subscribe {

    font-size: 1.3rem;
    margin-top: 40px;
}


/* Rodapé */
.footer {
font-size: 14px;
}



}


