/* ========================= */
/*        BASE GLOBAL        */
/* ========================= */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at top, #7f6b37 0%, #0b0b0b 75%);
  color: #fff;
  text-align: center;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  user-select: none;
}

.center{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2%;
}

.left{float: left;}
.right{float: right;}
.clear{clear: both;}

/* ========================= */
/*           MENU            */
/* ========================= */
.menu{
  border: 2px solid #e9cd7a;
  display: block;
}

.logo{
  float: left;
  text-align: center;
  display: block;
}

.logo img{
  margin: 5px;
  max-width: 50px;
  border-radius: 50%;
  border: 2px solid #e9cd7a;
  float: left;
}

.logo span{
  margin-top: 15px;
  font-size: 15px;
  float: left;
  color: gold;
  font-style: italic;
  font-size: 18px;
}

.menu-item{
  float: right;
  margin: 15px;
}

.desktop{
  display: block;
}

.desktop ul li{
  list-style: none;
  display: inline;
  margin: 8px;
  padding-top: 5px;
}

.desktop ul li a{
  font-size: 18px;
  text-decoration: none;
  color: white;
}

.desktop ul li a:hover{
  text-decoration: underline;
  color: #f5dca1;
}


/* ========================= */
/*         HEADER            */
/* ========================= */

.header {
  padding: 80px 20px 50px;
}

.title {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  font-size: 58px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
  color: #f5dca1;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}


.title-motto {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: gold;
  opacity: 0.85;
  margin-bottom: -4px;

  font-family: "Times New Roman", serif; 
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
}

.subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.75;
  color: #f0e8d2;
}

/* Selo no título */
.selo {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 0 7px rgba(0,0,0,0.55));
  transform: translateY(-6px);
  transition: 0.35s ease;
}

.selo:hover {
  transform: translateY(-6px) scale(1.08);
  filter: drop-shadow(0 0 12px rgba(255, 225, 160, 0.6));
}

/* ========================= */
/*        APRESENTAÇÃO       */
/* ========================= */

.section {
  padding: 80px 20px;
}

.section-title {
  font-size: 34px;
  margin-bottom: 28px;
  letter-spacing: 1.2px;
  color: #f3dca0;
  text-shadow: 0 0 10px rgba(0,0,0,0.35);
}

.intro-text {
  max-width: 860px;
  margin: 0 auto;
  font-size: 19px;
  opacity: 0.9;
  line-height: 1.82;
  color: #f3ecdb;
}

/* ========================= */
/*       GRID PRINCIPAL      */
/* ========================= */

.grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 80px 25px;
}

.col {
  width: 100%;
  max-width: 300px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  transition: 0.35s ease;
  box-shadow: 0 0 12px rgba(0,0,0,0.35);
}

.col:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 16px rgba(255, 224, 150, 0.25);
}

.col-title {
  font-size: 25px;
  margin-bottom: 28px;
  font-weight: bold;
  color: #f6ddb1;
  text-shadow: 0 0 8px rgba(0,0,0,0.4);
}

/* ========================= */
/*        ITENS PESSOA       */
/* ========================= */

.person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  padding: 4px 0;
}

.person img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid #e9cd7a;
  object-fit: cover;
  background: #000;
  box-shadow: 0 0 8px rgba(0,0,0,0.35);
}

.person span {
  font-size: 17px;
  opacity: 0.95;
}

/* ========================= */
/*          BOTÕES           */
/* ========================= */

.btn {
  margin-top: 30px;
  display: inline-block;
  padding: 14px 38px;
  font-size: 15px;
  border-radius: 40px;
  border: 1px solid #e5c886;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn:hover {
  background: rgba(230, 200, 130, 0.25);
  border-color: #f0d89b;
  box-shadow: 0 0 16px rgba(255, 230, 160, 0.4);
}

/* ========================= */
/*     SEÇÕES COMPLETAS      */
/* ========================= */

.full-section {
  max-width: 970px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: left;
}

.full-section h2 {
  margin-bottom: 32px;
  font-size: 30px;
  color: #f5dca1;
  text-align: center;
  text-shadow: 0 0 10px rgba(0,0,0,0.35);
}

.full-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.full-person {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.full-person:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateX(6px);
  box-shadow: 0 0 14px rgba(255, 220, 150, 0.35);
}

.full-person img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid #e6c677;
  box-shadow: 0 0 8px rgba(0,0,0,0.35);
  object-fit: cover;
}

.fp-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fp-info strong {
  font-size: 20px;
  color: #f3d992;
  text-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.fp-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.link-btn {
  padding: 7px 18px;
  border-radius: 20px;
  background: rgba(210, 180, 106, 0.25);
  color: white;
  text-decoration: none;
  border: 1px solid #d4b875;
  font-size: 14px;
  transition: 0.25s ease;
  font-weight: 500;
}

.link-btn:hover {
  background: rgba(210, 180, 106, 0.38);
  box-shadow: 0 0 10px rgba(255, 225, 160, 0.45);
}

/* pesonalização autores*/
.author{
  display: inline block;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2%;
}

.list-author{
  display: block;
}

.list-author >.full-person{
  display: block;
  float: left;
  text-align: center;
  width: 33.3%;
  min-height: 180px;
  padding: 25px;
}

.list-author >.full-person >img{
  text-align: center;
  display: inline;
}

.list-author >.full-person >.fp-info >.fp-links{flex-direction: column;margin: 5px;}
.list-author >.full-person >.fp-info >.fp-links a{font-size: 20px;}

/* ========================= */
/*        destaque         */
/* ========================= */

  .destaque{
    margin: 10px 0;
    border-bottom: 2px solid #e9cd7a;
    display: block;
  }

  .texto-singlo{
    width: 100%;
    padding: 5px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid #e9cd7a;
    min-height: 320px;
    text-align: center;
    margin: 12px 0;
    display: block;
  }

  .info{
    width: 50%;
    padding: 5px;
    text-align: center;
    display: inline-block;
  }

  .info-img{
    height: 300px;
    padding: 5px 3px;
  }

  .info a{
    font-size: 18px;
    color: #d4b875;
    text-decoration: none;
  }

  .info p{
    margin: 5px;
  }

  .info h3{
    text-align: center;
  }

  .obs{
    width: 100%;
    margin: 5px 0;
  }

  .obs h3{
    font-size: 30px;
  }

  .obs a{
    color: #d4b875;
    text-decoration: none;
  }

/* ========================= */
/*        footer         */
/* ========================= */

.footer{margin-top: 15px;margin-bottom: 25px;}

/* ========================= */
/*        RESPONSIVO         */
/* ========================= */

@media (max-width: 650px) {

  /*liompa base*/

  .leaft,.right{
    float: none;
  }

  .title {
    font-size: 40px;
  }

  .title-motto {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .selo {
    width: 60px;
    height: 60px;
  }

  .col {
    max-width: 100%;
  }

    /* pesonalização autores*/
  .author{
    max-width: 970px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: left;
  }

  .list-author{
     display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .list-author >.full-person{
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 16px;
  }

  .list-author >.full-person >img{
    display: block;
  }

  .list-author >.full-person >.fp-info >.fp-links{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;}
  .list-author >.full-person >.fp-info >.fp-links a{font-size: 14px;}
    
  /*texto-destaque*/

  .info-img{
    width: 100%;
    float: none;
  }
}

@media (max-width: 450px){
  .title {
    font-size: 32px;
  }

  .section-title {
    font-size: 26px;
  }

  .person span {
    font-size: 15px;
  }

  .full-person {
    padding: 12px;
  }
}