/* prezzi.css - stile tabella e pulsanti */

/* ===== Tabella prezzi elegante ===== */
/* ===== Tabella prezzi con separatore verticale ===== */
.prezzi-table {
  width: 100%;
  border: 1px solid #e6f4fa;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 2rem;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  border-radius: 14px;
  overflow: hidden;
}

.prezzi-table td {
  font-size: 1rem;
  color: #08384d;
  padding: 0.9rem 1.2rem;
  text-align: center;
}

.prezzi-table td:first-child {
  text-align: left;
  border-right: 2px solid #e6f4fa; /* separatore verticale elegante */
}

.prezzi-table td:last-child {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}


.prezzi-table tbody tr:nth-child(even) {
  background-color: #f4f9fc;
}

.prezzi-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.prezzi-table tbody tr {
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.prezzi-table tbody tr:hover {
  background-color: #e6f4fa;
  transform: scale(1.01);
}





.prezzi-table th {
  background: #0b4f6c !important; /* blu principale brand */
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.15rem;
  text-align: center;
  padding: 1rem 1.2rem;
  border-bottom: 2px solid #08384d;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.2); /* leggero effetto elegante */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prezzi-table th:first-child {
  border-right: 2px solid #08384d;
  text-align: left;
}

.prezzi-table th:last-child {
  text-align: center;
}



/* Mobile */
@media (max-width: 768px) {
  .prezzi-table th,
  .prezzi-table td {
    font-size: 1rem;
    padding: 0.7rem 0.85rem;
  }

  .prezzi-table td:first-child {
    border-right: none; /* togli separatore su mobile per compattezza */
  }
}

/* ===== Condizioni e dettagli ultra-compatta ===== */
.condizioni {
  background: transparent;    /* sfondo discreto */
  padding: 1rem 0.8rem;      /* interno ridotto */
  margin-top: 1rem;
  box-shadow: none;
}

.condizioni h2 {
  font-size: 1.35rem;
  color: #0b4f6c;
  margin-bottom: 0.5rem;     /* margine ridotto */
  text-align: left;
}

.condizioni p,
.condizioni ul {
  font-size: 0.93rem;
  line-height: 1.35;         /* righe più serrate */
  color: #08384d;
  margin-bottom: 0.4rem;     /* spazio minimo tra paragrafi */
}

.condizioni ul {
  padding-left: 1rem;
}

.condizioni ul li {
  margin-bottom: 0.2rem;     /* elenco più compatto */
  list-style-type: disc;
}

/* Mobile */
@media (max-width: 768px) {
  .condizioni {
    padding: 0.8rem 0.5rem;
  }

  .condizioni h2 {
    font-size: 1.25rem;
  }

  .condizioni p,
  .condizioni ul li {
    line-height: 1.3;
    margin-bottom: 0.2rem;
  }
}


.action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}


.action-buttons a.btn-primary {
  background-color: var(--primary);  /* #ee9b00; */
}

.action-buttons a.btn-primary:hover {
  background-color: var(--light-blue);   /*   #ca6702;   */
}


/* Mobile - pulsanti più stretti */
@media (max-width: 768px) {
  .action-buttons {
    flex-direction: column;
  }

  .action-buttons a.btn-primary {
    width: 100%;
    text-align: center;
  }

 
}
