/* css/crystalclear.css */

/* Fuentes */
@font-face {
  font-family: 'AdobeCleanBold';
  src: url('/fonts/AdobeCleanBold.otf') format('opentype');
  font-weight: bold;
}
@font-face {
  font-family: 'AdobeCleanRegular';
  src: url('/fonts/AdobeCleanRegular.otf') format('opentype');
  font-weight: normal;
}

body {
  margin: 0;
  font-family: 'AdobeCleanRegular', sans-serif;
  color: #333;
}

/* Hero interno */
.cc-hero {
  background: #319d70;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
  padding: 4rem 1rem 6rem;
  text-align: center;
}
.cc-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.cc-hero h2 {
  font-family: 'AdobeCleanBold', sans-serif;
  font-size: 3rem;
  margin-bottom: .5rem;
}
.cc-subtitle {
  font-family: 'AdobeCleanRegular', sans-serif;
  font-size: 1.25rem;
  opacity: .9;
  margin-bottom: .5rem;
}
.cc-tagline {
  font-family: 'AdobeCleanRegular', sans-serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.cc-cta {
  display: inline-block;
  background: #fff;
  color: #319d70;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: 'AdobeCleanBold', sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background .3s;
}
.cc-cta:hover {
  background: #f0f0f0;
}

/* Cómo funciona */
.promo-gratuito {
  background: #f9f9fa;
  padding: 4rem 1rem;
}
.promo-gratuito .promo-inner h2,
.promo-gratuito .box h3 {
  font-family: 'AdobeCleanBold', sans-serif;
  color: #04623b;
}
.promo-gratuito .promo-inner p,
.promo-gratuito .box p {
  font-family: 'AdobeCleanRegular', sans-serif;
  color: #333;
}
.promo-boxes {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  width: 280px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.box .icon {
  margin-bottom: 1rem;
}

/* Detalle de ejes */
.cc-details {
  background: #fff;
  padding: 4rem 1rem;
}
.cc-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.cc-details h3 {
  font-family: 'AdobeCleanBold', sans-serif;
  font-size: 2rem;
  color: #04623b;
  margin-bottom: 2rem;
}
/* Grid responsivo */
.cc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.cc-block {
  background: #f9f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform .3s, box-shadow .3s;
}
.cc-block strong {
  display: block;
  font-family: 'AdobeCleanBold', sans-serif;
  font-size: 1.1rem;
  color: #319d70;
  margin-bottom: .5rem;
}
.cc-block p {
  font-family: 'AdobeCleanRegular', sans-serif;
  font-size: .95rem;
  line-height: 1.4;
}
.cc-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Texto adicional */
.cc-more {
  font-family: 'AdobeCleanRegular', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .cc-hero h2 { font-size: 2.5rem; }
  .promo-boxes, .cc-grid {
    gap: 1rem;
  }
  .box, .cc-block {
    width: 100%;
    padding: 1rem;
  }
}
/* Bloque “Transforma tus relaciones” */
.cc-relations {
  background: #f9f9fa;
  padding: 4rem 1rem;
}
.cc-relations .cc-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.cc-relations h3 {
  font-family: 'AdobeCleanBold', sans-serif;
  font-size: 2rem;
  color: #04623b;
  margin-bottom: 1.5rem;
}
.cc-relations-text {
  font-family: 'AdobeCleanRegular', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}
/* Bloque épico final */
.cc-epic {
  background: #04623b;
  color: #fff;
  /* Zigzag suave arriba */
  clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0% 95%);
  padding: 4rem 1rem;
}
.cc-epic .cc-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cc-epic h3 {
  font-family: 'AdobeCleanBold', sans-serif;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.cc-epic-lead {
  font-family: 'AdobeCleanRegular', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.cc-epic-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  max-width: 600px;
  text-align: left;
}
.cc-epic-list li {
  font-family: 'AdobeCleanRegular', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cc-epic-outro {
  font-family: 'AdobeCleanRegular', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .cc-epic h3 { font-size: 1.75rem; }
  .cc-epic-list { max-width: 100%; }
}
