/* Layout principal */
.container-principal {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

/* Coluna esquerda - 30% */
.coluna-esquerda {
  position: relative;
  width: 30%;
  height: 100vh;
}

.logo-site {
  position: absolute;
  top: 2vh;
  left: 0.5vw;
  width: 12vw;
  max-width: 16vw;
  min-width: 8vw;
  height: auto;
  z-index: 3;
}

.imagem-esquerda {
  position: absolute;
  top: -2vh;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: contain;
  object-position: left top;
  z-index: 2;
}

.assinatura-aline {
  position: absolute;
  left: 52%;
  bottom: -4vh;
  transform: translateX(-50%);
  width: 80%;
  height: auto;
  z-index: 4;
  padding: 0;
  border-radius: 15px;
}

/* Coluna direita - 70% */
.coluna-direita {
  position: relative;
  width: 70%;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
}

.linha-vertical {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100vh;
  background-color: var(--primary-transparent-medium);
  z-index: 4;
}

/* Headline */
.headline-exclusiva {
  margin-top: 2vh;
  margin-bottom: 3vh;
  width: 100%;
  font-family: 'Cormorant Garamond', serif; 
  font-weight: 600; 
  font-style: normal;
  line-height: 1.5; 
  letter-spacing: 0.3px;
}

.headline-linha {
  display: block; 
  font-size: calc(2.5vw + 3px);
  background-image: linear-gradient(90deg, 
                var(--primary-color) 40%, 
                var(--primary-light) 45%, 
                var(--primary-color) 50%, 
                var(--primary-color) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: suaveBrilho 10s linear infinite;
  white-space: nowrap;
}

.headline-linha-2 {
  margin-top: -5px;
  animation-delay: 0.5s;
}