.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Icono circular */
.btn-outline .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e5eff; /* azul del icono */
  color: #fff;
  transition: all 0.3s ease;
}

/* Hover */
.btn-outline:hover {
  background-color: #ffffff;
  color: #0b1a33; /* azul oscuro del fondo */
}

/* Cambiar icono en hover */
.btn-outline:hover .icon {
  background: #0b1a33;
  color: #ffffff;
}

/* Arcos superiores */
.arco-img img {
    width: 100%;
    height: 800px;
    object-fit: cover;

    clip-path: ellipse(50% 100% at 50% 100%);
}

/* Linea abajo de los titulos pequeños roja */
.mi-linea-r {
	display: inline-block;
    border-bottom: 2px solid #813131;
    padding-bottom: 6px;
}

/* Linea abajo de los titulos pequeños blanca */
.mi-linea-b {
    width: fit-content;
    border-bottom: 2px solid #fcf8f0;
    padding-bottom: 6px;
}

/* Linea abajo de los titulos pequeños blanca centrada */
.mi-linea-c {
    display: table;
    margin: 0 auto;
    border-bottom: 2px solid #fcf8f0;
    padding-bottom: 6px;
}

/* Sección arcos completa (no se usa) */
.cycles-section {
  background: #8f3030;
  color: #f7eee8;
  padding: 72px 24px 90px;
  font-family: "Inter", Arial, sans-serif;
}

.cycles-header {
  text-align: center;
  margin-bottom: 70px;
}

.cycles-header span {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(247, 238, 232, 0.75);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.cycles-header h2 {
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.95;
}

.cycles-header h2 em {
  font-style: italic;
}

.cycles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 260px));
  justify-content: center;
  gap: 32px;
}

/* Arcos de los ciclos */
.cycle-card {
  min-height: 500px;
  padding: 66px 16px 24px;
  text-align: center;
  border: 1px solid rgba(247, 238, 232, 0.22);
  border-radius: 150px 150px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

/* Arcos de las dinamicas */
.cycle-card-dinamicas {
  min-height: 500px;
  padding: 66px 16px 24px;
  text-align: center;
  border: 1px solid rgba(51, 51, 51, 0.22);
  border-radius: 150px 150px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}


/* Arcos de nosotros(monet) */
.cycle-card-monet {
  min-height: 700px;
  padding: 66px 16px 24px;
  text-align: center;
  border: 1px solid rgba(247, 238, 232, 0.22);
  border-radius: 280px 280px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

/* Arcos de nosotros(monet) movil */
.cycle-card-monet-movil {
  width: 100%;
  max-width: 500px;
  min-height: 800px;
  padding: 66px 16px 24px;
  text-align: center;
  border: 1px solid rgba(247, 238, 232, 0.22);
  border-radius: 280px 280px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

/* Arcos de empresas */
.cycle-card-empresas {
  min-height: 400px;
  padding: 66px 16px 24px;
  text-align: center;
  border: 1px solid rgba(247, 238, 232, 0.22);
  border-radius: 200px 200px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}


/* Arcos de los profesores*/
.cycle-card-profesores {
  min-height: 300px;
  padding: 66px 16px 24px;
  text-align: center;
  border: 1px solid rgba(247, 238, 232, 0.22);
  border-radius: 150px 150px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

/* Arcos de los profesores movil*/
.cycle-card-profesores-movil {
  width: 100%;
  max-width: 500px;
  min-height: 400px;
  padding: 66px 16px 24px;
  text-align: center;
  border: 1px solid rgba(247, 238, 232, 0.22);
  border-radius: 200px 200px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

/* Hover arcos (no estoy segura) */
.cycle-card:hover {
  border-color: rgba(247, 238, 232, 0.62);
  box-shadow: 0 0 0 1px rgba(247, 238, 232, 0.18);
  transform: translateY(-3px);
}

/* Arco grande rescate */
.arco-rescate{
    width:640px;
    height:500px;

    border:1px solid rgba(255,255,255,.2);

    border-radius:320px 320px 0 0;

    display:flex;
    flex-direction:column;
    align-items:center;

    color:#F5E8DF;
    text-align:center;

    position:relative;
}

/* Tarjetas ciclos pagina ciclos */
.ciclo-1,
.ciclo-2,
.ciclo-3,
.ciclo-4 {
    position: sticky;
    top: 0;
    min-height: 100vh;
}

.ciclo-1 { z-index: 1; }
.ciclo-2 { z-index: 2; }
.ciclo-3 { z-index: 3; }
.ciclo-4 { z-index: 4; }

/* Le da la altura a las imagenes de los ciclos */
.imagen-ciclos-altura {
    min-height: 100vh;
    display: flex;
    justify-content: flex-end; /* abajo */
}

/* Le da la posición a los titulos de los ciclos */
.titulo-ciclos-posicion {
    margin-left: 5%;
    margin-bottom: 15%;
    justify-content: flex-end; 
}


/* Sección arcos completa (no se usa) */
.cycle-date {
  margin: 0;
  color: rgba(247, 238, 232, 0.7);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.cycle-content {
  margin-top: 36px;
}

.cycle-content h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
}

.cycle-subtitle {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
}

.cycle-text {
  max-width: 220px;
  margin: 0 auto;
  color: rgba(247, 238, 232, 0.82);
  font-size: 18px;
  line-height: 1.48;
}

.cycle-price {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 238, 232, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .cycles-grid {
    grid-template-columns: repeat(2, minmax(220px, 280px));
  }
}

@media (max-width: 620px) {
  .cycles-section {
    padding: 56px 18px 70px;
  }

  .cycles-header {
    margin-bottom: 44px;
  }

  .cycles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cycle-card {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
}
