#plans {
    color: var(--color-terciario);
}

button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.hosting-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0;
    background-color: var(--background-color);
    animation: aparecer 1s ease-out forwards;
}

.planes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;

}

/* Contenedor de cada plan */
.plan {
    color: var(--color-primario);
    background-color: var(--color-segundario);
    padding: 20px;
    width: 17em;
    margin-bottom: 5em;
    border-radius: 10px;
    text-decoration: none;
    opacity: 0;
    animation: aparecer 1s ease-out forwards;
    transition: transform 0.4s ease, 0.4s ease, box-shadow 0.4s ease;
}

/* Efecto de hover con crecimiento fluido */
.plan:hover {
    background: var(--color-primario);
    color: var(--color-terciario);
    box-shadow: 0 0 20px rgba(0, 115, 230, 0.6);
    transform: scale(1.1); /* Crecimiento suave */
}

.plan:nth-child(1) { animation-delay: 0.2s; }
.plan:nth-child(2) { animation-delay: 0.4s; }
.plan:nth-child(3) { animation-delay: 0.6s; }
.plan:nth-child(4) { animation-delay: 0.8s; }

.hosting-title {
    margin-top: 2em;
    font-size: 2rem;
    color: var(--color-primario);
    margin-bottom: 0.5em;
}

.hosting-subtitle {
    font-size: 1.2rem;
    color: var(--color-primario);
    margin-bottom: 3em;
}

@keyframes aparecer {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.text-hosting {
    margin-bottom: 4em;
}

/* Estilos adicionales */
.plan h3 {
    font-size: 24px;
}

.plan h4 {
    font-size: 18px;
    font-weight: normal;
}

.precio {
    font-size: 20px;
    margin: 10px 0;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin: 5px 0;
}

ul li img {
    width: 26px;
    height: 26px;
}

/* Botón */
button {
background: var(--background-color);
color: var(--color-terciario);
padding: 1em 2em;
border: none;
border-radius: 1em;
font-size: 14px;
cursor: pointer;
align-items: center;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease-in-out;
}

button:hover {
    background: var(--background-color);
    color: var(--color-negro);
    transform: scale(1.05);
    box-shadow: 4px 4px 15px rgba(255, 204, 0, 0.5);
}

