/* =========================================================
   NUVOLE DI LUOGHI — PAGINA DOWNLOAD
   download.css
   ========================================================= */


/* =========================================================
   DESKTOP
   ========================================================= */


/* --- BODY --- */

body.download-page {
  background-color: black;
  min-height: 100vh;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

/* --- CONTENUTO --- */

.download-main {
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 180px 40px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-content {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-box {
  width: 100%;
  max-width: 700px;
  padding: 50px 40px;
  border-radius: 22px;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.08);
  text-align: center;
  box-sizing: border-box;
}

.download-smile {
  margin-bottom: 22px;
  color: var(--color-white);
  font-family: var(--font-main);
  font-style: normal;
  font-weight: bold;
  font-size: 58px;
  line-height: 1;
}

.download-box h1 {
  margin: 0 0 22px 0;
  color: var(--color-white);
  font-family: var(--font-main);
  font-style: normal;
  font-weight: bold;
  font-size: 42px;
  line-height: 1.1;
}

.download-box p {
  margin: 0 0 14px 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-main);
  font-style: normal;
  font-weight: normal;
  font-size: 19px;
  line-height: 1.7;
}

.download-box p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 1100px) {

  .download-main {
    padding: 170px 30px 50px;
  }

  .download-box {
    max-width: 640px;
    padding: 42px 32px;
  }

  .download-smile {
    font-size: 52px;
  }

  .download-box h1 {
    font-size: 38px;
  }

  .download-box p {
    font-size: 18px;
    line-height: 1.65;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 768px) {

  /* --- BODY --- */

  body.download-page {
    min-height: 100vh;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
  }


  /* --- CONTENUTO --- */

  .download-main {
    min-height: 100vh;
    padding: 190px 20px 40px;
    align-items: flex-start;
  }

  .download-box {
    max-width: 100%;
    padding: 34px 22px;
    border-radius: 18px;
  }

  .download-smile {
    font-size: 46px;
    margin-bottom: 18px;
  }

  .download-box h1 {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .download-box p {
    font-size: 16px;
    line-height: 1.6;
  }


  /* --- FOOTER (nascosto) --- */

  .footer-text {
    display: none;
  }
}