body {
    margin: 0;
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
}

/* ====== HERO SECTION ====== */
.hero {
    position: relative;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.logo-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
}

.hero h2 {
    font-size: 1.25rem;
    font-weight: 500;
}

.hero .slogan {
    font-size: 45px;
    margin-top: 40px;
}

/* ====== SEÇÕES PRINCIPAIS ====== */
.quem-faz {
    background-color: #f1efe8;
}

.oqueeh,
.episodios,
.galeria,
.quem-faz {
    padding: 60px 0;
    position: relative;
}

.oqueeh {
    background-color: #353d55;
    color: #fff;
}

.oqueeh .titleSection {
    font-size: 45px;
}

.oqueeh .titleAction {
    color: #cccf5e;
    font-weight: 700;
}

.oqueeh .bodySection {
    font-size: 33px;
}

.episodios {
    background-color: #f1efe8;
    padding-bottom: 200px;
}

.titleEpisodios {
    color: #517F6C;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    padding-top: 75px;
    padding-bottom: 50px;
}

/* ====== EFEITOS DECORATIVOS ====== */
.efeito-container {
    /*position: absolute;*/
    z-index: 1;
}

.efeito1 {
    /*
    position: relative;
    width: 200px;
    top: -140px;
    left: -615px;
    */

    position: absolute;
    top: 215px;
    left: 5px;
    width: 200px;
    z-index: 2;
}

.efeito2 {
    /*
    position: absolute;
    top: 10%;
    left: 0;
    */
    position: absolute;
    /*top: 60%;*/
    top: 440px;
    left: 0;
    z-index: 2;
}

.efeito3 {
    position: absolute;
    /*top: -30%;*/
    top: -220px;
    right: 0;
}

.efeito4 {
    position: absolute;
    /*top: -8%;*/
    top: -97px;
    right: 0;
    filter: brightness(0) saturate(100%) invert(94%) sepia(8%) saturate(217%) hue-rotate(18deg) brightness(95%) contrast(89%);
}

.efeito5 {
    position: absolute;
    bottom: 25%;
    left: 0;
}

.efeito6 {
    position: absolute;
    bottom: -155px;
    left: 0;
    height: 300px;
    z-index: 2;
}

.efeito7 {
    position: absolute;
    bottom: -35%;
    top: 930px;
    right: 0;
    z-index: 2;
}

.efeito8 {
    position: absolute;
    bottom: -300px;
    left: 0;
    z-index: 2;
}

/* ====== SVG BOXES ====== */
.svgbox {
    position: absolute;
}

.svgbox--1 {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.svgbox--2 {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ====== BOTÕES ====== */
.botao {
    /* Borda e formato */
    border: 3px solid #CCCF5E;
    border-radius: 20px;
    background-color: transparent;

    /* Espaçamento e dimensões */
    padding: 25px 60px;
    font-size: 30px;
    font-weight: 100;

    /* Aparência e comportamento */
    color: #C9CE67;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.botao:hover {
    background: rgba(204, 207, 94, 0.16);
}

/* ====== CARDS E BOTÕES DE EPISÓDIOS ====== */
.card-title {
    font-size: 24px;
    color: #555555;
    margin: 0 0 8px 0;
    font-weight: 400;
}

.card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.text-content {
    display: flex;
    flex-direction: column;
}

.action-content {
    text-align: center;
    margin: 20px;
}

.card-text {
    font-size: 20px;
    color: #666666;
    margin-bottom: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btEpOld {
    border: 3px solid #CCCF5E;
    border-radius: 20px;
    background-color: transparent;
    padding: 10px 25px;
    font-size: 20px;
    font-weight: 100;
    color: #C9CE67;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.btEp {
    background-color: #b9c46b;
    color: #fff;
    /*background-color: rgba(255, 255, 255, 0.8); !* Adicionei um fundo branco translúcido *!*/
    /*color: #C9CE67; !* Ajustei para a cor verde do seu tema *!*/
    border: 2px solid #CCCF5E; /* Reduzi a borda de 3px para 2px */
    border-radius: 20px;
    padding: 8px 16px; /* Reduzi o padding de 10px 25px para 8px 16px */
    font-size: 16px; /* Reduzi de 20px para 16px */
    font-weight: 500; /* Mudei de 100 para 500 para melhor legibilidade */
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
#mainCarousel .btEp {
    white-space: nowrap; /* Impede quebra de linha */
}

.btEp:hover {
    /*background-color: #b9c46b;*/
    /*color: #fff;*/
    background-color: rgba(255, 255, 255, 0.8); /* Adicionei um fundo branco translúcido */
    color: #C9CE67; /* Ajustei para a cor verde do seu tema */
}

.btEp::before {
    content: "▶ ";
    font-size: 16px;
    margin-right: 4px;
    color: inherit;
}

/* ====== CAROUSEL E THUMBNAILS ====== */
.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-carousel {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.main-carousel .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.thumbnail-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    overflow-x: visible; /* Removendo overflow que limita os cards */
    padding-bottom: 20px;
}

/* Estilo para os cards de miniaturas */
.thumbnail-carousel .card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.thumbnail-carousel .card:hover {
    transform: translateY(-10px);
}

.thumbnail-carousel .card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.thumbnail-carousel .card a {
    text-decoration: none;
}

/* Ajuste da posição da etiqueta do episódio */
.thumbnail-carousel .card .thumbnail-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 108, 54, 0.85); /* Verde com transparência */
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    font-size: 0.9rem;
    z-index: 10;
}

/* Estilo para o corpo do card */
.thumbnail-carousel .card .card-body {
    padding: 16px;
    background-color: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-grow: 1;
}

.thumbnail-carousel .card .text-content {
    width: 100%;
    min-height: 140px;
}

.thumbnail-carousel .card h1 {
    font-size: 1rem;
    /*font-weight: 600;*/
    margin: 0;
    line-height: 1.4;
    color: #333;
    text-align: left;
}

/* Ajustes para os itens de thumbnail existentes */
.thumbnail-carousel .thumbnail-item:not(.card .thumbnail-item) {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 150px;
    flex: 0 0 calc(20% - 12px);
    cursor: pointer;
}

.thumbnail-item {
    flex: 0 0 calc(20% - 12px);
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.thumbnail-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: opacity 0.3s;
}

.thumbnail-item:hover img {
    opacity: 0.8;
}

.thumbnail-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px;
    font-size: 12px;
    text-align: center;
}

/* ====== GALERIA ====== */
.galeria {
    background-color: #527f6c;
    position: relative;
    padding-bottom: 80px;
}

.titleGaleria {
    color: #cdcf5f;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    padding-top: 150px;
    padding-bottom: 50px;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.gallery {
    column-count: 3;
    column-gap: 10px;
    padding-bottom: 40px;
}

.gallery img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.02);
}

.gallery-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: linear-gradient(to bottom, transparent, rgba(82, 127, 108, 0.7) 100%);
    pointer-events: none;
}

/* ====== DEPOIMENTOS ====== */
.depoimento {
    margin-top: 150px;
    position: relative;
}

.quote-card {
    max-width: 800px;
    background-color: #f9f9f9;
    border-radius: 30px;
    padding: 30px 40px;
    margin: auto;
    position: relative;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 70px;
}

.quote-mark {
    position: absolute;
    top: -25px;
    left: -60px;
}

.quote-photo {
    position: relative;
    /*top: -100px;*/
    /*left: 210px;*/
    top: -168px;
    left: 230px;
    margin-bottom: -50px; /* Ajuste para compensar o deslocamento negativo */
    z-index: 5;
    width: 120px;
}

.quote-text {
    color: #39424e;
    font-size: 18px;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    /*border-top: 1px solid #e5e5e5;*/
    padding-top: 15px;
    padding-left: 80px;
}

.author-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.avatar2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.avatar2:hover {
    transform: scale(1.05);
}

.author-name {
    font-weight: 700;
    font-size: 18px;
    color: #39424e;
}

.episode {
    font-size: 14px;
    color: #657280;
}

.btn-view {
    padding: 8px 16px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid #c9d345;
    color: #c9d345;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-view:hover {
    background-color: #c9d345;
    color: #ffffff;
}

/* ====== QUEM FAZ ACONTECER ====== */
.quemFaz {
    padding-top: 80px;
    margin-bottom: 60px;
}

.quemFaz h2, .depoimento h2 {
    font-size: 36px;
    color: #39424e;
}

.quemFaz h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.quemFaz p {
    color: #657280;
}

/* ====== NEWSLETTER E FOOTER ====== */
.newsletter {
    position: relative;
    /*height: 150vh;*/
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 60px;
}

.newsletter-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    padding-top: 5rem;
    flex-grow: 1;
}

.titleNewsletter {
    font-family: Franie, sans-serif;
    color: #fff;
    font-size: 50px;
    letter-spacing: 2px;
    padding-bottom: 50px;
}

.newsletter .btn {
    font-size: 26px;
    padding: 15px 30px;
    background-color: #CCCF5E;
    border-color: #CCCF5E;
    color: #333;
    transition: all 0.3s ease;
}

.newsletter .btn:hover {
    background-color: #b9c46b;
    border-color: #b9c46b;
    color: #fff;
}

.newsletter .form-control {
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
}

.newsletter .form-control:focus {
    box-shadow: 0 0 0 3px rgba(204, 207, 94, 0.3);
    background-color: #fff;
}

.newsletter .form-label {
    font-size: 18px;
    margin-bottom: 8px;
}

.newsletter i {
    color: #CCCF5E;
    font-size: 36px;
    transition: color 0.3s ease;
}

.newsletter i:hover {
    color: #fff;
}

.newsletter .links a {
    color: #CCCF5E;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.newsletter .links a:hover {
    color: #fff;
    text-decoration: underline;
}

.newstitle {
    font-size: 20px;
    padding-bottom: 10px;
    display: block;
}

.footer-wrapper {
    position: relative;
    z-index: 1;
    /*margin-top: auto;*/
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.4);
}

.footer {
    padding: 3rem 0;
}

.footer hr {
    opacity: 0.2;
    margin: 0;
}

.footer-wrapper hr {
    opacity: 0.2;
    margin: 0 !important;
}

.copyright {
    padding: .5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright a {
    margin-right: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    text-decoration: underline;
    color: #CCCF5E;
}

.copyright a, .copyright {
    color: #bdbdbd;
}

.newstitle {
    text-align: center;
}

/* ====== Removendo alguns efeitos no mobile ====== */
.nomobile {
    display: none;
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 1400px) {
    .quote-photo {
        left: 12%;
    }
}

@media (max-width: 1200px) {
    .quote-photo {
        left: 5%;
    }

    .thumbnail-carousel .card .text-content {
        min-height: 180px;
    }
}

@media (max-width: 992px) {
    .titleNewsletter,
    .titleEpisodios,
    .titleGaleria,
    .oqueeh .titleSection {
        font-size: 36px;
    }

    .oqueeh .bodySection {
        font-size: 24px;
    }

    .botao {
        padding: 15px 40px;
        font-size: 22px;
    }

    .gallery {
        column-count: 2;
    }

    .quote-photo {
        /*left: 150px;*/
        left: -3%;
    }

    .efeito6 {
        height: 100px;
    }

    .newsletter {
        height: 200vh;
    }

    .newsletter-content {
        padding-top: 1rem;
    }

    .thumbnail-carousel {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .avatar2 {
        width: 150px;
        height: 150px;
    }

    .rsoc {
        flex-direction: column;
    }

    .footer img {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .hero .slogan {
        font-size: 32px;
    }

    .logo-bar {
        flex-direction: column;
        gap: 10px;
    }

    .gallery {
        column-count: 1;
    }

    .quote-photo {
        left: 5%;
        transform: translateX(-50%);
    }

    .card-body {
        flex-direction: column;
    }

    .copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .copyright a {
        margin: 0 8px;
    }

    .botao {
        padding: 12px 30px;
        font-size: 18px;
    }

    .quote-mark {
        left: -20px;
    }

    .efeito6 {
        height: 100px;
    }

    .thumbnail-carousel {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .thumbnail-carousel .card .text-content {
        min-height: 230px;
    }

    .newstitle {
        padding: 20px 0;
    }

    .links {
        text-align: center;
    }

    .rsoc {
        flex-direction: row;
    }
}

@media (max-width: 576px) {

    .logo-bar {
        padding: 0;
        gap: 3px
    }
    .logo-bar nav {
        padding: 3px 0;
    }
    .logoL {
        width: 80%;
    }
    .hero .slogan {
        font-size: 24px;
    }
    .tomob {
        width: 30%;
    }
    .depoimento {
        margin-top: 0;
    }
    .titleEpisodios, .titleGaleria {
        padding-top: 0 !important;
    }
    .episodios {
        padding-bottom: 60px;
    }
    .newstitle {
        padding: 10px 0;
    }
    .newsletter-content {
        padding-top: 0;
    }
    .newsletter {
        height: 250vh !important;
    }
    .footer-wrapper {
        text-align: center;
    }

    .titleNewsletter,
    .titleEpisodios,
    .titleGaleria,
    .oqueeh .titleSection {
        font-size: 28px;
    }

    .botao {
        padding: 10px 20px;
        font-size: 16px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .newsletter .btn {
        font-size: 18px;
        padding: 10px 20px;
    }

    .avatar2 {
        width: 150px;
        height: 150px;
    }

    .thumbnail-carousel {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .thumbnail-item {
        flex: 0 0 calc(33.3% - 6px);
    }

    .efeito6 {
        height: 100px;
    }
}




/* ***** */

/* Estilização personalizada para os botões de navegação do carrossel */
.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(204, 207, 94, 0.7); /* Cor compatível com a sua paleta */
    border-radius: 50%;
    top: 40%;
    transform: translateY(-50%);
    opacity: 0.3;
}

.carousel-control-prev {
    left: 5%;
}

.carousel-control-next {
    right: 5%;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background-color: rgba(204, 207, 94, 1);
    opacity: 1;
}

/* Opcionalmente, customize os ícones de seta */
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}