:root {
  --color-dark-blue: #1a1a40;
  --color-accent-yellow: #ffd700;
  --color-text-light: #e0e0e0;
  --gradient-start: #1a1a40;
  --gradient-end: #1a1a40;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

 a{
  color: var(--color-text-light);
  text-decoration: none;
  transition: all .5s;
 }

body {
  font-family: "Roboto", sans-serif;
  color: var(--color-text-light);
  background-color: var(--color-dark-blue);
  position: relative;
}


.page-wrapper {
  position: relative;
  min-width: 100%;
  max-width: 1440px;
  min-height: 100vh;
  overflow: hidden;
}

 .header{
  width: 100%;
  max-width: 1440px;
  min-height: 100%;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  z-index: 5;
 }

 .header .header-mobile{
  max-width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  padding: .5rem;
  transition: .3s ease-in-out;
  /*  Here */
 }

 
  .header .header-mobile .nav-links{
    width: 100%;
    height: 100%;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  .header .header-mobile .nav-links a:hover{
    color: var(--color-accent-yellow);
  }

  .header .header-mobile .nav-links .contact-button a{
    color: var(--color-accent-yellow);
    border: 1px solid;
    border-radius: 10px;
    max-width: 100%;
    min-height: 100%;
    padding: .4rem;


  }

  .header .header-mobile .nav-links .contact-button a:hover{
    color: var(--color-dark-blue);
    border: 1px solid var(--color-accent-yellow);
    border-radius: 10px;
    max-width: 100%;
    min-height: 100%;
    padding: .4rem;
    background-color: var(--color-accent-yellow);

  }



.main-content {
  width: 100vw;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  margin: 0 auto;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Wrapper para título + descrição + imagem */
.title-image-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  
}

/* Bloco de texto com título e descrição */
.text-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Título */
.main-title {
  font-family: "Playfair Display", serif;
  font-size: 10vw;
  line-height: 0.9;
  color: var(--color-accent-yellow);
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.main-title .dot {
  color: var(--color-accent-yellow);
  font-size: 0.8em;
  vertical-align: super;
}

.main-description {
  margin-top: 50px;
  max-width: 720px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-light);
 }


/* Imagem */
.central-image-wrapper {
  width: 100%;
  max-width: 400px;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  object-fit: cover;
  object-position: center center;
  filter: drop-shadow(var(--color-accent-yellow) 0px 10px 4px);
}


.central-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  clip-path: ellipse(50% 50% at 50% 50%);
}

.image-arch-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-accent-yellow);
  border-radius: 50% / 100% 100% 0 0;
  border-bottom: none;
  box-sizing: border-box;
  pointer-events: none;
}

.circular-text {
  width: 120px;
  height: 120px;
  z-index: 3;
  margin-left: auto;
  margin-right: 80px;
}

.circular-text svg {
  width: 100%;
  height: 100%;
}

.circular-text text {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header,
.main-title,
.main-description,
.central-image-wrapper,
.circular-text {
  opacity: 0;
  transform: translateY(20px);
}

body.page-loaded .header {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

body.page-loaded .main-title {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.7s;
}

body.page-loaded .main-description {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.8s;
}

body.page-loaded .central-image-wrapper {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.9s;
}

body.page-loaded .circular-text {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 1.7s;
}

.footer {
  width: 100%;
  padding: 20px 0;
  background: transparent;
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.85rem;
}

.footer-content p {
  margin: 5px 0;
}

.footer-content a {
  color: var(--color-accent-yellow);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: #fff;
}
