:root {
  --blu: #0c5f9e;
  --arancio: #f19404;
  --bianco: #fff;
  --grigio: #f5f5f5;
  --font: "Roboto", "Segoe UI", "Arial", sans-serif;
  --font-titoli: "Montserrat", "Arial", sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--grigio);
  color: #222;
}

h1,
h2,
h3,
.cta-btn {
  font-family: var(--font-titoli);
  letter-spacing: -1px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* HERO */
.hero {
  position: relative;
  background: var(--blu);
  color: var(--bianco);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(12, 95, 158, 0.1);
}
.hero.gradient-bg {
  background: linear-gradient(120deg, #0c5f9e 60%, #f19404 100%);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 600px;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(12, 95, 158, 0.1);
}
.hero .subtitle {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 30px;
}
.hero .highlight {
  color: var(--arancio);
  font-style: italic;
}
.cta-btn {
  background: var(--arancio);
  color: var(--bianco);
  padding: 16px 32px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  display: inline-block;
  margin-top: 10px;
  box-shadow: 0 4px 16px rgba(241, 148, 4, 0.1);
}
.cta-btn:hover {
  background: #d87d02;
  box-shadow: 0 8px 32px rgba(241, 148, 4, 0.18);
  transform: translateY(-2px) scale(1.04);
}
.hero-image img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--bianco);
  box-shadow: 0 8px 32px rgba(12, 95, 158, 0.15);
  transition: box-shadow 0.3s;
}
.hero-image img:hover {
  box-shadow: 0 16px 48px rgba(12, 95, 158, 0.22);
}
.hero-bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.13;
  pointer-events: none;
}
.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SEZIONI ALTERNATE CON IMMAGINI */
.section-flex {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: space-between;
}
.section-img {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(12, 95, 158, 0.13),
    0 2px 16px rgba(241, 148, 4, 0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}
.section-img img:hover {
  box-shadow: 0 16px 48px rgba(241, 148, 4, 0.18);
  transform: scale(1.03) rotate(-1deg);
}
.section-text {
  flex: 2 1 400px;
}
.section-img-right .section-img {
  order: 2;
}
.section-img-right .section-text {
  order: 1;
}
.section-img-left .section-img {
  order: 1;
}
.section-img-left .section-text {
  order: 2;
}

section {
  background: var(--bianco);
  margin-bottom: 0;
  box-shadow: 0 2px 16px rgba(12, 95, 158, 0.04);
  position: relative;
  z-index: 2;
}
section.blu {
  background: linear-gradient(120deg, #0c5f9e 80%, #f19404 100%);
  color: var(--bianco);
}
section .subtitle {
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 900;
  line-height: 1.1;
}
.orange {
  color: var(--arancio);
}
.icon-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.icon-list li {
  font-size: 1.15rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(241, 148, 4, 0.06);
  border-radius: 18px;
  padding: 8px 16px;
  box-shadow: 0 2px 8px rgba(12, 95, 158, 0.04);
  transition: background 0.2s;
}
.icon-list li:hover {
  background: rgba(241, 148, 4, 0.18);
}
.icon-list.white li {
  color: var(--bianco);
  background: rgba(255, 255, 255, 0.08);
}
.icon-list i {
  color: var(--arancio);
  font-size: 1.3em;
  min-width: 28px;
}

section.cta-arancio {
  background: linear-gradient(100deg, #f19404 70%, #e07c00 100%);
  color: var(--bianco);
  text-align: center;
  padding: 60px 20px;
  box-shadow: 0 8px 32px rgba(241, 148, 4, 0.1);
}

.cta-arancio p {
  color: #0c3556;
  font-family: var(--font-titoli);
  font-size: 1.15rem;
  font-weight: 300;
  margin: 0 auto 32px auto;
  max-width: 600px;
  border-radius: 18px;
  padding: 12px 18px 10px 18px;
}

section.cta-arancio .cta-btn.white {
  background: var(--blu);
  color: var(--bianco);
  margin-top: 20px;
}
section.cta-arancio .cta-btn.white:hover {
  background: #094a7a;
}
.contatti {
  margin-top: 18px;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  gap: 30px;
}
footer {
  background: var(--blu);
  color: var(--bianco);
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
  box-shadow: 0 -2px 16px rgba(12, 95, 158, 0.08);
}

/* ANIMAZIONI */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
  .section-flex {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .hero-image img {
    margin: 0 auto;
  }
  .section-flex {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .section-img,
  .section-text {
    order: unset !important;
  }
  .section-img img {
    max-width: 90vw;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 30px 8px;
  }
  h2 {
    font-size: 1.3rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-img img {
    border-radius: 18px;
  }
}

.logo-jobempower {
  height: 54px;
  width: auto;
  margin-right: 32px;
  display: block;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo-box {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.footer-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.logo-jobempower-footer {
  height: 38px;
  width: auto;
  margin-right: 18px;
  display: block;
}
.footer-info {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
  flex: 2 1 300px;
}
.footer-copy {
  font-size: 0.95rem;
  color: #b0c8e6;
  align-self: flex-end;
  flex: 1 1 120px;
  text-align: right;
}

@media (max-width: 900px) {
  .header-flex {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
  .logo-jobempower {
    margin: 0 auto 12px auto;
  }
  .footer-flex {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .footer-copy {
    text-align: center;
    align-self: center;
  }
}

.logo-box,
.footer-logo {
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 16px rgba(12, 95, 158, 0.13);
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.logo-jobempower,
.logo-jobempower-footer {
  height: 54px;
  width: auto;
  display: block;
  margin: 0;
}
.logo-jobempower-footer {
  height: 38px;
}

/* HERO LAYOUT DUE COLONNE */
.hero .container.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  text-align: left;
}
.hero-left {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero-left .logo-box {
  margin-bottom: 10px;
}
.hero-left .payoff {
  font-size: 1.1rem;
  color: var(--arancio);
  font-style: italic;
  margin-bottom: 0;
  margin-top: 0;
}
.hero-left h1 {
  margin: 0 0 10px 0;
}
.hero-left .cta-btn {
  margin-top: 18px;
}
.hero-right {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-right img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 16px 48px rgba(12, 95, 158, 0.22),
    0 2px 16px rgba(241, 148, 4, 0.1);
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.hero-right img:hover {
  box-shadow: 0 24px 64px rgba(12, 95, 158, 0.28);
  transform: scale(1.03);
}

/* Ombre titoli accentuate */
h1,
h2 {
  text-shadow: 0 4px 24px rgba(12, 95, 158, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .hero .container.hero-flex {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .hero-left,
  .hero-right {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .hero-right img {
    width: 70vw;
    max-width: 320px;
    height: auto;
  }
  .logo-box {
    margin: 0 auto 12px auto;
  }
}

.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 18px;
}
.footer-social a {
  color: #fff;
  background: var(--blu);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 2px 8px rgba(12, 95, 158, 0.1);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--arancio);
  color: #fff;
  transform: scale(1.08);
}

.whatsapp-fixed {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1000;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 6px 24px rgba(12, 95, 158, 0.18);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-fixed:hover {
  background: #1ebe5d;
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(12, 95, 158, 0.22);
}

@media (max-width: 600px) {
  .whatsapp-fixed {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

.cta-dates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 colonne fisse */
  gap: 22px;
  margin: 38px 0 18px 0;
  justify-items: center;
  align-items: stretch;
}

.cta-date-btn {
  background: #fff;
  color: var(--blu);
  border: 2.5px solid var(--blu);
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(12, 95, 158, 0.1);
  padding: 22px 28px 18px 28px;
  min-width: 180px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: var(--font-titoli);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  transition: border 0.2s, box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.2s;
  cursor: pointer;
  position: relative;
}
.cta-date-btn:hover {
  border-color: var(--arancio);
  box-shadow: 0 24px 48px 0 rgba(12, 95, 158, 0.18),
    0 8px 32px 0 rgba(241, 148, 4, 0.18);
  transform: translateY(-12px) scale(1.05);
}

.cta-date {
  font-size: 1.13rem;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  color: var(--blu);
}
.cta-time {
  font-size: 1.01rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--arancio);
}
.cta-action {
  background: var(--arancio);
  color: #fff;
  border-radius: 18px;
  padding: 6px 18px;
  font-size: 0.98rem;
  font-weight: 700;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(12, 95, 158, 0.08);
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.cta-date-btn:hover .cta-action {
  background: var(--blu);
  color: #fff;
}
.cta-date-btn *,
.cta-date-btn *:hover {
  text-decoration: none !important;
}

.cta-partner-logo {
  display: block;
  margin: 0.5em auto 0.7em auto;
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(12, 95, 158, 0.1);
  background: #fff;
}

.logo-partner {
  height: 50px;
  margin: auto;
  font-size: 0.7em;
}
.cta-city {
  text-transform: uppercase;
}

.cta-partner-logo-rect {
  display: block;
  margin: 0.5em auto 0.7em auto;
  width: 150px;
  height: auto;
  object-fit: contain;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 1100px) {
  .cta-dates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 700px) {
  .cta-dates-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cta-date-btn {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    padding: 18px 10px 14px 10px;
  }
  .cta-arancio p {
    font-size: 1.08rem;
    padding: 10px 6px 8px 6px;
  }
}

.contatti a {
  color: white;
  text-decoration: none;
}
.contatti a:hover {
  text-decoration: underline;
}

.small-address {
  font-size: 0.7em;
  color: #666;
  display: block;
  margin-top: 2px;
}
.cta-location-block {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
  text-align: center; /* testo centrato */
  display: flex;
  flex-direction: column;
  align-items: center; /* testo centrato */
  font-family: "Roboto", Arial, sans-serif;
}

.cta-presso {
  font-size: 0.95em;
  color: #888;
  margin-bottom: 0.2em;
  font-family: "Roboto", Arial, sans-serif;
}

.cta-place {
  font-weight: 500;
  font-size: 1.05em;
  margin-bottom: 0.1em;
  font-family: "Roboto", Arial, sans-serif;
}

.cta-location {
  font-size: 0.95em;
  color: #444;
  font-family: "Roboto", Arial, sans-serif;
}

.cta-city {
  margin-bottom: 1.2em;
  display: block;
}
