/*==============================================
    Publicidad / Promoción de descuento
===============================================*/
.publicidad-descuento {
    position: relative;
    margin-top: 50px;
    padding: 0 0 10px;
}

.publicidad-descuento__card {
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 16px 48px rgba(35, 86, 143, 0.12);
    border: 1px solid rgba(35, 86, 143, 0.08);
}

.publicidad-descuento__promo {
    background: linear-gradient(135deg, #23568f 0%, #005d73 60%, #1a4a6e 100%);
    color: #ffffff;
    text-align: center;
    padding: 32px 28px 28px;
    position: relative;
    overflow: hidden;
}

.publicidad-descuento__promo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(195, 177, 117, 0.2), transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.1), transparent 40%);
    pointer-events: none;
}

.publicidad-descuento__badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4bc7a 0%, #c3b175 100%);
    color: #1a3d5c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.publicidad-descuento__promo-title {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-family: var(--title);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.publicidad-descuento__promo-text {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 720px;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.publicidad-descuento__promo-text strong,
.publicidad-descuento__promo-text em {
    font-style: normal;
    color: #f5e6b8;
    font-weight: 700;
}

.publicidad-descuento__body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
}

.publicidad-descuento__brand {
    padding: 36px 36px 32px;
}

.publicidad-descuento__header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.publicidad-descuento__logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
}

.publicidad-descuento__name {
    margin: 0 0 4px;
    font-family: var(--title);
    font-size: 26px;
    font-weight: 700;
    color: var(--negro);
    line-height: 1.2;
}

.publicidad-descuento__specialty {
    margin: 0;
    font-family: var(--title);
    font-size: 17px;
    font-weight: 600;
    color: #c3b175;
}

.publicidad-descuento__description {
    margin: 0 0 26px;
    padding-left: 18px;
    border-left: 4px solid #c3b175;
    font-size: 16px;
    line-height: 1.65;
    color: #3d4f5f;
}

.publicidad-descuento__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.publicidad-descuento__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    border-radius: 999px;
    font-family: var(--title);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.publicidad-descuento__btn:hover {
    transform: translateY(-2px);
}

.publicidad-descuento__btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.publicidad-descuento__btn small {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
}

.publicidad-descuento__btn--doctoralia {
    background: #009fe3;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 159, 227, 0.3);
}

.publicidad-descuento__btn--doctoralia:hover {
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 159, 227, 0.4);
}

.publicidad-descuento__btn--whatsapp {
    background: var(--whatsapp);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3);
}

.publicidad-descuento__btn--whatsapp:hover {
    color: #ffffff;
    background: var(--whatsapp-hover);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.publicidad-descuento__contact {
    background: linear-gradient(180deg, #f8f9fb 0%, #f0f4f8 100%);
    padding: 32px 28px;
    border-left: 1px solid rgba(35, 86, 143, 0.08);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.publicidad-descuento__contact-title {
    margin: 0 0 4px;
    padding-bottom: 14px;
    border-bottom: 2px solid #c3b175;
    font-family: var(--title);
    font-size: 20px;
    font-weight: 700;
    color: var(--negro);
}

.publicidad-descuento__contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.publicidad-descuento__contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #c3b175 0%, #d4bc7a 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.publicidad-descuento__contact-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--negro);
    margin-bottom: 4px;
}

.publicidad-descuento__contact-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #2c3e50;
    font-weight: 600;
}

.publicidad-descuento__contact-item a {
    color: inherit;
    text-decoration: none;
}

.publicidad-descuento__contact-item a:hover {
    color: var(--azulmedio);
}

/* Variante compacta en footer (columna izquierda) */
.publicidad-descuento--footer {
    margin: 18px 0 18px;
}

.publicidad-descuento__promo--footer {
    position: relative;
    text-align: left;
    padding: 22px 22px 18px 32px;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f6f0 100%);
    border: 1px solid rgba(195, 177, 117, 0.35);
    box-shadow:
        0 10px 28px rgba(35, 86, 143, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    color: inherit;
}

.publicidad-descuento__promo--footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #d4bc7a 0%, #c3b175 45%, #23568f 100%);
    border-radius: 18px 0 0 18px;
}

.publicidad-descuento__promo--footer::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(35, 86, 143, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.publicidad-descuento__promo-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.publicidad-descuento__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #23568f 0%, #005d73 100%);
    color: #f5e6b8;
    font-size: 18px;
    box-shadow: 0 6px 16px rgba(35, 86, 143, 0.22);
}

.publicidad-descuento__promo-head {
    flex: 1;
    min-width: 0;
}

.publicidad-descuento__promo--footer .publicidad-descuento__badge {
    margin-bottom: 6px;
    padding: 5px 12px;
    font-size: 10px;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, #ebe2c8 0%, #d4bc7a 100%);
    box-shadow: none;
}

.publicidad-descuento__promo-title--footer {
    margin: 0;
    font-family: var(--title);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
    color: #23568f;
    letter-spacing: -0.01em;
}

.publicidad-descuento__promo-text--footer {
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 14px;
    color: #3d4f5f;
}

.publicidad-descuento__promo-text--footer strong,
.publicidad-descuento__promo-text--footer em {
    font-style: normal;
    color: #23568f;
    font-weight: 700;
}

.publicidad-descuento__hint {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(35, 86, 143, 0.06);
    border: 1px solid rgba(35, 86, 143, 0.1);
    font-size: 12px;
    font-weight: 600;
    color: #23568f;
    line-height: 1.3;
}

.publicidad-descuento__hint i {
    font-size: 11px;
    color: #c3b175;
}

.footer-widget-two__newsletter-box .footer-doctoralia-cta {
    margin-top: 6px;
}

@media (max-width: 991px) {
    .publicidad-descuento__body {
        grid-template-columns: 1fr;
    }

    .publicidad-descuento__contact {
        border-left: none;
        border-top: 1px solid rgba(35, 86, 143, 0.08);
    }

    .publicidad-descuento__promo-title {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .publicidad-descuento {
        margin-top: 36px;
    }

    .publicidad-descuento__promo {
        padding: 26px 20px 22px;
    }

    .publicidad-descuento__promo-title {
        font-size: 22px;
    }

    .publicidad-descuento__promo-text {
        font-size: 15px;
    }

    .publicidad-descuento__brand {
        padding: 28px 22px 24px;
    }

    .publicidad-descuento__header {
        flex-direction: column;
        text-align: center;
    }

    .publicidad-descuento__name {
        font-size: 22px;
    }

    .publicidad-descuento__actions {
        flex-direction: column;
    }

    .publicidad-descuento__btn {
        justify-content: center;
        width: 100%;
    }

    .publicidad-descuento__contact {
        padding: 26px 22px;
    }

    .publicidad-descuento__promo-title--footer {
        font-size: 17px;
    }

    .publicidad-descuento__promo-text--footer {
        font-size: 14px;
    }

    .publicidad-descuento__icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
