.logo-font {
    font-family: 'Bungee', sans-serif;
    font-size: 27px;
    font-weight: 400;
}

.navbar-font {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.hero-text {
    font-family: 'Inter', sans-serif;
    font-size: 62px;
    font-weight: 400;
    line-height: 1.1;
}

.hero-bold {
    font-family: 'Inter', sans-serif;
    font-size: 62px;
    font-weight: 700;
    line-height: 1.1;
}

.phone-wrapper {
    position: absolute;
    inset: 0;
    transition: all 0.7s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.phone-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    /* Usar la máscara del PNG */
    -webkit-mask-image: url("../images/phone.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("../images/phone.png");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mask-position: center;
    mask-size: contain;
}

.phone-img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.txt-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.txt-wrapper p {
    max-width: 90%;
    word-wrap: break-word;
    hyphens: none;
    white-space: normal;
}