/* =========================================================
   NUVOLE DI LUOGHI — PAGINA LAVORA CON NOI
   lavora.css
   ========================================================= */


/* =========================================================
   DESKTOP
   ========================================================= */


/* --- BODY --- */

body.lavora-page {
  background-color: black;
  min-height: 100vh;
}


/* --- CONTENUTO --- */

.lavora-main {
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 180px 40px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lavora-content {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lavora-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;
}

.lavora-box h1 {
  margin: 0 0 22px 0;
  color: white;
  font-family: "Century Gothic", "Gill Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 42px;
  line-height: 1.1;
}

.lavora-box .sottotitolo {
  margin: 0 0 28px 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Century Gothic", "Gill Sans", sans-serif;
  font-style: italic;
  font-weight: bold;
  font-size: 21px;
  line-height: 1.5;
}

.lavora-box p {
  margin: 0 0 14px 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Century Gothic", "Gill Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 19px;
  line-height: 1.7;
}

.lavora-box h2 {
  margin: 34px 0 14px 0;
  color: white;
  font-family: "Century Gothic", "Gill Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 1.2;
}

.lavora-box p:last-child {
  margin-bottom: 0;
}

.lavora-box a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.lavora-box a:hover {
  opacity: 0.85;
  border-bottom-color: rgba(255, 255, 255, 0.9);
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 1100px) {

  .lavora-main {
    padding: 170px 30px 50px;
  }

  .lavora-box {
    max-width: 640px;
    padding: 42px 32px;
  }

  .lavora-box h1 {
    font-size: 38px;
  }

  .lavora-box .sottotitolo {
    font-size: 20px;
    line-height: 1.45;
  }

  .lavora-box p {
    font-size: 18px;
    line-height: 1.65;
  }

  .lavora-box h2 {
    font-size: 26px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 768px) {

  /* --- BODY --- */

  body.lavora-page {
    min-height: 100vh;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
  }


  /* --- CONTENUTO --- */

  .lavora-main {
    min-height: 100vh;
    padding: 190px 20px 40px;
    align-items: flex-start;
  }

  .lavora-box {
    max-width: 100%;
    padding: 34px 22px;
    border-radius: 18px;
  }

  .lavora-box h1 {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .lavora-box .sottotitolo {
    font-size: 18px;
    margin-bottom: 22px;
    line-height: 1.45;
  }

  .lavora-box p {
    font-size: 16px;
    line-height: 1.6;
  }

  .lavora-box h2 {
    font-size: 24px;
    margin-top: 28px;
  }


  /* --- FOOTER (nascosto) --- */

  .lavora-page .footer-text {
    display: none;
  }
}