
/* BACKGROUND */
.landing-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, #4f7df0 0%, #7b5be6 50%, #e86bb7 100%);
}

/* HERO */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 100px 20px 80px;
    color: #fff;
}

.hero-left { flex: 1; }

.hero-top-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e3e9ff;
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1e88ff;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: 0.25s ease;
}

.hero-button:hover {
    background-color: #0f6fe0;
    transform: scale(1.03);
}

/* HERO IMAGE */

.hero-image {
    max-width: 360px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}
@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone-mockup {
    position: relative;
    width: 320px; /* ajusta según tu diseño */
    transform: rotate(-8deg); /* inclinación suave */
}

.iphone-frame {
    width: 100%;
    display: block;
    pointer-events: none;
}

.iphone-screen {
    position: absolute;
    top: 8.5%;   /* ajusta según el mockup */
    left: 7.5%;
    width: 85%;
    height: 83%;
    overflow: hidden;
    border-radius: 28px;
}

.iphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.device-mockup {
    position: relative;
    width: 280px; /* ajusta según tu diseño */
}

.device-frame {
    width: 100%;
    display: block;
}

.device-screen {
    position: absolute;
    top: 8.5%;   /* ajusta según el mockup */
    left: 8%;
    width: 84%;
    height: 83%;
    overflow: hidden;
    border-radius: 22px; /* esquinas redondeadas internas */
}

.device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-image-circle {
    width: clamp(220px, 35vw, 320px);
    height: clamp(220px, 35vw, 320px);
    border-radius: 50%;
    border: 6px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(0,0,0,0.3);
}

.hero-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CLAIM */
.claim-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.claim-input-row {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 999px;
    padding: 8px 10px;
    gap: 8px;
}

.claim-prefix {
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    white-space: nowrap;
}

.claim-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: #111827;
}

.claim-button {
    border: none;
    outline: none;
    background-color: #1e88ff;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.25s ease;
}

.claim-button:hover {
    background-color: #0f6fe0;
    transform: scale(1.05);
}

/* SEPARATOR */
.section-separator {
    margin: 40px 0;
}

.section-separator svg {
    width: 100%;
    height: 80px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    .hero-right { margin-top: 30px; }
}



.section-separator svg {
    width: 100%;
    height: 140px;
    display: block;
}


/* ===========================
   SECTION WRAPPER
   =========================== */
.claim-section {
    margin: 120px 0;
    text-align: center;
}

/* ===========================
   TITLE
   =========================== */
.claim-title-wrapper {
    margin-bottom: 30px;
}

.claim-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.claim-title span {
    border-bottom: 4px solid rgba(255,255,255,0.4);
    padding: 0 6px;
}

/* Subtítulo */
.claim-subtitle {
    margin-top: 12px;
    font-size: 1.1rem;
    color: #e8e8ff;
    opacity: 0.9;
}

/* ===========================
   INPUT CONTAINER
   =========================== */
.claim-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.claim-input-container {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 14px;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Prefix */
.claim-prefix {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    white-space: nowrap;
}

/* Input */
.claim-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 15px;
    color: #111827;
}

/* Button */
.claim-button {
    border: none;
    outline: none;
    background-color: #1e88ff;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 6px 18px rgba(30,136,255,0.4);
}

.claim-button:hover {
    background-color: #0f6fe0;
    transform: scale(1.05);
}

/* Note */
.claim-note {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #d1d5db;
    font-style: italic;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 600px) {
    .claim-input-container {
        flex-direction: column;
        padding: 18px;
        border-radius: 20px;
    }

    .claim-prefix {
        padding-bottom: 6px;
    }

    .claim-button {
        width: 100%;
        margin-top: 10px;
    }
}

