/* ------------------ RESET ------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

/* ------------------ NAV ------------------ */
.top-bar {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    padding: 0 60px;
    display: flex;
    justify-content: flex-end;
    /* AHORA SIEMPRE A LA DERECHA */
    z-index: 50;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffffcc;
    text-decoration: none;
    transition: 0.25s ease;
}

.nav-link:hover {
    color: #ffffff;
}

/* Línea animada inferior */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #f7ff1f;
    transition: 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Estado activo */
.nav-link.active {
    color: #f7ff1f;
}

.nav-link.active::after {
    width: 100%;
}

/* ------------------ HERO LAYOUT ------------------ */
.page {
    min-height: 100vh;
    width: 100%;
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 1.25fr;
    min-height: 100vh;
    position: relative;
}

/* Fondo derecho curvo */
.right-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, #000, #0a0a0a, #000);
    z-index: -1;
}

/* ------------------ LEFT SIDE ------------------ */
.left-bg {
    position: relative;
    background: #3b3b3b;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vertical-text {
    position: absolute;
    left: 40px;
    top: 65%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.vertical-separator {
    display: inline-block;
    width: 90%;
    height: 2px;
    background: #fff;
    margin-left: 12px;
}

/* ------------------ PHONE MOCKUP ------------------ */
.watch-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 270px;
    height: 520px;
    background: #0b0b0b;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.55);
    border: 3px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-notch {
    position: absolute;
    top: 16px;
    width: 110px;
    height: 26px;
    background: #111;
    border-radius: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 88%;
    height: 88%;
    background: #000;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen img {
    width: 65%;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
}

/* ------------------ RIGHT SIDE ------------------ */
.right-bg {
    padding: 130px 80px 80px;
    color: #f5f5f5;
}

.product-title {
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 5px;
    color: #ffffffc0;
}

.product-name {
    margin-top: 10px;
    font-size: 36px;
    letter-spacing: 4px;
    font-weight: 600;
}

.divider-line {
    margin: 25px 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.product-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #e7e7e7;
    max-width: 560px;
}

/* ------------------ COLORS DOTS ------------------ */
.color-dots {
    display: flex;
    gap: 12px;
    margin: 16px 0;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.dot-black {
    background: #000;
}

.dot-green {
    background: #7df24a;
}

.dot-yellow {
    background: #f7ff1f;
}

.dot-pink {
    background: #f6a9c1;
}

.dot-olive {
    background: #c7c470;
}

/* ------------------ CTA AREA ------------------ */
.price-row {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.price {
    font-size: 30px;
    font-weight: 700;
    color: #f7ff1f;
}

.buy-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 35px;
    border-radius: 999px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #111;
    letter-spacing: 1px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.buy-btn-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f7ff1f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-btn-circle img {
    width: 60%;
}

/* ------------------ SERVICES GRID ------------------ */

.services-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    background: linear-gradient(135deg, #111111, #181818);
    border-radius: 18px;
    padding: 18px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.6);
    border-color: #f7ff1f55;
    background: linear-gradient(135deg, #131313, #1e1e1e);
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-text {
    font-size: 14px;
    line-height: 1.5;
    color: #d7d7d7;
}

.services-cta-row {
    margin-top: 40px;
}

/* ------------------ CONTACT PAGE ------------------ */

.contact-wrapper {
    margin-top: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info-card,
.contact-form-card {
    background: linear-gradient(135deg, #111111, #181818);
    border-radius: 18px;
    padding: 18px 22px 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.45);
    flex: 1 1 260px;
}

.contact-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-text {
    font-size: 14px;
    color: #d7d7d7;
    margin-bottom: 12px;
}

.contact-list {
    list-style: none;
    font-size: 14px;
    color: #e5e5e5;
    margin-bottom: 18px;
}

.contact-list li+li {
    margin-top: 6px;
}

.contact-label {
    font-weight: 600;
}

/* Botón WhatsApp */
.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.contact-whatsapp-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-whatsapp-circle img {
    width: 60%;
}

/* Formulario */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-field label {
    font-size: 13px;
    color: #f0f0f0;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 8px 10px;
    color: #f5f5f5;
    font-size: 14px;
    outline: none;
}

.contact-field textarea {
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #aaaaaa;
}

.contact-field select {
    cursor: pointer;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #f7ff1f;
}

.contact-submit-btn {
    margin-top: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    background: #f7ff1f;
    color: #111;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    align-self: flex-end;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.6);
    background: #ffff4c;
}

/* --------- ESTADO INICIAL PARA ANIMACIONES (anime.js) --------- */

.phone-frame,
.right-bg .product-title,
.right-bg .product-name,
.right-bg .color-dots,
.right-bg .divider-line,
.right-bg .product-desc,
.contact-info-card,
.contact-form-card {
    opacity: 0;
    transform: translateY(20px);
}

/* un poco de brillo en el marco del teléfono al hacer hover */
.left-bg:hover .phone-frame {
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.75);
}


/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 1000px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .right-bg {
        padding: 100px 30px 60px;
    }

    .nav-menu {
        gap: 28px;
    }

    .product-name {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .phone-frame {
        transform: scale(0.85);
    }

    .product-desc {
        font-size: 14px;
    }

    .services-grid {
        gap: 18px;
    }
}