* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary: #000000;
  --secondary: #0f0f0f;
  --accent: #ffffff;
  --highlight: #25d366;
  --text: #f1f1f1;
  --shadow-strong: 0 8px 20px rgba(0, 0, 0, 0.5);
}

body {
  background-color: #3e3e3c;
  color: var(--text);
}

.interface {
  max-width: 1200px; /* Tamanho Máximo da Largura */
  margin: 0 auto; /*cima e baixo = 0 e lados toda vez que está em auto ele centraliza no meio tudo */
  animation: fadeIn 1s ease-out;
  padding: 0 5%;
  display: flex;
  justify-content: center;
}

/* COMEÇO DO ESTILO DA SECTION --> HERO */
section .bloco-hero {
  max-width: 465px;
  width: 100%;
  padding-top: 30px;
}

section .bloco-hero img {
  width: 100%;
  box-shadow: var(--shadow-strong);
  border-radius: 15px;
}

/* COMEÇO DO ESTILO DA SECTION --> LINK1 */
section .bloco1 {
  max-width: 465px;
  width: 100%;
  overflow: hidden;
  padding-top: 10px;
}

section .bloco1 img {
  width: 100%;
  border-radius: 20px;
  transition: 0.3s ease;
}

section .bloco1 img:hover {
  transform: translateY(-2px);
}

/* COMEÇO DO ESTILO DA SECTION --> LINK2 */
section .bloco2 {
  max-width: 465px;
  width: 100%;
}

section .bloco2 img {
  width: 100%;
  border-radius: 20px;
  transition: 0.3s ease;
  cursor: pointer;
}

section .bloco2 img:hover {
  transform: translateY(-2px);
}

/* COMEÇO DO ESTILO DA SECTION --> LINK3 */
section .bloco3 {
  max-width: 465px;
  width: 100%;
  padding-top: 23px;
}

section .bloco3 img {
  width: 100%;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

section .bloco3 img:hover {
  transform: translateY(-2px);
}

/* COMEÇO DO ESTILO DA SECTION --> LINK4 */
section .bloco4 {
  max-width: 465px;
  width: 100%;
  cursor: pointer;
  padding-top: 13px;
}

section .bloco4 img {
  width: 100%;
  border-radius: 20px;
  transition: 0.3s ease;
}

section .bloco4 img:hover {
  transform: translateY(-2px);
}

/* COMEÇO DO ESTILO DA SECTION --> LINK5 */
section .bloco5 {
  max-width: 465px;
  width: 100%;
  padding-top: 13px;
  cursor: pointer;
}

section .bloco5 img {
  width: 100%;
  border-radius: 20px;
  transition: 0.3s ease;
}

section .bloco5 img:hover {
  transform: translateY(-2px);
}
.link1 .bloco1,
.link2 .bloco2,
.link3 .bloco3,
.link4 .bloco4,
.link5 .bloco5 {
  position: relative;
  display: inline-block;
}

.btn-pulse-1 {
  bottom: 22px; /* Quanto menos + para baixo */
  right: 40px; /* Quanto menos + para direita */
}

.btn-pulse-2 {
  bottom: 26px; /* Quanto menos + para baixo */
  right: 252px; /* Quanto menos + para direita */
}

.btn-pulse-3 {
  bottom: 24px; /* Quanto menos + para baixo */
  right: 260px; /* Quanto menos + para direita */
}

.btn-pulse-4 {
  bottom: 22px; /* Quanto menos + para baixo */
  right: 40px; /* Quanto menos + para direita */
}

.btn-pulse-5 {
  bottom: 22px; /* Quanto menos + para baixo */
  right: 40px; /* Quanto menos + para direita */
}

span i {
  font-size: 15px;
}

.btn-pulse {
  display: flex;
  align-items: center;
  gap: 8px; /* espaço entre ícone e texto */
  position: absolute;
  padding: 2px 45px;
  border-radius: 999px;
  color: black;
  font-size: 14px;
  font-weight: 600;
  animation: pulse 0.8s infinite;
  background: linear-gradient(to right, #8c6b1f, #b8962e, #9e7c22, #8c6b1f);
}

/* animação */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(140, 107, 31, 0.45);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(140, 107, 31, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(140, 107, 31, 0);
  }
}

/* COMEÇO DO ESTILO DA SECTION --> button-cta */
section.button-cta > .interface {
  max-width: 465px;
  width: 100%;
  padding: 30px 16px; /* padding lateral para mobile */
  align-items: center;
  gap: 4%;
}

.btn-bio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  width: 100%;
  max-width: 320px;

  padding: 13px 28px;
  border-radius: 12px;
  background: linear-gradient(to right, #212020, #030303);
  color: #fff;
  text-decoration: none;

  font-family: Arial, sans-serif;
  box-shadow: var(--shadow-strong);
  transition: 0.3s ease;
}

.btn-bio:hover {
  transform: translateY(-2px);
}

.btn-bio i {
  font-size: 40px;
}

.btn-bio .text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.btn-bio .small {
  font-size: 16px;
  opacity: 0.85;
}

.btn-bio strong {
  font-size: 20px;
}

/* COMEÇO DO ESTILO DA SECTION --> FOOTER */
footer {
  background-color: black;
}

.footer {
  text-align: center;
  padding-top: 1px;
  padding-bottom: 12px;
  font-size: 0.9rem;
}

.opacidade {
  opacity: 0.7;
}

.desenvolvedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.desenvolvedor-logo {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
}

.desenvolvedor img {
  width: 120px;
  height: auto;
}

/* COMEÇO DO ESTILO MENU MOBILE */
.btn-abrir-menu {
  display: none;
}

.btn-abrir-menu i {
  font-size: 38px;
  font-weight: 900;
  cursor: pointer;
}

.menu-mobile .btn-fechar i {
  font-size: 25px;
  cursor: pointer;
}

.menu-mobile {
  background-color: #000000ba;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  width: 0%;
  overflow: hidden; /* Esconde qualquer conteúdo que ultrapasse o tamanho do elemento */
  transition: 0.3s;
}

.menu-mobile.abrir-menu {
  width: 70%;
}

.menu-mobile.abrir-menu ~ .overlay-menu {
  display: block;
}

.menu-mobile .btn-fechar {
  padding: 20px 5%;
}

.menu-mobile nav ul {
  text-align: right;
}

.menu-mobile nav ul li a {
  color: #f1f1f1;
  font-size: 18px;
  padding: 15px 4%; /* cima e baixo 20px & lados 4% */
  display: block; /* Faz o elemento ocupar toda a largura disponível e quebrar linha */
  text-transform: capitalize;
  text-decoration: none;
}

.menu-mobile nav ul li a:hover {
  background-color: #9e7c22;
}

.overlay-menu {
  background-color: #000000b1;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 88888;
  display: none;
}

/* Modal da Galeria de fotos */
.modalGaleria {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3e3e3c;
  z-index: 1000;
  overflow-y: auto;
}

.modalGaleria-interface-wrapper {
  max-width: 1000px; /* largura máxima */
  margin: 0 auto; /* centraliza */
}

.modalGaleria-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #333;
}

.close-modalGaleria {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
}

/* COMEÇO DO ESTILO DA SECTION --> Galeria de Fotos */
section.galeria-de-fotos {
  padding: 2% 0;
  transition: all 0.2s linear;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.gallery a {
  height: 300px;
  margin: 20px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 5px #000;
}

.gallery a img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery a img:hover {
  transform: scale(1.2);
}

.bnt-rodape-modal {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 15px;
}

.bnt-rodape-modal i {
  font-size: 15px;
}

.bnt-rodape-modal a {
  font-size: 10px;
  color: white;
  text-decoration: none;
  font-style: italic;
  cursor: pointer;
  border: white solid 1px;
  padding: 5px 8px;
  border-radius: 15px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
