/* Reset básico */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --gold: #d6c88a;
    --gold-strong: #b59f50;
    --text-dark: #1a1a1a;
    --text-mid: #555;
    --panel-max: 320px;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* HEADER com vídeo */
.hero-header {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

#logoescritorio {
    width: 400px;
}

.hero-header video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Conteúdo do Header */
.header-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.logo {
    width: 200px;
    max-width: 100%;
    z-index: 1;
}

/* Idiomas no canto superior direito */
.languages {
    position: absolute;
    top: 20px;
    right: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.languages a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 0.9rem;
}

.languages a:hover {
    background: #B9A45F;
    color: #000;
}

/* Estilo geral */
.areas-container {
    background-color: #111;
    color: white;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.areas-container h2 {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: bolder;
    font-family: serif;
}

/* Wrapper com as setas */
.carousel-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: auto;
  padding: 0 20px;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.card {
  flex: 0 0 20%;
  max-width: 20%;
  box-sizing: border-box;
  margin: 10px;
  background: #1c1c1c;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
}

@media (max-width: 1024px) {
  .card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}



.card i {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    transition: color 0.2s;
}

.card p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold);
}

.card:hover {
    transform: translateY(-8px);
    background-color: #222;
}

.card:hover i {
    color: #ffd700;
}




.meio {
    margin: 0;
    font-family: Arial, sans-serif;
    background: rgb(249, 238, 218);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: minmax(260px, var(--panel-max)) 1fr;
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: start;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .info-panel {
        margin-inline: auto;
    }

    .languages {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 150px;
    }

    .languages a {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

.info-panel {
    max-width: var(--panel-max);
    width: 100%;
    font-size: 1rem;
    color: var(--text-mid);
    text-transform: uppercase;
}

.info-panel h1 {
    font-weight: bold;
    font-family: serif;
    font-size: 1.4rem;
    color: var(--text-dark);
}

#estado-nome {
    margin: 0 0 .25rem 0;
    font-weight: bold;
    font-family: serif;
    color: var(--gold-strong);
    text-transform: uppercase;
}

#proc-qtd {
    margin-top: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--gold-strong);
}

#cidades-list {
    margin-top: 10px;
    color: #000;
    list-style: none;
    padding-left: 0;
}

#cidades-list li {
    margin-top: 20px;
    font-weight: 500;
    font-size: 1.1rem;
}


.cidade {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
}

.quantidade {
    display: block;
    margin-top: 4px;
    margin-left: 1.3rem;
    /* Alinha com o texto da cidade */
    color: #000;
    font-size: 1rem;
    text-align: left;
    font-weight: 400;
}



.bolinha {
    width: 8px;
    height: 8px;
    background-color: var(--gold-strong);
    border-radius: 50%;
    display: inline-block;
}

.mapa {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin-inline: auto;
    line-height: 0;
}

.mapa img {
    width: 100%;
    height: auto;
    display: block;
}

.marker {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--gold-strong);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: transform .15s ease;
}

.marker:hover:not(.is-active) {
    background: var(--gold-strong);
    transform: translate(-50%, -50%) scale(1.15);
}

.marker.is-active {
    background: var(--gold-strong);
    transform: translate(-50%, -50%) scale(1.2);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #000;
    color: #d1b56c;
    padding: 30px;
    font-family: Arial, sans-serif;
}

/* footer {
  background-image: url('img/dourado.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
} */


#logoti {
    max-width: 40%;
    height: auto;
}

.icon {
    text-decoration: none;
    color: #d1b56c;
}

.footer-left,
.footer-right {
    width: 100%;
    max-width: 45%;
}

@media (max-width: 768px) {

    .footer-left,
    .footer-right {
        max-width: 100%;
    }

    .footer-right {
        margin-top: 20px;
    }
}

.footer-left .logo {
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
    font-size: 1.8rem;
    margin: 0 0 10px;
    color: #d1b56c;
}

.footer-left p {
    margin: 5px 0;
    color: #d1b56c;
}

.footer-right .title {
    font-style: italic;
    margin-bottom: 10px;
    color: #d1b56c;
}

.footer-right p {
    margin: 5px 0;
    font-style: italic;
    color: #d1b56c;
}

.social-icons a {
    text-decoration: none;
    color: #d1b56c;
    font-size: 1.5rem;
    margin-right: 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fff;
}

.footer-column ul li a {
  color: inherit; /* usa a cor padrão do texto (ex: branco ou dourado) */
  text-decoration: none; /* remove o sublinhado */
}

.footer-column ul li a:hover {
  text-decoration: underline; /* opcional: sublinhado ao passar o mouse */
  color: #d4af37; /* opcional: tom dourado no hover */
}

.footer-column ul li a:visited {
  color: inherit;
  text-decoration: none;
}


