/* styles.css */



/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
  font-family: 'Glacial Indifference', Arial, sans-serif;
  background-color: #000;
}

.container {
  display: flex;
  height: 100vh;
}

/* Permite que flex-items encolham sem overflow */
.container > section {
  min-width: 0;
}

/* Coluna esquerda (texto) */
.left {
  flex: 0 0 55%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.left img.logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 2rem;
}

.left .coming-soon {
  font-size: 2.5rem;            /* 42px */
  letter-spacing: 0.3em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.left .year {
  font-size: 2rem;              /* 32px */
  letter-spacing: 0.1em;
  margin: 0.5rem 0 2rem;
}

/* Ícones sociais */
.left .social-icons {
  display: flex;
  gap: 1.5rem;
}

/* Links de ícones */
.left .social-icons a {
  color: #1e90ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.left .social-icons a:hover {
  color: #f2f2f2;
}

/* Tamanho e cor dos SVGs */
.left .social-icons .icon {
  width: 44px;
  height: 44px;
  stroke: #fff;
  fill: none;
}

/* Coluna direita (background image) */
.right {
  flex: 0 0 45%;
  background: url('foto.png') top center / cover no-repeat;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left {
    flex: none;
    width: 100%;
    height: 100vh;
  }

  .right {
    display: none;
  }

  .left img.logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
  }

  .left .coming-soon {
    font-size: 2rem;
    letter-spacing: 0.2em;
  }

  .left .year {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .left .social-icons .icon {
    width: 40px;
    height: 40px;
  }
}
