/* ==========================================================================
   PROMO LANDING — "Página Web Gratis"
   Extiende style.css, no lo reemplaza. Mismos tokens de marca (--brand-*).
   ========================================================================== */

/* Promo badge (píldora superior del hero) */
.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--brand-cyan-light);
    color: var(--brand-cyan-dark);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.promo-badge i {
    color: var(--brand-red);
}

/* Hero browser mockup */
.hero-browser-mockup {
    position: relative;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(208, 201, 195, 0.4);
    animation: float 6s ease-in-out infinite;
}

.hero-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background-color: var(--cream-bg);
    border-bottom: 1px solid var(--warm-gray);
}

.hero-browser-bar .browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-browser-bar .browser-url {
    margin-left: 10px;
    background-color: var(--white);
    border-radius: var(--radius-full);
    padding: 5px 16px;
    font-size: 0.75rem;
    color: rgba(18, 18, 16, 0.5);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-browser-mockup img {
    display: block;
    width: 100%;
    height: auto;
}

.free-stamp {
    position: absolute;
    top: -18px;
    right: -18px;
    background-color: var(--brand-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
    transform: rotate(12deg);
    box-shadow: var(--shadow-red);
    border: 3px solid var(--cream-bg);
    z-index: 5;
}

/* Benefit cards (reusing .service-card layout, FA icons instead of images) */
.benefit-icon-box {
    background-color: var(--brand-cyan-light);
    color: var(--brand-cyan);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    transition: var(--transition-normal);
}

.service-card:hover .benefit-icon-box {
    background-color: var(--brand-red-light);
    color: var(--brand-red);
    transform: scale(1.1) rotate(5deg);
}

/* Client site cards inside the slider */
.site-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background-color: var(--cream-bg);
    border-bottom: 1px solid var(--warm-gray);
}

.site-browser-bar .browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.site-browser-bar .browser-url {
    margin-left: 8px;
    background-color: var(--white);
    border-radius: var(--radius-full);
    padding: 3px 12px;
    font-size: 0.7rem;
    color: rgba(18, 18, 16, 0.5);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-preview {
    position: relative;
    padding-bottom: 62%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-cyan-light), var(--cream-bg));
}

.site-preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover .site-preview img {
    transform: scale(1.06);
}

.site-preview.logo-preview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-preview.logo-preview img {
    position: static;
    width: auto;
    height: auto;
    max-width: 55%;
    max-height: 45%;
    object-fit: contain;
    filter: none;
    transition: var(--transition-normal);
}

.portfolio-item:hover .site-preview.logo-preview img {
    transform: scale(1.08);
}

.site-info {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.site-info h3 {
    font-size: 1.25rem;
    color: var(--dark-charcoal);
    margin-bottom: 4px;
}

.site-info p {
    font-size: 0.85rem;
    color: rgba(18, 18, 16, 0.55);
}

.site-link {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background-color: var(--brand-red-light);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-normal);
}

.site-link:hover {
    background-color: var(--brand-red);
    color: var(--white);
    transform: scale(1.1);
}

/* Registro section */
.registro-info {
    position: sticky;
    top: 120px;
}

.registro-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.registro-perks li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: var(--dark-charcoal);
}

.registro-perks li i {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: var(--brand-cyan-light);
    color: var(--brand-cyan-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* Small print under footer */
.promo-fineprint {
    background-color: var(--brand-red-dark);
}

.promo-fineprint p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    text-align: center;
    padding: 14px 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .registro-info {
        position: relative;
        top: 0;
    }
    .free-stamp {
        width: 74px;
        height: 74px;
        font-size: 0.9rem;
        top: -12px;
        right: -8px;
    }
}
