/* -------------------------------------------------------------------------- */
/* RESET E BASE */
/* -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  background: #9DFCA7;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden; /* Evita barra de rolagem horizontal em desktop */
}

/* -------------------------------------------------------------------------- */
/* MOCKUP DESKTOP */
/* -------------------------------------------------------------------------- */

#phone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#phone-mockup {
  width: 350px;
  max-width: 90vw;
  height: 700px;
  max-height: 90vh;
  background-color: #000;
  border-radius: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  border: 6px solid #111;
}

#screen {
  position: absolute;
  top: 20px;
  left: 10px;
  right: 10px;
  bottom: 20px;
  border-radius: 30px;
  overflow: hidden;
  background-color: #fff;
}

#chat-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* -------------------------------------------------------------------------- */
/* RESPONSIVO TABLET */
/* -------------------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  #phone-mockup {
    width: 300px;
    height: 600px;
  }
}




/

/* -------------------------------------------------------------------------- */
/* PRINT */
/* -------------------------------------------------------------------------- */
@media print {
  body {
    background: white;
  }
  #phone-container, #chat-iframe {
    display: none;
  }
}
