/* menu */
.menu {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 400px;
  z-index: 1000;
  box-sizing: border-box;
}

.cab1, .cab2 {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.logo {
  height: 80px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu a {
  text-decoration: none;
  color: black;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 900;
}

.menu a:hover {
  color: #ad9966;
}


/*submenu do blog*/
.dropdown {
    position: relative;
}
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 20px 0;
    margin: 0;
    width: 180px;

    display: none;
}
.submenu li {
    padding: 10px 20px;
}
.submenu li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
}
.submenu li:hover {
    background: #f5f5f5;
}
.dropdown:hover .submenu {
    display: block;
}




/* texto na imagem principal */
.banner-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  background: white;
  margin-top: 80px; 
  padding: 0 140px;  
  box-sizing: border-box;
  position: relative;
}

#sec01 {
  width: 80%;
  height: 80vh;
  left: 10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
}

#roof {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#roof p {
  font-size: 48px;
    letter-spacing: 7.5px;
    line-height: 1.5;
    font-size: 48px;
    text-transform: uppercase;
    font-weight: normal;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

hr {
  border: 0;
  border-bottom: solid 1px white;
  margin: 15px 0;
  width: 800px;
}

#roof span {
  font-size: 18px;
  text-transform: uppercase;
  color: white;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 3px;
}

.seta-baixo {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.seta-baixo img {
  width: 40px;
}




.seta-baixo {
    position: absolute;
    bottom: -60px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.seta-baixo img {
    width: 40px; 
}






.blog {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 80%;
    margin: 100px auto;
}
.blog .card {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.blog .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}
.blog .card .overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;

    background: rgba(0, 0, 0, 0.4);
    transition: 0.5s;
}
.blog .card .texto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    color: white;
    z-index: 2;
}
.blog .card .texto h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}
.blog .card .texto p {
    margin: 5px 0 0;
    font-size: 14px;
}
.blog .card:hover img {
    transform: scale(1.1);
}
.blog .card:hover .overlay {
    background: rgba(201, 169, 110, 0.85); /* dourado */
}






.blog-page {
    display: flex;
    gap: 40px;
    width: 85%;
    margin: 100px auto;
}
.posts {
    width: 65%;
}
.post {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}
.post-left {
    width: 25%;
    font-size: 20px;
    color: #777;
}
.post-left span {
    display: block;
    margin-bottom: 5px;
}
.post-right {
    width: 75%;
}
.post-right img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.post-right h3 {
    margin: 15px 0;
    font-size: 30px;
    transition: 0.3s;
}
.post-right h3:hover {
    color: #c9a96e;
}
.post-right p {
    color: #777;
    font-size: 20px;
    line-height: 1.6;
}
.post-right button {
    margin-top: 10px;
    padding: 15px 30px;
    background: white;
    border: none;
    color: black;
    cursor: pointer;
    transition: 0.3s;
    font-size: 20px;
    border: 2px solid #c9a96e;
}
.post-right button:hover {
    background: rgb(192, 176, 106);
    color: white;
}
.sidebar {
    width: 30%;
}
.search-box {
    display: flex;
    margin-bottom: 30px;
}
.search-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
}
.search-box button {
    background: #c9a96e;
    border: none;
    padding: 10px;
    color: white;
}
.author-box {
    text-align: center;
    margin-bottom: 40px;
}
.author-box img {
    width: 180px;
    border-radius: 50%;
}
.author-box h4 {
    margin: 10px 0;
    font-family: 25px;
}
.author-box span {
    color: #777;
    font-size: 2opx;
}
.author-box p {
    font-size: 20px;
    color: #777;
}
.popular h4 {
    background: #c9a96e;
    color: white;
    padding: 10px;
    font-size: 30px;
    text-align: center;
}
.mini-post {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.mini-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}
.mini-post p {
    font-size: 20px;
    margin: 0;
}
.mini-post span {
    font-size: 20px;
    color: #777;
}
.categories h4 {
    margin: 20px 0;
}
.categories p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    font-size: 20px;
}

.newsletter-box {
    margin-top: 30px;
}
.newsletter-box h4 {
    background: #c9a96e;
    color: white;
    padding: 10px;
    font-size: 30px;
    text-align: center;
}
.newsletter-box p {
    font-size: 20px;
    color: #777;
    margin: 15px 0;
}
.newsletter-input {
    display: flex;
    border: 1px solid #ddd;
}
.newsletter-input input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
}
.newsletter-input button {
    background: #c9a96e;
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
}
.newsletter-box small {
    font-size: 20px;
    color: #777;
}

.tags-box {
    margin-top: 30px;
}
.tags-box h4 {
    background: #c9a96e;
    color: white;
    padding: 10px;
    font-size: 30px;
    text-align: center;
}
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.tags-list span {
    border: 1px solid #ddd;
    padding: 6px 10px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.tags-list span:hover {
    background: #c9a96e;
    color: white;
}





.pagination {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    clear: both; 
    justify-content: center;; 
}
.pagination a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    border: none;
    font-size: 18px;
    transition: 0.3s;
}
.pagination a:hover {
    background: #c9a96e;
    color: white;
    border-color: #c9a96e;
}
.pagination .active {
    background: #c9a96e;
    color: white;
    border-color: #c9a96e;
}
.pagination .prev,
.pagination .next {
    font-weight: bold;
}



.footer {
    background-color: #04091e;
    color: #777777;
    padding: 80px 0 40px 0;
    text-align: center;
    /* Centraliza os inline-blocks pais */
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    /* Reseta o texto para a esquerda dentro das colunas */
}

.footer-col {
    display: inline-block;
    vertical-align: top;
    width: 18%;
    /* Ajuste para caber 5 colunas */
    margin-bottom: 40px;
}

.newsletter {
    width: 25%;
    /* Coluna da newsletter é um pouco maior */
}

/* Estilização de Texto */
.footer-col h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 14px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

 .footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Input e Botão com Position */
.input-group {
    position: relative;
    width: 100%;
}

.input-group input {
    background: transparent;
    border: 1px solid #333;
    padding: 10px;
    width: 100%;
    color: #fff;
    box-sizing: border-box;
}

.btn-arrow {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background-color: #b69d74;
    border: none;
    color: white;
    cursor: pointer;
}

/* Linha Divisória */
.separator {
    border: 0;
    border-top: 1px solid #333;
    margin: 40px 0;
}

/* Parte de Baixo */
.footer-bottom {
    position: relative;
    display: block;
}

.copyright {
    display: inline-block;
}

.highlight {
    color: #b69d74;
}

.social-icons {
    display: inline-block;
    position: absolute;
    right: 0;
}

.icon {
    display: inline-block;
    background: #191d34;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-left: 5px;
    color: #fff;
}