#home {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 91px);
    background-color: #0D1320;
    padding: 100px 8% 80px;
    color: white;
    position: relative;
    overflow: visible;
}


#cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

#cta .title {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 24px 0;
    max-width: 1000px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#cta .title .gradient-text {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

#cta .title .accent-text {
    color: #25D366;
    font-weight: 700;
}

#cta .subtitle {
    font-size: 1.5rem;
    color: #e2e8f0;
    font-weight: 500;
    line-height: 1.7;
    margin: 0 0 50px 0;
    max-width: 900px;
}

#cta .description {
    color: #e0e0e0;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

#cta_buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

#cta_buttons a,
#cta_buttons a:visited {
    text-decoration: none;
    color: inherit;
}

/* CTA Principal Único - Estilo Web3 */
.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 56px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5), 0 0 40px rgba(220, 38, 38, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-cta:hover::before {
    left: 100%;
}

.btn-primary-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6), 0 0 60px rgba(220, 38, 38, 0.3);
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ef4444 100%);
}

.btn-primary-cta:active {
    transform: translateY(-1px);
}

.btn-primary-cta i {
    transition: transform 0.3s ease;
}

.btn-primary-cta:hover i {
    transform: translateX(4px);
}

.btn-default:hover {
    background-color: #a52a2a;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    background-color: #25D366;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    gap: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1da851;
}


#banner {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}

#banner img {
    max-width: 75%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

#banner img:hover {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    #cta .title {
        font-size: 3rem;
    }

    #banner img {
        max-width: 90%;
    }
}


@media (max-width: 768px) {
    #home {
        padding: 60px 5% 40px;
    }

    #cta .title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    #cta .subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    #cta .description {
        font-size: 1rem;
    }

    #cta_buttons {
        width: 100%;
    }

    .btn-primary-cta {
        width: 100%;
        padding: 18px 32px;
        font-size: 1.1rem;
    }

    #banner img {
        max-width: 100%;
    }
}
