body {
    background: #1b1b1b;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-image: radial-gradient(circle, rgba(119,148,162,0.11) 1px, transparent 1px);
    background-size: 28px 28px;
}

* {
    box-sizing: border-box;
}

/* ── TÍTULO ── */
.title-wrap {
    text-align: center;
    padding: 80px 40px 70px;
    position: relative;
}

.main-title {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(4.5rem, 11vw, 10rem);
    font-weight: 900;
    color: #f2f1eb;
    letter-spacing: -0.02em;
    line-height: 1;
    display: inline-block;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.main-title em {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 2px #7794a2;
}

.title-label {
    position: absolute;
    top: 72px;
    right: calc(50% - 320px);
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #7794a2;
    opacity: 0;
    animation: fadeIn 0.7s ease 0.9s forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn { to { opacity: 1; } }

/* ── TELÉFONOS ── */
.phones-section {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 40px 90px;
    position: relative;
}

.phones-section::before {
    content: '';
    position: absolute;
    width: 560px;
    height: 360px;
    background: radial-gradient(ellipse, rgba(119,148,162,0.07) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.phone-wrap {
    position: relative;
    opacity: 0;
    animation: riseUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-wrap:nth-child(1) { animation-delay: 0.25s; transform: rotate(-6deg) translateY(36px);  z-index: 1; }
.phone-wrap:nth-child(2) { animation-delay: 0.1s;  transform: rotate(-2deg) translateY(0);     z-index: 3; margin: 0 -14px; }
.phone-wrap:nth-child(3) { animation-delay: 0.35s; transform: rotate(2deg)  translateY(20px);  z-index: 2; margin: 0 -14px; }
.phone-wrap:nth-child(4) { animation-delay: 0.5s;  transform: rotate(6deg)  translateY(44px);  z-index: 1; }

@keyframes riseUp { to { opacity: 1; } }

.phone-wrap:nth-child(1):hover { transform: rotate(-2deg) translateY(-18px) scale(1.02); z-index: 10; }
.phone-wrap:nth-child(2):hover { transform: rotate(0deg)  translateY(-22px) scale(1.04); z-index: 10; }
.phone-wrap:nth-child(3):hover { transform: rotate(0deg)  translateY(-20px) scale(1.04); z-index: 10; }
.phone-wrap:nth-child(4):hover { transform: rotate(2deg)  translateY(-16px) scale(1.02); z-index: 10; }

.phone-wrap:nth-child(2) .phone,
.phone-wrap:nth-child(3) .phone {
    width: 210px;
    height: 420px;
}

.phone {
    width: 175px;
    height: 352px;
    background: linear-gradient(145deg, #1e1e1e, #2c2c2c);
    border-radius: 28px;
    padding: 10px;
    position: relative;
    box-shadow:
        0 0 0 2px #0a0a0a,
        0 0 0 4px #282828,
        0 24px 50px rgba(0, 0, 0, 0.55),
        inset 0 1px 2px rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.4s ease;
}

.phone-wrap:hover .phone {
    box-shadow:
        0 0 0 2px #0a0a0a,
        0 0 0 4px #3a3a3a,
        0 40px 70px rgba(0, 0, 0, 0.6),
        0 0 28px rgba(119, 148, 162, 0.07),
        inset 0 1px 2px rgba(255, 255, 255, 0.09);
}

.phone::before {
    content: '';
    position: absolute;
    right: -3px;
    top: 80px;
    width: 3px;
    height: 24px;
    background: #111;
    border-radius: 2px;
}

.phone::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 112px;
    width: 3px;
    height: 38px;
    background: #111;
    border-radius: 2px;
}

.volume-button {
    position: absolute;
    left: -3px;
    top: 88px;
    width: 3px;
    height: 28px;
    background: #111;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 20px;
    background: #000;
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

.screen-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.screen-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.phone-wrap:hover .screen-content img {
    transform: scale(1.05);
}

/* ── TEXTO ── */
.text-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 48px;
}

.text-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

.text-heading {
    position: sticky;
    top: 100px;
}

.text-heading h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    color: #f2f1eb;
}

.text-heading h2 em {
    display: block;
    font-style: italic;
    color: #7794a2;
}

.eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #7794a2;
    display: block;
    margin-bottom: 16px;
}

.text-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #9eb0ba;
    margin-bottom: 20px;
}

.text-body strong { color: #7794a2; font-weight: 700; }
.text-body em     { color: #f2f1eb; font-style: normal; }

/* ── TAGS ── */
.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.tag {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7794a2;
    border: 1px solid rgba(119, 148, 162, 0.28);
    border-radius: 100px;
    padding: 6px 16px;
    transition: background 0.22s, border-color 0.22s, color 0.22s;
    cursor: default;
}

.tag:hover {
    background: rgba(119, 148, 162, 0.1);
    border-color: #7794a2;
    color: #f2f1eb;
}

/* ── FLECHAS + LINK (original) ── */
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    justify-content: center;
    margin: 100px 0;
    padding: 60px 40px;
}

.images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    flex: 1;
    min-width: 600px;
}

.image-section {
    position: relative;
    transition: all 400ms ease-out;
}

.image-section img {
    height: 300px;
    width: auto;
    border-radius: 15px;
    object-fit: cover;
    opacity: 0.7;
    transition: all 400ms ease-out;
    margin: 0;
}

.image-section:first-child        { transform: rotate(-8deg) scale(0.9); }
.image-section:first-child:hover  { transform: rotate(-3deg) scale(1); }
.image-section:nth-child(2)       { transform: scale(1.1); z-index: 2; }
.image-section:nth-child(2):hover { transform: scale(1.15); }
.image-section:nth-child(3)       { transform: rotate(8deg) scale(0.9); }
.image-section:nth-child(3):hover { transform: rotate(3deg) scale(1); }
.image-section:hover img          { opacity: 1; }

.link-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-shrink: 0;
}

.link-button {
    font-family: 'Lato', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f1eb;
    color: #7794a2;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 12px;
    border: 3px solid #7794a2;
    font-weight: bold;
    font-size: 2rem;
    transition: all 0.3s ease;
    min-width: 250px;
    box-shadow: 10px 10px #5f7884;
    margin: 10px 0;
}

.link-button:hover {
    transform: translateY(-3px);
    background: #7794a2;
    color: white;
    box-shadow: 10px 10px #5f7884;
}

.link-button:active {
    transform: translateY(-1px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .images-container {
        min-width: auto;
    }

    .image-section img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .title-wrap {
        padding: 50px 20px 40px;
    }

    .title-label {
        display: none;
    }

    .phones-section {
        padding: 0 20px 60px;
        flex-wrap: wrap;
    }

    .phone-wrap:nth-child(2) .phone,
    .phone-wrap:nth-child(3) .phone {
        width: 160px;
        height: 320px;
    }

    .phone {
        width: 130px;
        height: 260px;
        border-radius: 24px;
    }

    .text-section {
        padding: 40px 24px;
    }

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

    .text-heading {
        position: static;
    }

    .content-container {
        padding: 40px 20px;
        gap: 40px;
        margin: 60px 0;
    }

    .images-container {
        min-width: auto;
        flex-direction: row;
    }

    .image-section img {
        height: 150px;
    }

    .link-button {
        font-size: 1.3rem;
        padding: 16px 30px;
    }
}