#header {
    position: relative;
    width: 100%;
    height: 35vh;
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin-top: 78px;
    background-color: #454565;
    box-shadow: 0 0 10px 5px var(--font-color);
}

#header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

#header .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    box-sizing: border-box;
    color: var(--header-font-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.container.prices {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
}

.wrapper-item {
    position: relative;
    padding-bottom: 25px;
}

.wrapper-item::after {
    position: absolute;
    bottom: 0;
    content: "";
    width: 100%;
    height: 20px;
    background-color: var(--primary-color);
}

.wrapper-item .item-title {
    text-align: center;
    background-color: var(--primary-color);
    font-size: 18px;
    color: var(--section-bg-img-title-color);
    padding: 15px 0;
}

.wrapper-item .item-title .term {
    font-size: 15px;
    font-weight: 650;
}

.wrapper-item .item-content {
    padding-bottom: 50px;
}

.wrapper-item .item-content .price {
    font-size: var(--title-size);
    font-weight: var(--title-weight);
    text-align: center;
    color: var(--primary-color);
}

.wrapper-item .item-content .button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
}

.section .contact {
    width: fit-content;
}

.section .contact .list {
    list-style: none;
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 0;
}

.section .contact .list-item {
    --padding-item: 5px;
    padding: var(--padding-item) 0;
}

.section .contact .button.phone {
    background-color: var(--color-phone);
}
.section .contact .button.whatsapp {
    background-color: var(--color-whatsapp);
}
.section .contact .button.email {
    background-color: var(--color-email);
}

#header + .notifications + .section {
    padding-top: 60px;
}

/* Tarjetas de precios: contenido centrado en escritorio y móvil */
.wrapper-item .item-content {
    text-align: center;
}

.wrapper-item .item-content ul,
.wrapper-item .item-content ol {
    text-align: center;
    list-style-position: inside;
    padding-left: 0;
}

.section.section-background.precios-background {
    clip-path: ellipse(110% 120% at 50% 120%);
    margin-bottom: 0px;
}

/* Fondo exterior de la curva de "¿Tienes Dudas?" */
#main {
    background-color: var(--section-bg-color);
}