/* ========== BOTÓN CTA ========== */

.btn {
    display: inline-flex;
    align-items: stretch;
    background: var(--turquesa);
    color: var(--blanco);
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(45, 156, 171, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--font-titulo);
}

.btn-text {
    padding: 16px 24px;
    font-size: 1.3rem;
    font-weight: 700;
}

.btn-icon {
    background: rgba(0,0,0,0.15);
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.btn svg {
    position: absolute;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn .icon-arrow {
    transform: translateX(0);
    opacity: 1;
}

.btn .icon-rocket {
    transform: translateX(-40px) rotate(-45deg);
    opacity: 0;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(45, 156, 171, 0.4);
}

.btn:hover .btn-icon {
    background: rgba(0,0,0,0.25);
}

.btn:hover .icon-arrow {
    transform: translateX(40px);
    opacity: 0;
}

.btn:hover .icon-rocket {
    transform: translateX(0) rotate(0);
    opacity: 1;
}
