@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&family=Libertinus+Math&display=swap');
@import url('https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css');
:root {
  --body-bg-color: #e5f4f9;
  --body-color-light: #686c70;
  --body-font: "Libertinus Math", system-ui;
  --page-bg-color: #f2f5f7;
  --body-color: #36393b;
  --border-color: #b8bec3;
  --placeholder: #ccd0d2;
}

* {
  outline: none;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #fff;  
  background-attachment: fixed;
  font-family: var(--body-font);
  color: var(--body-color);
  font-weight: 400;
  margin: 0;
}

.likes, .year-book, .author, .main-menu, .profile-menu, .profile, .browse-category, .browse, .header {
  display: flex;
  align-items: center;
}


.header {
  position: fixed;
  top: 0;
  height: 50px;
  width: 100%;
  background-color: #ffffff;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 500;
  color:#36393b;
  justify-content: space-between;
  flex-shrink: 0;
  border-bottom: 1px solid #37668968;
  z-index: 9999;
}

.search-bar {
  position: relative;
  border: 1px solid #ccc;
  padding: 10px 5px;
  border-radius: 10px;
}
.search-bar input {
  height: 100%;
  width: 100%;
  display: block;
  background-color: transparent;
  border: none;
  font-weight: 600;
  padding: 0 10px 0 40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%238b939c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' class='feather feather-search'%3e%3ccircle cx='11' cy='11' r='8'/%3e%3cpath d='M21 21l-4.35-4.35'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 15px 50%;
  color: var(--body-color);
  font-family: var(--body-font);
}
.search-bar input::placeholder {
  color: var(--placeholder);
}

.browse-category {
  border-right: 1px solid var(--border-color);
  white-space: nowrap;
}
.browse-category svg {
  width: 16px;
  margin: 2px 10px 0 8px;
}

.category-dropdown {
  position: absolute;
  top: 52px;
  left: 0;
  width: 120px;
  max-width: 50vw;
  background-color: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.211);
  border-radius: 3px;
  display: none;
  flex-direction: column;
  z-index: 1000;
  animation: slideDown 0.3s ease-in-out;
  padding: 30px 0;
}

.category-dropdown a {
  color: var(--body-color);
  padding: 10px 20px;
  text-decoration: none;
  font-size: 0.9em;
  border-bottom: 1px solid #f0f0f078;
  transition: background 0.2s ease;
  font-weight: Normal;
}

.category-dropdown a:last-child {
  border-bottom: none;
}

.category-dropdown a:hover {
  color:#446072;
 text-decoration: dashed underline;
}


@media (max-width: 725px) {
  .category-dropdown {
    width: 30%;
  }
}


/* animação */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.book-store {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  height: 100vh;
  background-color: var(--page-bg-color);
  margin: 0 auto;
  overflow: hidden;
}

.header-title {
  font-size: 18px;
  font-weight: 400;
  margin-right: 120px;
}
.header-title span {
  font-weight: 600;
  color: #98a8b7;
  font-family: "Roboto Slab", serif;
  font-size: 16px;
}

.user-img {
  width: 28px;
  height: 28px;
  margin-right: 15px;
}


.user-profile {
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.profile {
  flex-shrink: 0;
}
.profile-menu {
  border-left: 1px solid var(--border-color);
}
.profile svg {
  width: 22px;
  margin: 0 8px 0 15px;
  flex-shrink: 0;
  cursor: pointer;
}

/* MENU LATERAL (DRAWER) */
nav#drawer-menu {
    position: fixed;
    top: 52px;
    right: -260px;
    width: 220px;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    transition:right 0.35s ease-in-out;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.211);
    border-radius: 6px;
    z-index: 100010;
}

nav#drawer-menu >span{
 text-align: center;
 margin-bottom: 20px;
}




nav#drawer-menu a {
    color: var(--body-color-);
    padding: 10px 20px;
    text-decoration: none;
    border-bottom: 0.5px solid #eae3e313;
    font-size: 0.9em;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 400;
    
}
nav#drawer-menu a:last-child {
  border-bottom: none;
}

nav#drawer-menu a:hover {
  background: #edf0efd1;
  color: #446072;
}
nav#drawer-menu  .active {
  background: #edf0efd1;
  color: #446072;
}

.book-slide {
  width: 100%;
  margin-top:52px;
}

.book {
  background: #fff;
}

.book-cell {
  position: relative;
  display: flex;
  padding: 25px;
  width: 40%;
  height: 250px;
  margin-right: 2px;
 box-shadow: 0px 1px 20px 0px #7f818e41;
}


.flickity-page-dots {
  display: none;
}

.flickity-prev-next-button .arrow {
  fill: #4460729d;
}

.flickity-prev-next-button svg {
  left: 25%;
  top: 25%;
  width: 50%;
  height: 50%;
}

.flickity-prev-next-button.previous {
  left: 15px;
}
.flickity-prev-next-button.next {
  right: 15px;
}

.flickity-viewport {
  overflow: visible;
}

.book-photo {
  width: 180px;
  flex-shrink: 0;
  bottom: -35px;
  left: 35px;
  border-radius: 2px;
  box-shadow: -2px 6px 19px 0px #7f818e;
  transition: 0.3s ease;
}
.book-photo:hover {
  transform: scale(1.03);
}

.book-img {
  flex-shrink: 0;
}

.book-title {
  margin-top: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.book-title {
  color: var(--body-color);
  font-weight: 600;
}

.book-author {
  margin-top: 3px;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #446072;
}

.book-content {
  padding: 0 20px;
  color: #ffffff;
  overflow: hidden;
}

fieldset,
label {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}

h1 {
  font-size: 0.5em;
  margin: 10px;
}

.rating {
  border: none;
}

.rating > input {
  display: none;
}

.rating > label:before {
  margin-right: 5px;
  margin-top: 10px;
  font-size: 0.9em;
  font-family: FontAwesome;
  display: inline-block;
  content: "";
}

.rating > label {
  color: #fff;
  float: right;
}

.rating > input:checked ~ label,
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
  color: #d85d61;
}

.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
.rating > input:checked ~ label:hover ~ label {
  color: #d85d61;
}

.blue > input:checked ~ label,
.blue:not(:checked) > label:hover,
.blue:not(:checked) > label:hover ~ label {
  color: #458997;
}

.blue > input:checked + label:hover,
.blue > input:checked ~ label:hover,
.blue > label:hover ~ input:checked ~ label,
.blue > input:checked ~ label:hover ~ label {
  color: #458997;
}

.purple > input:checked ~ label,
.purple:not(:checked) > label:hover,
.purple:not(:checked) > label:hover ~ label {
  color: #a76287;
}

.purple > input:checked + label:hover,
.purple > input:checked ~ label:hover,
.purple > label:hover ~ input:checked ~ label,
.purple > input:checked ~ label:hover ~ label {
  color: #a76287;
}

.yellow > input:checked ~ label,
.yellow:not(:checked) > label:hover,
.yellow:not(:checked) > label:hover ~ label {
  color: #ffad58;
}

.yellow > input:checked + label:hover,
.yellow > input:checked ~ label:hover,
.yellow > label:hover ~ input:checked ~ label,
.yellow > input:checked ~ label:hover ~ label {
  color: #ffad58;
}

.dark-purp > input:checked ~ label,
.dark-purp:not(:checked) > label:hover,
.dark-purp:not(:checked) > label:hover ~ label {
  color: #905587;
}

.dark-purp > input:checked + label:hover,
.dark-purp > input:checked ~ label:hover,
.dark-purp > label:hover ~ input:checked ~ label,
.dark-purp > input:checked ~ label:hover ~ label {
  color: #905587;
}

.book-voters {
  color: #446072;
  vertical-align: sub;
  font-size: 13px;
  margin-left: 7px;
  white-space: nowrap;
  margin-top: 7px;
}

.book-sum {
  color: var(--body-color);
  margin-top: 20px;
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.book-see {
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
  background-color: #fff;
  color: #446072;
  font-weight: 600;
  padding: 8px;
  font-size: 14px;
  width: 160px;
  border: 1px solid #446072;
  border-radius: 20px;
}
.book-see:hover {
  background-color: #fff;  
  color:#446072;
}
.book-see a{
  color: #446072;
}



.main-wrapper {
  width: 100%;
  display: flex;
  flex-grow: 1;
  margin-top: 100px;
  overflow: hidden; 
}

.books-of {
  width: 320px;
  flex-shrink: 0;
  overflow-y: auto;
  padding-top: 20px;
  background-color: #fff;
}

.popular-books {
  flex-grow: 1;
  padding: 0 30px 50px;
  overflow-y: auto;
}

.genre {
  font-weight: 500;
  font-size: 15px;
}

.main-menu {
  white-space: nowrap;
  padding-bottom: 15px;
  border-bottom: 1px solid #dcddde;
  position: sticky;
  top: 0;
  right: 0;
  background-color: var(--page-bg-color);
  z-index: 2;
}

.book-types {
  margin-left: auto;
}
.book-types a {
  text-decoration: none;
  color: var(--body-color);
  font-size: 14px;
}

.book-type + .book-type {
  margin-left: 20px;
}

.book-type {
  position: relative;
  transition: 0.2s;
}
.book-type.active, .book-type:hover {
  -webkit-text-stroke: 0.3px;
}
.book-type.active:before, .book-type:hover:before {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  bottom: -17px;
  right: 0px;
  background-color: #446072;
  box-shadow: 0px -1px 5px 0px #446072;
}
.book-type:nth-child(2):before {
  right: 0px;
}
.book-type:nth-child(3):before {
  right: 8px;
}
.book-type:nth-child(4):before {
  right: 6px;
}
.book-type:nth-child(5):before {
  right: 20px;
}

.week {
  padding: 0 30px;
}

.author + .author {
  margin-top: 20px;
}
.author-name > a{
  color:#446072;
  border-bottom: 1px dashed #446072;
  font-size: 14px;
}
.author-name > a:hover{
  
  border-bottom: none;
}
.author:last-child {
  margin-bottom: 40px;
}

.author-title {
  padding: 0 0 20px;
  font-weight: 500;
  font-size: 15px;
}

.author-img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 16px;
  object-fit: cover;
  object-position: center;
  margin-top: 10px;
}

.year-book-img {
  width: 45px;
  margin-right: 16px;
}
.year-book-name {
  margin-bottom: 15px;
  font-weight: 500;
}
.year-book-name > a{
  color: #446072;
  border-bottom: 1px dashed #446072;
  margin-bottom: 15px;
  font-weight: 500;
}
.year-book-name > a:hover{  
  border-bottom: none;
}
.year-book-author {
  font-size: 13px;
}
.year-book + .year-book {
  margin-top: 20px;
}

.year-book-content {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.overlay {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 340px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #f2f5f7 65%, #f2f5f7 100%);
  height: 60px;
  margin-left: -35px;
}

.book-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  padding-top: 40px;
  position: relative;
}

 .book-card {
  margin-top: 20px;
  background-color: #fff;
  height: 270px;
  box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 0 0 20px 20px;
  color: var(--body-color-light);
}
a{ text-decoration: none;}

.book-card-img {
  width: 160px;
  margin-top: -35px;
  border-radius: 2px;
  box-shadow: 0px 1px 7px 2px #c7c9d3;
  border-bottom: 1px solid #dcddde;
  object-fit: cover;
  margin-bottom: 20px;
  transition: 0.3s ease;
}
.book-card-img:hover {
  transform: scale(1.04);
}

.card-content {
  color: var(--body-color);
  padding: 30px;
  overflow: hidden;
  position: relative;
}

.book-name {
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.book-by {
  font-size: 13px;
  color: var(--body-color-light);
  margin-top: 4px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.book-rate > label {
  color: #cccccc;
}

.rate {
  display: inline-block;
  white-space: nowrap;
}

.book-rate > input:checked ~ label,
.book-rate:not(:checked) > label:hover,
.book-rate:not(:checked) > label:hover ~ label {
  color: #ff9700;
}

.book-rate > input:checked + label:hover,
.book-rate > input:checked ~ label:hover,
.book-rate > label:hover ~ input:checked ~ label,
.book-rate > input:checked ~ label:hover ~ label {
  color: #ff9700;
}

.card-vote {
  color: var(--body-color-light);
}

.card-sum {
  color: var(--body-color-light);
  font-size: 13px;
  line-height: 1.6em;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  margin-top: 15px;
}

.content-wrapper {
  display: flex;
  border-bottom: 1px solid #ebedef;
  position: relative;
}
.content-wrapper:before {
  content: "";
  position: absolute;
  background-color: #8f98a9;
  background-color: #aaaebc;
  box-shadow: 0 -6px 0 0 #aaaebc, 0 6px 0 0 #aaaebc;
  width: 4px;
  height: 4px;
  border: 0;
  padding: 0;
  right: 12px;
  top: 17px;
  border-radius: 50%;
  margin-left: auto;
}

.like-profile {
  margin: 8px;
}
.like-profile + .like-profile {
  margin-left: -5px;
}

.like-img {
  border-radius: 100%;
  width: 30px;
  height: 30px;
  object-fit: cover;
  border: 2px solid #fff;
}

.like-name {
  margin: 10px 20px;
  font-size: 13px;
  margin-left: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.like-name span {
  font-weight: 600;
}

/* Footer */

	#footer {
    position: fixed;
		-moz-transition: -moz-transform 0.325s ease-in-out, -moz-filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
		-webkit-transition: -webkit-transform 0.325s ease-in-out, -webkit-filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
		-ms-transition: -ms-transform 0.325s ease-in-out, -ms-filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
		transition: transform 0.325s ease-in-out, filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
		width: 100%;
		max-width: 100%;
    height: 40px;
		text-align: center;
		margin: 0 auto;
    background-color: #fff;
    bottom: 0;
    z-index: 999;
	}

		#footer .copyright {
			letter-spacing: 0.2rem;
			font-size: 0.6rem;
			opacity: 0.75;
			margin-bottom: 0;
			text-transform: uppercase;
		}

  #footer .copyright a{
		color: #3d4954;
    text-decoration: none;
    border-bottom: 1px  dashed #3d4954;
		}
  #footer .copyright a:hover{
		color: #446072;
    text-decoration: none;
    border-bottom: none;
		}


@media (max-width: 1103px) {
  .book-cell {
    width: 60%;
  }
}
@media (max-width: 765px) {
  .book-cell {
    width: 80%;
  }
}
@media (max-width: 575px) {
  .book-cell {
    width: 100%;
  }
}
@media (max-width: 458px) {
  .book-photo {
    width: 180px;
  }
  
}
@media (max-width: 420px) {
  .book-see {
    width: 120px;
    font-size: 13px;
  }

  .book-photo {
    width: 130px;
  }

  .main-wrapper {
    margin-top: 50px;
  }
}
@media (max-width: 360px) {
  .rating > label:before {
    font-size: 0.8em;
  }
}

@media (max-width: 1085px) {
  .book-rate > label {
    font-size: 0.7em;
  }
}
@media (max-width: 1045px) {
   .book-store{
        height:auto;
        overflow:visible;
    }

    .main-wrapper{
        display:flex;
        flex-direction:column;
        overflow:visible;
        height:auto;
    }

    .popular-books{
        order:1;
        width:100%;
        flex:none;
        overflow:visible;
        padding:0 20px;
        border-bottom: 1px solid #cccccc72;
        
        
    }

    .books-of{
        order:2;
        width:100%;
        flex:none;
        margin: 40px 0;
        overflow:visible;   
        display:flex;
        gap:30px;
        align-items:flex-start;    
    }
    .books-of .week,
    .books-of .year{
        flex:1;
        padding: 20px 10px;
    }
    /*.books-of .year{
      border-left: 1px solid #ccc;
    }*/

    .overlay{
        display:none;
    }
}
@media (max-width: 725px) {
  .browse-category {
    display: one;
  }
  .search-bar {
   width: 90%;
  }

  .header-title {
    margin-right: auto;
  }

  .book-cards {
    grid-template-columns: 1fr;
  }

}
@media (max-width: 372px) {
  .card-content {
    padding: 20px;
  }
}

.pdf-pages{
  margin-bottom: 50px;
}

canvas {   padding:0; border-radius: 5px;}



 #pdf-render {
  flex: 1;
  max-width: 100%;
  height: auto;
  margin: 12px auto;
}

.manual-header {
  text-align: center;
  margin-bottom: 24px;
  margin-top: 80px;
}

.manual-header h1 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #446072;
}

p.manual-meta {
  width: 80%;
  margin: 30px auto;
  font-size: 1rem;
  color: #6b6565;
  text-align: justify;
  font-weight: normal;
  font-family: "Roboto Slab", serif;
}
.pdf-preview {
  max-width: 80%;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.222);
  margin: 24px auto;
  overflow-x: auto;
  text-align: center;
  background-color: #fff;
}



.pdf-viewer-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-btn {
  position: absolute;
  z-index: 1;
  border: none;
  background: #4460721f;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 450%;
  font-size: 3rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;

}
.nav-btn svg {
  width:20px;
  height:20px;
}

.nav-btn svg .arrow {
  fill: #fff; /* cor da seta */
}




.nav-btn:hover {
  background-color: #44607279;
}
.nav-btn.prev { left: 0px; }
.nav-btn.next { right: 0px; }

.page-counter {
  text-align: center;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #446072;
}

/* =========================
   AÇÕES PRINCIPAIS
========================= */
.manual-actions {
  text-align: center;
  margin: 24px 0;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 6px;
  transition: 0.2s ease;
}


.btn.download {
  background-color: #446072;
  color: #fff;
}

.btn.download:hover {
  background-color: #3d4954;
}
/* =========================
   BLOCO EDITORIAL
========================= */
.manual-editorial {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}

.manual-editorial h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #446072;
}

.manual-editorial p {
  font-size: 0.95rem;
  color: var(--body-color);
  margin-bottom: 12px;
}

/* =========================
   CTA DISCRETO
========================= */
.manual-cta {
  background: #446072;
  color: #f2f2f2;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 50px;
}

.manual-cta p {
  font-size: 1rem;
  margin-bottom: 12px;
}

.manual-cta ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.manual-cta li {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* =========================
   FORMULÁRIO COM EDITOR
========================= */

.form-comentario {
    margin-top: 15px;
    margin-left: 25px;
    max-width: 650px;
    font-family: Arial, Helvetica, sans-serif;
}

/* TÍTULO */

.form-comentario input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: 0.2s;
}

.form-comentario input[type="text"]:focus {
    border-color: #348e91;
    box-shadow: 0 0 0 2px rgba(52,142,145,0.15);
}

/* BARRA DO EDITOR */

.editor-toolbar {
    border: 1px solid #ccc;
    border-bottom: none;
    background: #f5f5f5;
    padding: 6px;
    border-radius: 6px 6px 0 0;
}

.editor-toolbar button,
.editor-toolbar select,
.editor-toolbar input[type="color"] {
    margin-right: 5px;
    padding: 5px 8px;
    font-size: 14px;
    cursor: pointer;
}

/* ÁREA DO EDITOR */

.editor-area {
    height: 400px;
    border: 1px solid #ccc;
    border-radius: 0 0 6px 6px;
    min-height: 140px;
    padding: 10px;
    background: #fff;
    outline: none;
    overflow-y: auto;   /* cria rolagem vertical quando o texto crescer */
    word-wrap: break-word;  /* quebra palavras grandes */
    white-space: pre-wrap;  /* mantém quebras de linha */
}

/* FOCO */

.editor-area:focus {
    border-color: #446072;
    box-shadow: 0 0 0 2px rgba(52,142,145,0.15);
}

/* BOTÃO */

.form-comentario input[type="submit"] {
    margin-top: 12px;
    padding: 10px 20px;
    background: #446072;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.form-comentario input[type="submit"]:hover {
    background: #446072;
}

.form-comentario input[type="submit"]:active {
    transform: scale(0.97);
}

/* ===== CAMPOS ===== */
.file-box {
    display: flex;
    flex-direction: column;
}

.file-box label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.file-box input,
.file-box textarea {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: #fafafa;
}

.file-box textarea {
    resize: vertical;
    min-height: 110px;
}

/* ===== FOCO ===== */
.file-box input:focus,
.file-box textarea:focus {
    border-color: #348e91;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 142, 145, 0.15);
}

/* ===== INPUT FILE ===== */
.file-box input[type="file"] {
    padding: 10px;
    background-color: #f2f2f2;
    cursor: pointer;
}


/* Pagination */
ul.pagination {
  cursor: default;
  list-style: none;
  padding-left: 0; 
  margin: 50px  auto;
  justify-content: center;
  text-align: center;}
ul.pagination li {
  display: inline-block;
  padding-left: 0;
  vertical-align: middle; }

ul.pagination li > .page {
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border-bottom: 0;
  border-radius: 0.2em;
  display: inline-block;
  font-size: 0.8em;
  font-weight: normal;
  height: 2em;
  line-height: 2em;
  margin: 0 0.125em;
  min-width: 2em;
  padding: 0 0.5em;
  text-align: center; }

  ul.pagination li > .page.active {
  border: 1px solid #446072;
  color: #446072 !important; }
 
ul.pagination li > .page.active:hover {
  border: 1px solid #446072;
  color: #446072 !important; }

ul.pagination li > .page.active:active {
 border: 1px solid #446072; }

ul.pagination li:first-child {
  padding-right: 0.75em; }

ul.pagination li:last-child {
  padding-left: 0.75em; }

@media screen and (max-width: 480px) {

  ul.pagination li:nth-child(n+2):nth-last-child(n+2) {
    display: none; }

  ul.pagination li:first-child {
    padding-right: 0; } 
}