/*-----------------------------------*\
  #pages.css - Stili condivisi per le pagine interne
\*-----------------------------------*/

/**
 * Stili comuni per le pagine igiene-orale e sbiancamento
 */


/*-----------------------------------*\
  #PAGE HERO
\*-----------------------------------*/

.page-hero {
  padding: 120px 0 80px;
  text-align: center;
  color: var(--white);
}

.page-hero .section-subtitle {
  color: var(--white_a70);
}

.page-hero .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero .hero-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: var(--fs-5);
  opacity: 0.9;
}


/*-----------------------------------*\
  #BACK LINK
\*-----------------------------------*/

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white_a70);
  margin-bottom: 30px;
  transition: var(--transition-1);
}

.back-link:hover {
  color: var(--white);
}


/*-----------------------------------*\
  #CONTENT SECTION
\*-----------------------------------*/

.content-section {
  padding: 80px 0;
}


/*-----------------------------------*\
  #CONTENT CARD
\*-----------------------------------*/

.content-card {
  background: var(--white);
  border-radius: var(--radius-10);
  padding: 40px;
  box-shadow: var(--shadow-2);
  margin-bottom: 30px;
}

.content-card .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.content-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.content-card .card-title {
  color: var(--charcoal);
  font-size: var(--fs-4);
  margin: 0;
}

.content-card .card-text {
  color: var(--black-coral);
  line-height: 1.8;
}

.content-card .card-list {
  margin-top: 15px;
  padding-left: 0;
}

.content-card .card-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-card .card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-circle);
}


/*-----------------------------------*\
  #HIGHLIGHT BOX
\*-----------------------------------*/

.highlight-box {
  background: linear-gradient(135deg, var(--lavender-web) 0%, var(--cultured) 100%);
  padding: 30px;
  border-radius: 0 var(--radius-10) var(--radius-10) 0;
  margin: 40px 0;
}

.highlight-box .highlight-title {
  color: var(--charcoal);
  font-size: var(--fs-4);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}


/*-----------------------------------*\
  #KEY POINTS GRID
\*-----------------------------------*/

.key-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.key-point-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-8);
  box-shadow: var(--shadow-3);
  transition: var(--transition-1);
}

.key-point-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.key-point-card p {
  margin: 0;
  line-height: 1.7;
}


/*-----------------------------------*\
  #TREATMENT TYPES
\*-----------------------------------*/

.treatment-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.treatment-card {
  background: linear-gradient(135deg, var(--lavender-web) 0%, var(--white) 100%);
  padding: 30px;
  border-radius: var(--radius-10);
  text-align: center;
  transition: var(--transition-1);
  border: 2px solid transparent;
}

.treatment-card:hover {
  transform: translateY(-5px);
}

.treatment-card .treatment-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  box-shadow: var(--shadow-3);
}

.treatment-card .treatment-title {
  color: var(--charcoal);
  font-size: var(--fs-5);
  margin-bottom: 10px;
}

.treatment-card .treatment-text {
  color: var(--black-coral);
  font-size: 1.5rem;
}


/*-----------------------------------*\
  #INFO BOX
\*-----------------------------------*/

.info-box {
  background: var(--cultured);
  border-radius: var(--radius-10);
  padding: 30px;
  margin: 30px 0;
}

.info-box .info-title {
  color: var(--charcoal);
  font-size: var(--fs-5);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}


/*-----------------------------------*\
  #ACTIVE INGREDIENTS
\*-----------------------------------*/

.active-ingredients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.ingredient-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-8);
  box-shadow: var(--shadow-3);
}

.ingredient-card .ingredient-name {
  font-weight: var(--fw-700);
  margin-bottom: 8px;
}


/*-----------------------------------*\
  #TIPS LIST
\*-----------------------------------*/

.tips-list {
  margin-top: 20px;
}

.tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 15px;
  background: var(--white);
  border-radius: var(--radius-8);
  box-shadow: var(--shadow-3);
}

.tips-list li ion-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 3px;
}


/*-----------------------------------*\
  #RESULT HIGHLIGHT
\*-----------------------------------*/

.result-highlight {
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-10);
  text-align: center;
  margin-top: 40px;
}

.result-highlight .result-number {
  font-size: 3rem;
  font-weight: var(--fw-700);
  margin-bottom: 10px;
}

.result-highlight .result-text {
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}


/*-----------------------------------*\
  #CTA SECTION
\*-----------------------------------*/

.cta-section {
  padding: 60px 0;
  text-align: center;
  color: var(--charcoal);
}

.cta-section .cta-title {
  color: var(--charcoal);
  margin-bottom: 15px;
}

.cta-section .cta-text {
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--black-coral);
}

.cta-section .btn-cta {
  color: var(--white);
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-700);
  display: inline-block;
  transition: var(--transition-1);
}

.cta-section .btn-cta:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}


/*-----------------------------------*\
  #SECTION TITLE CENTERED
\*-----------------------------------*/

.section-title-centered {
  text-align: center;
  margin: 50px 0 30px;
}
