@font-face {
    font-family: 'Lagarto Letreiros';
    src: url('../../fontes/Lagarto-Letreiros.woff2') format('woff2'),
         url('../../fontes/Lagarto-Letreiros.woff') format('woff');
}

/* Reset de margens e paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo geral do corpo */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
}



/* Div de apresentação */
.presentation {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 20px 50px 20px;
    background-image: url('../../imagens/fundo.png');
    background-color: #ffd731;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    height: 80vh; /* Ocupa toda a altura da tela */
}

.presentation > .top {
    display: flex;
    justify-content: center; /* Alinha as divs pelo centro */
    align-items: center;
    gap: 20px; /* Espaço entre as colunas */
    max-width: 80%;
    width: 100%;
    padding: 20px;
    max-height: 50%;
}

.left {
    flex: 1;
    max-width: 600px;
    text-align: left;
    
}

.left h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-family: 'Lagarto Letreiros';
    text-transform: uppercase;
    color: #E14A42;
    font-weight: 400;
}

.left p {
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.8;
    color: #E14A42;
    margin-bottom: 16px;
}

.right {
    flex: 1;
    max-width: 50%;
    text-align: center;
    
}

.right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 906px;
}

.buy-presentation {
    display: inline-block;
    margin: 25px 5px;
    padding: 10px 20px;
    text-decoration: none;
    color: #ffd731;
    background-color: #e14a42;
	border: 2px solid #e14a42; /* Adiciona borda de 2px na cor #e14a42 */
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
	font-family: "Merriweather Sans", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1em;
    
}

.buy-presentation:hover { 
    display: inline-block;
    margin: 25px 5px;
    padding: 10px 20px;
    text-decoration: none;
    color: #e14a42;  /* Cor do texto */
    background-color: #ffd731;
    border: 2px solid #e14a42; /* Adiciona borda de 2px na cor #e14a42 */
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Adiciona transição para a cor da borda */
    font-family: "Merriweather Sans", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1em;
}



/* Responsividade apresentação*/

@media (max-width: 768px) {
    .presentation {
        flex-direction: column; /* Coloca os elementos em coluna */
        padding: 100px 10px 30px 10px; /* Reduz o padding */
        height: auto; /* Permite que a altura se ajuste ao conteúdo */
    }

    .presentation > .top {
        flex-direction: column; /* Organiza o conteúdo em uma única coluna */
        gap: 10px; /* Reduz o espaço entre os elementos */
        max-width: 100%; /* Garante que a largura ocupe o máximo possível */
        padding: 10px;
    }

    .left {
        max-width: 100%; /* Garante que ocupe toda a largura disponível */
        text-align: center; /* Centraliza o texto em telas menores */
    }

    .left h1 {
        font-size: 3em; /* Reduz ainda mais o tamanho da fonte do título */
		line-height: 0.70em;
		
    }

    .left p {
        font-size: 1em; /* Reduz o tamanho da fonte do texto */
    }

    .right {
        max-width: 100%; /* Ajusta a largura para caber na tela */
    }

    .right img {
        max-width: 100%; /* Garante que a imagem não ultrapasse a largura do contêiner */
    }

    .buy-presentation {
        font-size: 0.9em; /* Reduz o tamanho da fonte do botão */
        padding: 8px 16px; /* Ajusta o espaçamento interno */
    }
	
	.buy-presentation:hover {
        font-size: 0.9em; /* Reduz o tamanho da fonte do botão */
        padding: 8px 16px; /* Ajusta o espaçamento interno */
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .left h1 {
        font-size: 3em; /* Reduz ainda mais o tamanho da fonte do título */
		line-height: 0.70em;
    }

    .left p {
        font-size: 1em; /* Ajusta o texto para telas pequenas */
    }

    .buy-presentation {
        font-size: 0.8em; /* Diminui o botão em telas muito pequenas */
        padding: 6px 12px;
    }
	 .buy-presentation:hover {
        font-size: 0.8em; /* Diminui o botão em telas muito pequenas */
        padding: 6px 12px;
    }
}


/* Bloco: Sinopse e Destaques */

.book-details {
    padding: 40px;
    text-align: center;
    max-width: 700px; /* 80% da largura da tela */
    
    margin: 0 auto; /* Centraliza horizontalmente */
    box-sizing: border-box; /* Garante que o padding não quebre a largura */
}

.synopsis {
    margin: 0 auto;
  	max-width: 100%;
	margin-bottom: 20px;
	margin-top: 30px;
}


.synopsis p {
    margin-bottom: 16px;
    text-align: left;
    line-height: 1.8;
	font-family: "Merriweather Sans", serif;
	font-weight: 400;
    font-style: normal;
    font-size: 1em;
    color: #333;
	}

.synopsis h2 {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Lagarto Letreiros';
    text-transform: uppercase;
    color: #E14A42;
    font-weight: 400;
    font-size: 3.5em;     
}

.synopsis h3 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Lagarto Letreiros';
    text-transform: uppercase;
    color: #E14A42;
    font-weight: 400;
    font-size: 2.5em;     
}

.synopsis h4 {
    margin-bottom: 16px;
    text-align: left;
    line-height: 1.3;
	font-family: "Merriweather Sans", serif;
	font-weight: 700;
    font-style: normal;
    font-size: 1.5em;
    color: #333;
	}
	
	.synopsis h5 {
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.3;
	font-family: "Merriweather Sans", serif;
	font-weight: 400;
    font-style: normal;
    font-size: 0.8em;
    color: #333;
	}
	
	.synopsis li {
    margin-bottom: 16px;
    line-height: 1.8;
	font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    color: #333;
    position: relative;
	text-align: left;
    padding-left: 0px; /* Espaço para o bullet */
}



.why-buy li strong {
    color: #333; /* Cor para os subtítulos */
}

.why-buy {
    padding: 20px;
    background-color: #fff;
    margin-top: 30px;
    border-radius: 15px;
	margin: 0 auto;
    text-align: left;
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    color: #333;
	max-width: 90%;
	
}

.why-buy h3 {
     font-family: 'Lagarto Letreiros';
    text-transform: uppercase;
    color: #E14A42;
    font-weight: 400;
    font-size: 2.6em;
	padding-bottom: 15px;
    
}

.why-buy ul {
    padding-left: 20px;
    margin: 0;
    color: #333;
}

.why-buy li {
    margin-bottom: 16px;
    line-height: 1.8;
	font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    color: #333;
    position: relative;
    padding-left: 0px; /* Espaço para o bullet */
}



.why-buy li strong {
    color: #333; /* Cor para os subtítulos */
}


.bookdetails-link {
    display: inline-block;
    margin: 25px 5px;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    background-color: #e14a42;
	border: 2px solid #e14a42; /* Adiciona borda de 2px na cor #e14a42 */
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
	font-family: "Merriweather Sans", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1em;
    color: #f4f4f4;
}

.bookdetails-link:hover { 
    display: inline-block;
    margin: 25px 5px;
    padding: 10px 20px;
    text-decoration: none;
    color: #e14a42;  /* Cor do texto */
    background-color: #f4f4f4;
    border: 2px solid #e14a42; /* Adiciona borda de 2px na cor #e14a42 */
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Adiciona transição para a cor da borda */
    font-family: "Merriweather Sans", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1em;
}

.bookpreview-link {
    display: inline-block;
    margin: 25px 5px;
    padding: 10px 20px;
    text-decoration: none;
    color: #e14a42;
    background-color: #fff;
	border: 2px solid #e14a42; /* Adiciona borda de 2px na cor #e14a42 */
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
	font-family: "Merriweather Sans", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1em;
    
}

.bookpreview-link:hover { 
    display: inline-block;
    margin: 25px 5px;
    padding: 10px 20px;
    text-decoration: none;
    color: #e66963;  /* Cor do texto */
    background-color: #f4f4f4;
    border: 2px solid #e66963; /* Adiciona borda de 2px na cor #e14a42 */
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Adiciona transição para a cor da borda */
    font-family: "Merriweather Sans", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1em;
}


/* Responsividade para dispositivos móveis */
@media screen and (max-width: 768px) {
    .book-details {
        padding: 20px;
        max-width: 90%; /* Aumenta a largura no mobile */
    }
    
    .synopsis h2 {
        font-size: 3em; /* Reduz ainda mais o tamanho da fonte do título */
		line-height: 0.70em;
    }
    
    .why-buy h3 {
        font-size: 2.5em; /* Reduz ainda mais o tamanho da fonte do título */
		line-height: 0.70em;
    }
    
    .why-buy ul {
        padding-left: 15px; /* Diminui o padding das listas */
    }
    
    .bookdetails-link, .bookpreview-link {
        font-size: 0.9em; /* Reduz o tamanho da fonte dos botões */
        padding: 8px 16px; /* Diminui o padding nos botões */
    }
}

@media screen and (max-width: 480px) {
    .book-details {
        padding: 15px;
        max-width: 85%; /* Remove o limite de largura */
    }
    
    .synopsis p {
        font-size: 0.9em; /* Diminui o tamanho da fonte dos parágrafos */
    }
    
    .synopsis h2 {
        font-size: 3em; /* Reduz ainda mais o tamanho da fonte do título */
		line-height: 0.70em;
    }
    
	.why-buy {
		max-width: 100%; /* Aumenta a largura no mobile */
		
	}
	
    .why-buy h3 {
        font-size: 2.5em; /* Reduz ainda mais o tamanho da fonte do título */
		line-height: 0.70em;
    }
    
    .why-buy ul {
        padding-left: 10px; /* Ajusta o padding das listas */
    }
    
    .bookdetails-link, .bookpreview-link {
        font-size: 0.8em; /* Ajusta o tamanho da fonte nos botões */
        padding: 6px 12px; /* Ajusta o padding nos botões */
    }
}

/* Bloco: Carrossel de Imagens */
.gallery {
    text-align: center;
    margin: 40px 0;
    background-color: #e63323;
    position: relative;
    padding: 20px 0;
}

.carousel {
    position: relative;
    width: 60%;
    margin: 0 auto;
    overflow: hidden;
	max-width: 1080px;

}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
	max-width: 1080px;
}

.carousel-images img {
    flex-shrink: 0;
    width: 100%;
    height: auto;
	max-width: 1080px;
}

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
}

button.prev img, button.next img {
    width: 30px;
    height: auto;
}

button.prev {
    left: 0px;
}

button.next {
    right: 0px;
}

/* Responsividade */
@media (max-width: 768px) {
    .carousel {
        width: 90%;
    }

    button.prev, button.next {
        padding: 15px;
        top: 95%;
    }

    button.prev img, button.next img {
        width: 25px;
    }
}










/* Bloco: Depoimentos */
.testimonials-section {
    padding: 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 45px auto; /* Centraliza e adiciona margem inferior */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel {
    margin: 10px auto 20px auto;
    max-width: 100%;
}

.testimonial-items {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    display: none;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 2px solid #4081b3;
    border-radius: 10px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.testimonials-section h2 {
    font-family: 'Lagarto Letreiros';
    text-transform: uppercase;
    color: #E14A42;
    font-weight: 400;
    font-size: 3.5em;
    margin-bottom: 20px;
}



.testimonial p {
    margin-bottom: 15px;
	text-align: center;
    line-height: 1.7;
	font-family: "Merriweather Sans", serif;
	font-weight: 400;
    font-style: normal;
    font-size: 1em;
    color: #333;
}

p.testimonial-author {
    font-family: "Merriweather Sans", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1em;
    margin-bottom: 15px;
	color: #E14A42;
	line-height: 3px;
}

p.testimonial-profession {
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-style: normal;
	font-size: 0.8em; /* Tamanho menor para a profissão */
    line-height: 3px;
    color: #E14A42; /* Cor mais suave para a profissão */
}

.testimonial-image {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

/* Botões de navegação do carrossel de depoimentos */
button.prev-testimonial, button.next-testimonial {
    position: absolute;
    top: 58%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    font-size: 2em;
}

button.prev-testimonial img, button.next-testimonial img {
    width: 30px;
    height: auto;
	
}

button.prev-testimonial {
    left: 145px;
}

button.next-testimonial {
    right: 145px;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .testimonials-section h2 {
         font-size: 3em; /* Reduz ainda mais o tamanho da fonte do título */
		line-height: 0.70em;
        margin-bottom: 15px;
    }

    .testimonial-carousel {
        width: 90%;
    }

    .testimonial {
        max-width: 90%;
        margin: 15px auto;
		font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-size: 1em;
    color: #E14A42;
    line-height: 1.7; /* Combinei o line-height */
    }

    .testimonial-image {
        width: 80px;
        height: 80px;
    }

    .testimonial-author {
        font-size: 1.1em;
    }

    .testimonial-profession {
        font-size: 0.9em;
    }

    button.prev-testimonial, button.next-testimonial {
        font-size: 1.5em;
        padding: 8px;
		top: 87%;
    }

    button.prev-testimonial img, button.next-testimonial img {
        width: 25px;
		top: 100%;
    }
}






/* Seção sobre os autores */
.authors-section {
    padding: 40px 20px 25px 20px; /* Ajustando padding de forma mais compacta */
    text-align: center;
    background-color: #ffd731; /* Cor de fundo suave */
    color: #333;
    margin: 0 auto; /* Centraliza horizontalmente */
    box-sizing: border-box; /* Garante que o padding não quebre a largura */
}

/* Título da seção */
.authors-section h2 {
    font-family: 'Lagarto Letreiros';
    text-transform: uppercase;
    color: #E14A42;
    font-weight: 400;
    font-size: 3.5em;
    margin-bottom: 40px;
}

/* Container dos autores */
.authors-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 50%;
    margin: 0 auto;
}

/* Imagem dos autores */
.authors-image {
    width: 80%;
    max-width: 800px;
    height: auto;
    margin-bottom: 20px;
}

/* Biografia dos autores */
.authors-bio {
    max-width: 800px;
    margin: 0 auto;
    text-align: left; /* Alinha o texto à esquerda */
}

/* Nome do autor */
.author-name {
    font-size: 1.6em;
    font-weight: bold;
    color: #E14A42;
    margin-bottom: 10px;
}

/* Biografia do autor */
.author-bio {
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-size: 1em;
    color: #E14A42;
    line-height: 1.8; /* Combinei o line-height */
    margin-bottom: 5px;
}

/* Link da biografia do autor */
.author-bio a {
    color: #E14A42;
    text-decoration: none;
}

.author-bio a:hover {
    text-decoration: underline;
}

/* Redes sociais do autor */
.author-social {
    margin-bottom: 25px;
}

.author-social li {
    display: inline-block;
    margin-left: -15px;
}

.author-social a {
    background-color: transparent;
    color: #4081b3;
    display: inline-block;
    font-size: 20px;
    height: 45px;
    line-height: 30px;
    text-align: center;
    width: 45px;
    transition: all 0.3s ease 0s;
}

.author-social a:hover {
    color: #E14A42;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .authors-section h2 {
		 font-size: 3em; /* Reduz ainda mais o tamanho da fonte do título */
		line-height: 0.70em;
    }

    .authors-container {
        max-width: 90%; /* Aumenta a largura do container para 90% da tela */
    }

    .authors-image {
        width: 100%; /* Faz a imagem ocupar toda a largura disponível */
        max-width: 350px; /* Limita a largura máxima */
    }

    .author-name {
        font-size: 1.4em; /* Reduz o tamanho do nome */
    }

    .author-bio {
        font-size: 0.9em; /* Reduz o tamanho da fonte da biografia */
    }

    .author-social {
        margin-bottom: 15px;
    }

    .author-social a {
        font-size: 18px; /* Ajusta o tamanho dos ícones de redes sociais */
        width: 40px;
        height: 40px;
    }
}


/* Seção compra */
.cta-container {
    text-align: center;
    padding: 60px 20px;
    margin: 0 auto;
    max-width: 100%;
	background-color: #fff;
}

.cta-container p {
    margin-bottom: 5px;
    line-height: 1.8;
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-size: 1em;
    color: #333;
}

.cta-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Lagarto Letreiros';
    text-transform: uppercase;
    color: #E14A42;
    font-weight: 400;
    font-size: 3.5em;
}

.cta-container .cta-link {
    display: inline-block;
    margin: 25px 5px;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    background-color: #e14a42;
    border: 2px solid #e14a42;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-family: "Merriweather Sans", serif;
    font-size: 1em;
    line-height: 1.8;
}

.cta-container .cta-link:hover {
    color: #e14a42;
    background-color: #f4f4f4;
    border-color: #e14a42;
}

.cta-container .cta-linkpreview {
    display: inline-block;
    margin: 25px 5px;
    padding: 10px 20px;
    text-decoration: none;
    color: #e14a42;
    background-color: #fff;
    border: 2px solid #e14a42;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-family: "Merriweather Sans", serif;
    font-size: 1em;
    line-height: 1.8;
}

.cta-container .cta-linkpreview:hover {
    color: #e14a42;
    background-color: #f4f4f4;
    border-color: #e14a42;
}




.book-price {
    text-align: center;
    margin-bottom: 40px;
	color: #E14A42;
}

.price-details {
    font-size: 0.8em;
    color: #555;
	margin-bottom: -15px;
	color: #E14A42;
}

.book-price p {
    font-size: 0.9em;
    color: #E14A42;
    text-align: center;
    margin-bottom: -5px;
}

.book-price img {
    max-width: 300px;
    margin-right: 15px;
    vertical-align: middle;
}





/* Tabela de livro */
.book-table {
    margin: 20px auto;
    border-collapse: collapse;
    width: 100%;
    max-width: 450px;
    font-size: 1em;
}

.book-table th, .book-table td {
    border-top: 1px solid #E14A42;
    border-bottom: 1px solid #E14A42;
    padding: 7px;
    text-align: left;
    font-family: "Merriweather Sans", serif;
}

.book-table th {
    color: #e14a42;
    font-weight: bold;
}

.book-table tr {
    color: #e14a42;
}

.book-table td {
    color: #333;
}

.book-table th[colspan="2"] {
    text-align: center;
    background-color: #e14a42;
    color: #fff;
    font-size: 1.2em;
    padding: 10px;
}



/* Responsividade para dispositivos móveis */
@media screen and (max-width: 768px) {
    .cta-container {
        padding: 40px 15px;
    }
    
    .cta-container h2 {
        font-size: 3em; /* Reduz ainda mais o tamanho da fonte do título */
		line-height: 0.70em;
    }

    .cta-container .cta-link, 
    .cta-container .cta-linkpreview {
        font-size: 1em; /* Ajusta o tamanho da fonte dos botões */
        padding: 8px 16px; /* Diminui o padding dos botões */
    }

    .book-price {
        font-size: 0.9em; /* Ajusta o tamanho da fonte do preço */
    }

    .book-price p {
        font-size: 0.9em; /* Ajusta o tamanho da fonte do preço */
    }

    .book-table {
        max-width: 90%; /* Ajusta a tabela para ocupar 100% da largura */
    }

    .book-table th, .book-table td {
        font-size: 0.9em; /* Reduz o tamanho da fonte na tabela */
        padding: 6px; /* Reduz o padding nas células */
    }

    .book-price img {
        max-width: 350px; /* Ajusta a largura da imagem do preço */
    }
}

@media screen and (max-width: 480px) {
    .cta-container {
        padding: 30px 10px;
    }
    
    .cta-container h2 {
         font-size: 3em; /* Reduz ainda mais o tamanho da fonte do título */
		line-height: 0.70em;
    }

    .cta-container .cta-link, 
    .cta-container .cta-linkpreview {
        font-size: 0.8em; /* Ajusta o tamanho da fonte dos botões */
        padding: 6px 12px; /* Ajusta o padding dos botões */
    }

    .book-price {
        font-size: 0.9em; /* Ajusta o tamanho da fonte do preço */
    }

    .book-price p {
        font-size: 0.9em; /* Ajusta o tamanho da fonte do preço */
    }

    .book-table {
        font-size: 0.9em; /* Reduz ainda mais o tamanho da fonte da tabela */
		max-width: 90%; /* Ajusta a tabela para ocupar 100% da largura */
    }

    .book-table th, .book-table td {
        padding: 5px; /* Diminui o padding nas células da tabela */
    }

    .book-price img {
        max-width: 250px; /* Ajusta ainda mais a largura da imagem */
    }
}

/* Seção links da mídia */
.media-links {
    padding: 40px 20px;
    margin-top: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.media-links h2 {
    margin-bottom: 40px;
    font-family: 'Lagarto Letreiros';
    text-transform: uppercase;
    color: #E14A42;
    font-weight: 400;
    font-size: 3.5em;
}

.media-list {
    list-style-type: none;
    padding: 0;
}

.media-list a {
    line-height: 1.8;
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-size: 1em;
    color: #E14A42;
	text-decoration: none;
}

.media-list a:hover {
    line-height: 1.8;
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-size: 1em;
    color: #E14A42;
	text-decoration: underline;
}


.media-item {
    text-align: left;
    margin-bottom: 20px;
}

.media-item img {
    max-width: 80px;
    margin-right: 15px;
    vertical-align: middle;
	margin-bottom: 5px;
}

.media-item h3 {
    line-height: 1.8;
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-size: 1em;
    display: inline-block;
    vertical-align: middle;
}

/* Linha separadora entre os itens */
.media-item + .media-item {
    border-top: 1px solid #4081b3;
    padding-top: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .media-links {
        padding: 30px 15px;
    }

    .media-links h2 {
        font-size: 3em; /* Reduz ainda mais o tamanho da fonte do título */
		line-height: 0.70em;
    }

   	.media-list a {
    line-height: 1.8;
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-size: 1em;
    color: #E14A42;
	text-decoration: none;
}

.media-list a:hover {
    line-height: 1.8;
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-size: 1em;
    color: #E14A42;
	text-decoration: underline;
}

    .media-item {
        display: flex;
        align-items: left;
        justify-content: center;
        text-align: left;
    }

    .media-item img {
        max-width: 100px; /* Ajusta a largura da imagem */
        margin-right: 10px; /* Ajusta o espaçamento à direita da imagem */
    }

    .media-item h3 {
        font-size: 1em; /* Ajusta o tamanho do título do item */
    }
}

@media (max-width: 480px) {
    .media-links {
        padding: 20px 10px;
		max-width: 90%;
    }

    .media-links h2 {
         font-size: 3em; /* Reduz ainda mais o tamanho da fonte do título */
		line-height: 0.70em;
    }



    .media-item {
        display: block;
        text-align: left;
        margin-bottom: 15px;
    }

    .media-item img {
        max-width: 90px; /* Ajusta ainda mais a largura da imagem */
        margin-bottom: 10px; /* Adiciona margem inferior nas imagens */
    }

    .media-item h3 {
        font-size: 1em; /* Ajusta o tamanho do título do item */
    }
	
	.media-list a {
    line-height: 1.8;
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-size: 1em;
    color: #E14A42;
	text-decoration: none;
}

.media-list a:hover {
    line-height: 1.8;
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-size: 1em;
    color: #E14A42;
	text-decoration: underline;
}
	
	
}

/* Seção contato */
.contact-section {
    background-color: #ffd731;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    padding-bottom: 45px;
    margin: 0 auto;
    box-sizing: border-box;
	padding-top: 85px;
}

.contact-section h2,
.contact-section h3 {
    
    
    color: #E14A42;
    text-align: center;
    margin-bottom: 40px;
}

.contact-section h2 {
    font-size: 3.5em;
    
	font-family: 'Lagarto Letreiros', "Merriweather Sans", serif;
	font-weight: 400;
	text-transform: uppercase;
}

.contact-section h3 {
    font-family: "Merriweather Sans", serif;
    font-weight: 700;
    font-size: 1.5em;
}

.contact-section p,
.contact-section a,
.social-cta p {
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-size: 1em;
    color: #E14A42;
    text-align: center;
    line-height: 1.8;
}

.contact-section a {
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

.social-cta {
    margin-top: 20px;
}

.contact-social ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.contact-social li {
    display: inline-block;
}

.contact-social a {
    background-color: transparent;
    color: #4081b3;
    font-size: 28px;
    height: 35px;
    width: 35px;
    text-align: center;
    transition: all 0.3s ease;
    line-height: 35px;
}

.contact-social a:hover {
    color: #E14A42;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .contact-section {
        padding: 15px; /* Reduz o padding geral */
        padding-top: 60px; /* Ajusta o espaço superior */
        padding-bottom: 30px; /* Ajusta o espaço inferior */
    }

    .contact-section h2 {
        font-size: 3em; /* Reduz ainda mais o tamanho da fonte do título */
		line-height: 0.70em;
    }

    .contact-section h3 {
        font-size: 1.5em; /* Reduz o tamanho da fonte do subtítulo */
        margin-bottom: 20px; /* Diminui o espaçamento inferior */
    }

    .contact-section p,
    .contact-section a,
    .social-cta p {
        font-size: 0.9em; /* Ajusta o tamanho da fonte para texto */
        line-height: 1.5; /* Reduz o espaçamento entre linhas */
    }

    .contact-social ul {
        flex-wrap: wrap; /* Permite que os itens se ajustem em várias linhas */
        gap: 15px; /* Reduz o espaçamento entre os ícones sociais */
    }

    .contact-social a {
        font-size: 24px; /* Reduz o tamanho dos ícones sociais */
        height: 30px;
        width: 30px;
        line-height: 30px;
    }
}


/* Rodapé */
.footer {
    background-color: #E14A42; /* Cor de fundo do rodapé */
    color: #fff; /* Cor do texto */
    text-align: center; /* Centraliza o conteúdo */
    padding: 30px 20px; /* Espaçamento vertical */
    width: 100%; /* Garantir que ocupe toda a largura da página */
    position: relative;
    bottom: 0;
    left: 0;
}

/* Linha amarela */
.footer img:first-of-type {
    max-width: 100%;
    height: auto;
}

/* Texto e imagem do prêmio */
.footer h6 {
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-size: 0.75em;
     margin-top: 20px;
	color: #ffd731;
}

.footer img:last-of-type {
    
    margin-top: 10px;
}

/* Copyright */
.footer p {
    font-family: "Merriweather Sans", serif;
    font-weight: 400;
    font-size: 0.75em;
    color: #ffd731;
	margin-top: 25px;
	margin-bottom: 25px;
}

