/* Aceleracion page styles (modified) */

/* TITULO / TITULOPRO */
.titulopro-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 60px;
  padding: 50px 50px;
}

.titulopro-text {
  flex: 1;
  min-width: 650px;
}

.titulopro-text p {
  font-size: 2rem;
  color: #55c9cc;
  margin-bottom: 30px;
  font-weight: 600;
  max-width: 700px;
}

.titulopro-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.titulopro-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0px 20px 40px rgba(0,0,0,0.1);
  object-fit: cover;
}

.titulopro-text h1 {
  margin-top: 0px;
  font-size: 3.8rem;
  font-weight: 400;
  color: #444e56;
  line-height: 1.2;
}

.titulopro-text h1 span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #55c9cc;
  font-weight: 400;
  font-size: 90px;
  display: inline-block;
  margin-top: 5px;
}

/* DESARROLLO */
.desarrollo {
  background-color: #ffa500;
  padding: 60px 60px;
  text-align: center;
}

.desarrollo-top h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-top: 0px;
  margin-bottom: 40px;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}

.desarrollo-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Section variants and heading helpers */
#desarrollo-turquesa { background-color: #55c9cc; }

/* Optional helper to color h2 in turquoise when needed */
.texto-turquesa h2 { color: #55c9cc; }

#letra-turquesa h2 { color: #55c9cc; }
#letra-blanca h2 { color: #ffffff; }
#letra-blanca ul { color: #ffffff; }

/* ===================== CARDS (updated) ===================== */
/* Shared layout for both .card (orange) and .card-turquesa (cyan) */
.card,
.card-turquesa {
  /* ring colors (overridden in cyan variant) */
  --ring1: #ffa500;  /* light ring (orange) */
  --ring2: #a72e02;  /* dark ring (orange) */

  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr; /* icon + title inline */
  grid-auto-rows: auto;
  column-gap: 16px;
  row-gap: 14px;

  background: #fff;
  padding: 26px 28px 30px;
  border-radius: 20px;

  /* double outline + subtle elevation */
  box-shadow:
    0 0 0 4px var(--ring1),
    0 0 0 10px var(--ring2),
    0 10px 24px rgba(0,0,0,0.08);

  text-align: left;
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover lift */
.card:hover,
.card-turquesa:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 4px var(--ring1),
    0 0 0 10px var(--ring2),
    0 16px 36px rgba(0,0,0,0.12);
}

/* Icon + title on one row */
.card > .icon,
.card-turquesa > .icon {
  grid-column: 1;
  grid-row: 1;
  width: 56px;
  height: 56px;
  margin: 0; /* override any previous bottom margins */
  object-fit: contain;
}

.card > h3,
.card-turquesa > h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #444e56;
  line-height: 1.2;
}

/* Body text and list span full width below header row */
.card > p,
.card-turquesa > p,
.card .features-list,
.card-turquesa .features-list {
  grid-column: 1 / -1;
}

/* Body copy spacing */
.card > p,
.card-turquesa > p {
  margin-top: 6px;
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #000000;
  line-height: 1.6;
}

/* Checklist tweaks inside cards */
.card .features-list,
.card-turquesa .features-list {
  max-width: none; /* allow full card width */
  text-align: left;
  margin: 0;
  padding: 0;
}

.card .features-list li,
.card-turquesa .features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.card .features-list img,
.card-turquesa .features-list img {
  width: 22px;
  height: 22px;
  margin-right: 12px;
  flex-shrink: 0;
}

/* Default max widths (kept similar to original) */
.card { max-width: 400px; }
.card-turquesa { max-width: 800px; }

/* Cyan / turquesa variant uses cyan rings */
.card-turquesa,
#card-turquesa {
  --ring1: #55c9cc;  /* light cyan ring */
  --ring2: #035d5c;  /* dark cyan ring */
}

/* Force size per design on larger screens */
@media (min-width: 769px) {
  /* Orange section cards */
  .desarrollo:not(#desarrollo-turquesa) .card,
  .desarrollo > .card {
    max-width: 500px;
  }

  /* Cyan / turquesa cards (use both class and id to match markup) */
  .card-turquesa,
  #card-turquesa {
    max-width: 810px;
  }
}

/* FEATURES / CHECKLIST (global outside cards) */
.features-section {
  padding: 60px 20px;
  text-align: center;
  font-family: sans-serif;
}

.features-section h2{
  color: #ffa500;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.features-columns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.features-list {
  list-style: none;
  padding: 0;
  max-width: 480px;
  text-align: left;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.6;
}

.desarrollo {
  background-color: #ffa500;
  padding: 30px 30px;
  text-align: center;
}

.features-list img {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  flex-shrink: 0;
}

/* MEMBRESIA / REPRESENTACION */
.membresia {
  background-color: #55c9cc;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin: 50px;
  border-radius: 10px;
}

.titulo-membresia {
    max-width: 50%;
    padding: 40px;
}

.lista-membresia {
  list-style: none;
  min-width: 40%;
  line-height: 40px;
  text-align: left;
  padding: 40px;
}

.titulo-membresia .etiqueta {
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 20px;
  margin-left: 30px;
  text-transform: uppercase;
}

.titulo-membresia h3 {
    font-size: 3.8rem;
    font-weight: 400;
    color: #444e56; 
    text-align: center;
    margin-bottom: 0;
    line-height: 5rem;
}

.titulo-membresia h3 span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #ffffff;
  font-weight: 400;
  font-size: 90px;
  display: inline-block;
}

.titulo-membresia h4 {
  color: #444e56;
  font-size: 1.6rem;
  font-weight: 900;
  display: block;
  word-wrap: break-word;
  margin: 40px;
}

.lista-membresia h5 {
  color: #444e56;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 900;
  display: block;
  margin: 10px;
}

.lista-membresia p {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.6;
  margin-top: 0;
}

.lista-membresia li:hover {
  border-left: 3px solid #444e56;
  padding-left: 20px;
}

.lista-membresia li { 
  transition: border-left 0.3s ease;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background-color: #55c9cc;
  color: #ffffff;
  padding: 12px 24px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

#btn-blanco {
  background-color: #ffffff;
  color: #444e56;
  align-self: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#btn-blanco:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

/* RESPONSIVE (mobile adjustments used by this page) */
@media (max-width: 768px) {
  .titulopro-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .titulopro-text h1 {
  font-size: 2.3rem;
  font-weight: 400;
  color: #444e56;
  line-height: 1.2;
}

.titulopro-text h1 span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #55c9cc;
  font-weight: 400;
  font-size: 70px;
  display: inline-block;
  margin-top: 5px;
}

  .titulopro-text {
    min-width: auto;
  }

  .titulopro-image img {
    max-width: 90%;
  }

  .desarrollo-top h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-top: 0px;
  margin-bottom: 40px;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}

 .desarrollo-top-blanco h2 {
  font-size: 2.2rem;
  color: #ffa500;
  margin-top: 0px;
  margin-bottom: 40px;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}

  /* Cards: grid compacts on mobile */
  .card,
  .card-turquesa {
    grid-template-columns: 44px 1fr;
    padding: 22px;
    border-radius: 16px;
  }

  .card > .icon,
  .card-turquesa > .icon {
    width: 60px;
    height: 60px;
  }

  .card > h3,
  .card-turquesa > h3 {
    font-size: 1.5rem;
  }

  .membresia {
    flex-direction: column;
    margin: 40px 20px;
    padding: 30px 20px;
    gap: 40px;
  }

  .titulo-membresia,
  .lista-membresia {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    padding: 0;
  }

  .titulo-membresia {
    text-align: center; 
  }

  .titulo-membresia h3 {
    font-size: 2.8rem;
    line-height: 1.2;
  }

  .titulo-membresia h3 span {
    font-size: 3rem;
  }

  .lista-membresia li:hover {
    border-left: none;
    padding-left: 0;
  }
}