/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #000;
    color: #fff;
}


/* ========================= */
/* HERO SECTION */
/* ========================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #bebebe 0%, #eeeeee 50%, #d2d2d2 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 6rem;
    font-weight: 700;
    transition: 0.4s ease;
}

.hero h1:hover {
    letter-spacing: 2px;
    transform: translateY(-3px);
}

.subtitle {
    font-size: clamp(1rem, 2vw, 2rem);
    margin-top: 0rem;
    transition: 0.4s ease;
}

.subtitle:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.logo-top {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 360px;
    z-index: 4;
    transition: 0.4s ease;
}

.logo-top:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

/* ========================= */
/* SIDE VERTICAL TEXT */
/* ========================= */

.side-label {
    position: fixed;
    left: 80px;
    bottom: 40px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    font-size: 2.8rem;
    letter-spacing: 2px;
    z-index: 2;
}

/* ========================= */
/* STEPS */
/* ========================= */

.steps {
    position: fixed;
    right: 30px;
    top: 17%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10; /* 👈 AÑADE ESTO */
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.step:hover {
    background: #000;
    color: #fff;
    transform: scale(1.15);
}

/* ========================= */
/* FOOTER LOGO */
/* ========================= */

.footer-logo {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1;
}

.footer-logo img {
    width: 80px;
    transition: 0.4s ease;
}

.footer-logo img:hover {
    transform: rotate(8deg) scale(1.05);
}

/* ========================= */
/* MODAL */
/* ========================= */

.modal {
    text-align: justify;
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(20, 20, 20, 0.35);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transition: 0.6s ease;
    z-index: 9999;
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    position: relative;
    color: #111;
    transform: translateY(20px);
    transition: 0.6s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-watermark {
    position: absolute;
    left: 40%;
    top: 50%;
    width: 200px;
    transform: translateY(-50%);
    animation: rotateVertical 12s linear infinite;
    opacity: 0.15;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

@keyframes rotateVertical {
    from {
        transform: translateY(-50%) rotateY(0deg);
    }
    to {
        transform: translateY(-50%) rotateY(360deg);
    }
}

.whats {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    text-decoration: none;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0% {
        color: #111;
        transform: scale(1);
    }
    50% {
        color: #25d366;
        transform: scale(1.05);
    }
    100% {
        color: #111;
        transform: scale(1);
    }
}

.mail {
    text-align: left;
    margin-top: 20px;
}

.mail-link {
    font-size: 18px;
    font-weight: 600;
    color: #c9a7a6;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: 0.3s ease;

    animation: pulseMail 2.5s infinite ease-in-out;
}

/* Hover más marcado pero fino */
.mail-link:hover {
    color: #b8908f;
    transform: scale(1.08);
}

/* ================= SECTIONS ================= */
.layout {
    display: grid;
    grid-template-columns: 1fr 900px;
    min-height: 100vh;
    margin: auto;
}

.content {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #c8b1ac 0%, #d9d6d1 100%);
}

.section {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    padding: 120px 80px;
    min-height: 100vh;
}

.section--pink {
    margin-top: 40%;
}

.section--gray {
    margin-top: 10%;
}

.section__content {
    max-width: 550px;
}

.section h2 {
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #252525;
}

.section p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #333;
}

/* ================= VERTICAL ================= */

.vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 48px;
    font-weight: 200;
    letter-spacing: 3px;
    opacity: 0.6;
}

/* ================= BUTTONS ================= */

.actions {
    display: flex;
    gap: 25px;
    align-items: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.btn-white {
    background: white;
    color: #222;
}

.btn-pink {
    background: #d6b6b1;
    color: #222;
}

.btn-blue {
    background: #35b6dc;
    color: white;
}

.link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

/* ================= IMAGE SIDE ================= */

.image-side {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: right;
    background: linear-gradient(to bottom, #c8b1ac 0%, #d9d6d1 100%);
}

.body-image {
    object-fit: contain;
    top: 0;
}

/* ================= RIGHT INDICATOR ================= */

.indicator {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    opacity: 0.6;
}

.line {
    width: 3px;
    height: 60px;
    background: white;
    opacity: 0.6;
}
