@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --cor-principal: #A62055; 
  --cor-fundo: #ededed;
  --cor-texto-p: #666666;
}

body {
  background-color: var(--cor-fundo);
  color: var(--cor-principal);
  overflow-x: hidden; 
}


.page-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  justify-content: space-between;
}


.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  z-index: 10;
}

.logo {
  width: 190px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 23px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 700;
}

p {
  font-size: 1.1rem;
  color: var(--cor-texto-p);
  margin-bottom: 10px;
}

.instagram-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cor-principal);
  text-decoration: none;
  transition: opacity 0.3s ease;
  background:#d9d9d9;
  padding:12px 24px;
  border-radius: 30px;
}

.instagram-link:hover {
  opacity: 0.7;
}


.decoration {
  height: 100vh;
  width: auto;
  display: flex;
  align-items: center;
}

.decoration img {
  height: 100%; 
  width: auto;
  object-fit: cover;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}


@media (max-width: 768px) {
  .page-container {
      flex-direction: column;
      justify-content: space-between; 
      height: 100vh;
  }


  .desktop-only {
      display: none;
  }

  .mobile-only {
      display: block;
      width: 100%;
  }

  .mobile-only img {
      width: 100%;
      height: auto;
      display: block;
  }


  .content {
      padding: 40px 30px;
      flex: 1;
  }

  .logo {
      width: 140px;
  }

  h1 {
      font-size: 1.4rem;
  }

  p {
      font-size: 1rem;
  }
}